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.
Web ページから適合ファイルをダウンロードする必要があります。私は-iwget オプションを使用してこれを行っています: ダウンロード ファイルをlist.txtURL1、URL2 を含むファイルに保存し、次に
-i
list.txt
$ wget -i list.txt
Pythonスクリプトを使用して同じことを行う可能性があるかどうか知っていますか?
ファイルに1行に1つのURLが含まれているとすると、次のように実行できます。
import urllib2 with open('list.txt') as my_list: for line in my_list: response = urllib2.urlopen(line) html = response.read() # now process the page's source