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モジュールを使用して、Webからマシンの特定のディレクトリにファイルをダウンロードする方法を知りたいです。助けに感謝します!
mechanizeを使用してカスタムディレクトリにファイルをダウンロードするのは、次のように簡単です。
import mechanize FILE_URL = 'http://mit.edu/img/MIT_logo.gif' DESTINATION = '/tmp/lol.gif' br = mechanize.Browser() br.retrieve(FILE_URL, DESTINATION)
これを実行すると、MITのロゴがlol.gifとして/tmp/ディレクトリに保存されます。