我想使用python腳本下載pdf。我曾嘗試使用urlib,pdfkit和curl。當我嘗試下載pdf時,我正在獲取頁面的html/js內容而不是pdf文件。請幫我解決這個問題。無法使用python下載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()
很好...它的工作原理! –