Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个网址说www.someurl.com/blah.xml。
www.someurl.com/blah.xml
我想编写一个 python 脚本,该脚本可以访问该 URL,获取其内容,并将其保存到本地硬盘上的文件中。不确定最好的方法是什么,或者这种事情是否需要任何推荐的库。
像这样的东西:
import urllib2 as urllib page = urllib.urlopen('http://www.someurl.com/blah.xml') with open('output.xml', 'w') as f: f.write(page.read())
然后你也许可以让一个 cron 作业每五分钟运行一次。在终端上,键入crontab -e并写一行:
crontab -e
*/5 * * * * python path/to/script.py
我不是 crontabs 专家,所以如果我错了,请有人纠正。