116

我正在寻找使用 Python 将网页打印到本地文件 PDF 的解决方案。一个好的解决方案是使用 Qt,在这里找到,https://bharatikunal.wordpress.com/2010/01/

一开始它不起作用,因为我在安装 PyQt4 时遇到了问题,因为它给出了诸如“ ImportError: No module named PyQt4.QtCore”和“ ImportError: No module named PyQt4.QtCore”之类的错误消息。

这是因为 PyQt4 没有正确安装。我曾经拥有位于 C:\Python27\Lib 的库,但它不适用于 PyQt4。

事实上,它只需要从http://www.riverbankcomputing.com/software/pyqt/download下载(注意您使用的正确 Python 版本),并将其安装到 C:\Python27(我的情况)。而已。

现在脚本运行良好,所以我想分享它。有关使用 Qpr​​inter 的更多选项,请参阅http://qt-project.org/doc/qt-4.8/qprinter.html#Orientation-enum

4

9 回答 9

173

您也可以使用pdfkit

用法

import pdfkit
pdfkit.from_url('http://google.com', 'out.pdf')

安装

苹果系统:brew install Caskroom/cask/wkhtmltopdf

Debian/Ubuntu:apt-get install wkhtmltopdf

视窗:choco install wkhtmltopdf

参见 MacOS/Ubuntu/其他操作系统的官方文档:https ://github.com/JazzCore/python-pdfkit/wiki/Installing-wkhtmltopdf

于 2014-05-20T13:24:28.620 回答
61

WeasyPrint

pip install weasyprint  # No longer supports Python 2.x.

python
>>> import weasyprint
>>> pdf = weasyprint.HTML('http://www.google.com').write_pdf()
>>> len(pdf)
92059
>>> open('google.pdf', 'wb').write(pdf)
于 2015-12-23T15:04:13.413 回答
25

感谢下面的帖子,我可以添加要打印的网页链接地址,并在生成的 PDF 上显示时间,无论它有多少页。

使用 Python 将文本添加到现有 PDF

https://github.com/disflux/django-mtr/blob/master/pdfgen/doc_overlay.py

共享脚本如下:

import time
from pyPdf import PdfFileWriter, PdfFileReader
import StringIO
from reportlab.pdfgen import canvas
from reportlab.lib.pagesizes import letter
from xhtml2pdf import pisa
import sys 
from PyQt4.QtCore import *
from PyQt4.QtGui import * 
from PyQt4.QtWebKit import * 

url = 'http://www.yahoo.com'
tem_pdf = "c:\\tem_pdf.pdf"
final_file = "c:\\younameit.pdf"

app = QApplication(sys.argv)
web = QWebView()
#Read the URL given
web.load(QUrl(url))
printer = QPrinter()
#setting format
printer.setPageSize(QPrinter.A4)
printer.setOrientation(QPrinter.Landscape)
printer.setOutputFormat(QPrinter.PdfFormat)
#export file as c:\tem_pdf.pdf
printer.setOutputFileName(tem_pdf)

def convertIt():
    web.print_(printer)
    QApplication.exit()

QObject.connect(web, SIGNAL("loadFinished(bool)"), convertIt)

app.exec_()
sys.exit

# Below is to add on the weblink as text and present date&time on PDF generated

outputPDF = PdfFileWriter()
packet = StringIO.StringIO()
# create a new PDF with Reportlab
can = canvas.Canvas(packet, pagesize=letter)
can.setFont("Helvetica", 9)
# Writting the new line
oknow = time.strftime("%a, %d %b %Y %H:%M")
can.drawString(5, 2, url)
can.drawString(605, 2, oknow)
can.save()

#move to the beginning of the StringIO buffer
packet.seek(0)
new_pdf = PdfFileReader(packet)
# read your existing PDF
existing_pdf = PdfFileReader(file(tem_pdf, "rb"))
pages = existing_pdf.getNumPages()
output = PdfFileWriter()
# add the "watermark" (which is the new pdf) on the existing page
for x in range(0,pages):
    page = existing_pdf.getPage(x)
    page.mergePage(new_pdf.getPage(0))
    output.addPage(page)
# finally, write "output" to a real file
outputStream = file(final_file, "wb")
output.write(outputStream)
outputStream.close()

print final_file, 'is ready.'
于 2014-04-30T07:31:14.667 回答
14

这是一个工作正常的:

import sys 
from PyQt4.QtCore import *
from PyQt4.QtGui import * 
from PyQt4.QtWebKit import * 

app = QApplication(sys.argv)
web = QWebView()
web.load(QUrl("http://www.yahoo.com"))
printer = QPrinter()
printer.setPageSize(QPrinter.A4)
printer.setOutputFormat(QPrinter.PdfFormat)
printer.setOutputFileName("fileOK.pdf")

def convertIt():
    web.print_(printer)
    print("Pdf generated")
    QApplication.exit()

QObject.connect(web, SIGNAL("loadFinished(bool)"), convertIt)
sys.exit(app.exec_())
于 2014-04-29T08:11:24.150 回答
11

