我正在编写一个函数,它从http://www.namejet.com/pages/downloads.aspx下载和存储今天的预发布域 .txt 文件列表。我正在尝试使用 json 来实现它。
import json
import requests
def hello():
r = requests.get('http://www.namejet.com/pages/downloads.aspx')
#Replace with your website URL
with open("a.txt", "w") as f:
#Replace with your file name
for item in r.json or []:
try:
f.write(item['name']['name'] + "\n")
except KeyError:
pass
hello()
我需要使用 python 下载包含预发布域的文件。我怎样才能做到这一点?上面的代码是正确的方法吗?