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.
我很想知道如何使用 Python 中的 Mechanize 模块将文件从网络下载到我机器上的特定目录。感谢任何帮助!
使用 mechanize 将文件下载到自定义目录非常简单:
import mechanize FILE_URL = 'http://mit.edu/img/MIT_logo.gif' DESTINATION = '/tmp/lol.gif' br = mechanize.Browser() br.retrieve(FILE_URL, DESTINATION)
运行此程序后,您会在 /tmp/ 目录中找到保存为 lol.gif 的 MIT 徽标。