这是一个使用 QT 的简单解决方案。我发现这是对 StackOverFlow 上另一个问题的答案的一部分。我在 Windows 上对其进行了测试。

from PyQt4.QtGui import QTextDocument, QPrinter, QApplication

import sys
app = QApplication(sys.argv)

doc = QTextDocument()
location = "c://apython//Jim//html//notes.html"
html = open(location).read()
doc.setHtml(html)

printer = QPrinter()
printer.setOutputFileName("foo.pdf")
printer.setOutputFormat(QPrinter.PdfFormat)
printer.setPageSize(QPrinter.A4);
printer.setPageMargins (15,15,15,15,QPrinter.Millimeter);

doc.print_(printer)
print "done!"
于 2015-01-20T20:38:27.607 回答
11

根据这个答案:如何使用 Python 将网页转换为 PDF,建议使用pdfkit。您还必须安装wkhtmltopdf

如果您有本地.html文件,则需要使用以下命令:

pdfkit.from_file('test.html', 'out.pdf')

但是,如果您没有将 wkhtmltopdf 可执行文件添加到系统路径中,这将引发错误。这是让我绊倒的部分,我想分享。

在 Windows 上,打开您的环境变量并将它们添加到您的System variables>Path中,如下所示。就我而言,这些 . exe在我从 exe 安装 wkhtmltopdf 后,文件位于此处:

C:\Program Files\wkhtmltopdf\bin

环境变量

于 2018-01-29T22:31:34.420 回答
5

我使用 pdfkit 尝试了@NorthCat 答案。

它需要安装 wkhtmltopdf。安装可以从这里下载。https://wkhtmltopdf.org/downloads.html

安装可执行文件。然后写一行来指示 wkhtmltopdf 的位置,如下所示。(引用自Can't create pdf using python PDFKIT Error : " No wkhtmltopdf executable found:"

import pdfkit


path_wkthmltopdf = "C:\\Folder\\where\\wkhtmltopdf.exe"
config = pdfkit.configuration(wkhtmltopdf = path_wkthmltopdf)

pdfkit.from_url("http://google.com", "out.pdf", configuration=config)
于 2019-10-18T02:09:54.113 回答
3

如果你使用 selenium 和 chromium,你不需要自己管理 cookie,你可以从 chromium 的 print 生成 pdf 页面为 pdf。你可以参考这个项目来实现它。 https://github.com/maxvst/python-selenium-chrome-html-to-pdf-converter

修改基础 > https://github.com/maxvst/python-selenium-chrome-html-to-pdf-converter/blob/master/sample/html_to_pdf_converter.py

import sys
import json, base64


def send_devtools(driver, cmd, params={}):
    resource = "/session/%s/chromium/send_command_and_get_result" % driver.session_id
    url = driver.command_executor._url + resource
    body = json.dumps({'cmd': cmd, 'params': params})
    response = driver.command_executor._request('POST', url, body)
    return response.get('value')


def get_pdf_from_html(driver, url, print_options={}, output_file_path="example.pdf"):
    driver.get(url)

    calculated_print_options = {
        'landscape': False,
        'displayHeaderFooter': False,
        'printBackground': True,
        'preferCSSPageSize': True,
    }
    calculated_print_options.update(print_options)
    result = send_devtools(driver, "Page.printToPDF", calculated_print_options)
    data = base64.b64decode(result['data'])
    with open(output_file_path, "wb") as f:
        f.write(data)



# example
from selenium import webdriver
from selenium.webdriver.chrome.options import Options

url = "https://stackoverflow.com/questions/23359083/how-to-convert-webpage-into-pdf-by-using-python#"
webdriver_options = Options()
webdriver_options.add_argument("--no-sandbox")
webdriver_options.add_argument('--headless')
webdriver_options.add_argument('--disable-gpu')
driver = webdriver.Chrome(chromedriver, options=webdriver_options)
get_pdf_from_html(driver, url)
driver.quit()
于 2020-07-26T13:31:17.363 回答
3

该解决方案使用 PyQt5 版本 5.15.0 对我有用

import sys
from PyQt5 import QtWidgets, QtWebEngineWidgets
from PyQt5.QtCore import QUrl
from PyQt5.QtGui import QPageLayout, QPageSize
from PyQt5.QtWidgets import QApplication

if __name__ == '__main__':
    app = QtWidgets.QApplication(sys.argv)
    loader = QtWebEngineWidgets.QWebEngineView()
    loader.setZoomFactor(1)
    layout = QPageLayout()
    layout.setPageSize(QPageSize(QPageSize.A4Extra))
    layout.setOrientation(QPageLayout.Portrait)
    loader.load(QUrl('https://stackoverflow.com/questions/23359083/how-to-convert-webpage-into-pdf-by-using-python'))
    loader.page().pdfPrintingFinished.connect(lambda *args: QApplication.exit())

    def emit_pdf(finished):
        loader.page().printToPdf("test.pdf", pageLayout=layout)

    loader.loadFinished.connect(emit_pdf)
    sys.exit(app.exec_())
于 2020-08-06T19:39:19.283 回答