0
我試圖渲染pdfkit網頁空白的PDFpdfkit - 返回只請求的URL
我的代碼:
import pdfkit
config = pdfkit.configuration(wkhtmltopdf='/Library/Python/2.7/site-packages/wkhtmltopdf/wkhtmltopdf')
pdfkit.from_string('http://stackoverflow.com', 'so.pdf', configuration=config)
但是,這只是在返回空白的PDF與所請求的URL最佳。
當終端我wkhtmltopdf直接運行...
wkhtmltopdf http://stackoverflow.com so2.pdf
它使得精細
我在做什麼錯?
得到了它......我當我需要'pdfkit.from_url'做'pdfkit.from_string' –