我正在尝试使用python脚本下载pdf。我曾尝试使用urlib,pdfkit和curl。当我试图下载pdf时,我得到的是页面的html / js内容而不是pdf文件。请帮我解决这个问题。
使用pdfkit:
import pdfkit
pdfkit.from_url('http://www.kubota.com/product/BSeries/B2301/pdf/B01_Specs.pdf', 'out.pdf', options = {'javascript-delay':'10000'})
使用urllib:
import urllib2
response = urllib2.urlopen('http://www.kubota.com/product/BSeries/B2301/pdf/B01_Specs.pdf')
file = open("out.pdf", 'wb')
file.write(response.read())
file.close()
答案 0 :(得分:2)
您可以使用urllib3
库
import urllib3
def download_file(download_url):
http = urllib3.PoolManager()
response = http.request('GET', download_url)
f = open('output.pdf', 'wb')
f.write(response.data)
f.close()
if __name__ == '__main__':
download_file('http://www.kubota.com/product/BSeries/B2301/pdf/B01_Specs.pdf')
答案 1 :(得分:0)
您应该能够轻松地使用requests
import requests
r = requests.get('http://www.axmag.com/download/pdfurl-guide.pdf') #your url here
with open('your_file_path_here.pdf', 'wb') as f:
f.write(r.content)