由於在Python(2.7),我真的是一個新手在尋找下一個建議:由Python的鏈接下載文件存儲在CSV
我有分隔的一列逗號存儲HTTP鏈接csv文件。
http://example.com/file.pdf,
http://example.com/file.xls,
http://example.com/file.xlsx,
http://example.com/file.doc,
主要目的是循環所有這些鏈接並通過它們下載文件的原始擴展名和名稱。
所以我的搜索結果,並幫助這裏給我下一個腳本:
import urllib2
import pandas as pd
links = pd.read_csv('links.csv', sep=',', header =(0))
url = links # I know this part wrong by don`n know how to do right
user_agent = 'Mozilla 5.0 (Windows 7; Win64; x64)'
file_name = "tessst" # here the files name by how to get their original names
u = urllib2.Request(url, headers = {'User-Agent' : user_agent})
req = urllib2.urlopen(u)
f = open(file_name, 'wb')
f.write(req.read())
f.close()
請任何幫助
P不是肯定大熊貓 - 也許CSV更好?
那麼http://stackoverflow.com/a/19602990/3014866? –