Pythonを使用してWebページをPDFに変換する方法


92

Pythonを使用して、WebページをローカルファイルPDFに印刷するソリューションを探していました。良い解決策の1つは、Qtを使用することです(https://bharatikunal.wordpress.com/2010/01/)

ImportError: No module named PyQt4.QtCore」や「ImportError: No module named PyQt4.QtCore」などのエラーメッセージが表示されるため、PyQt4のインストールに問題があったため、最初は機能しませんでした。

PyQt4が正しくインストールされていないためです。以前はライブラリをC:\ Python27 \ Libに配置していましたが、PyQt4用ではありません。

実際、それは単にhttp://www.riverbankcomputing.com/software/pyqt/downloadからダウンロードして(使用している正しいPythonバージョンを確認する)、C:\ Python27(私の場合)にインストールする必要があります。それでおしまい。

スクリプトは正常に実行されるので、共有したいと思います。Qprinterを使用してより多くのオプションのために、参照してくださいhttp://qt-project.org/doc/qt-4.8/qprinter.html#Orientation-enum

回答:


155

pdfkitを使用することもできます。

使用法

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

インストール

マックOS: brew install Caskroom/cask/wkhtmltopdf

Debian / Ubuntu: apt-get install wkhtmltopdf

ウィンドウズ: choco install wkhtmltopdf

MacOS / Ubuntu /その他のOSの公式ドキュメントを参照してください:https : //github.com/JazzCore/python-pdfkit/wiki/Installing-wkhtmltopdf


4
これは素晴らしいです。reportlabをいじったり、印刷ドライブを使用して変換するよりもはるかに簡単です。本当にありがとう。
ダウラーズ2015年

@NorthCatは、pdfkitを使用したhtmlテーブルの変換に関する別の例を示すことができますか?
バベル

1
Windowsがpdfkitをサポートしていないようです。本当?
Kane Chew 2017年

2
パーフェクト!! 埋め込まれた画像をダウンロードして、それを使用しないでください!あなたはする必要がありますapt-get install wkhtmltopdf
ティンマリーノ

4
pdfkitは、Python以外のパッケージwkhtmltopdfに依存しており、実行中のXサーバーが必要です。したがって、一部の環境では快適ですが、これは一般的にPythonで機能する回答ではありません。
Rasmus Kaj

45

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)

5
URLの代わりにファイルパスを指定できますか?
Piyush S. Wanare 2017

11
依存関係がシステムパッケージではなくpythonパッケージであるため、このプロジェクトを好むと思います。2018年1月の時点で、更新の頻度とドキュメントが改善されているようです。
STV

3
インストールするものが多すぎます。私はlibpangoに立ち寄り、pdfkitに行きました。システム全体のwkhtmltopdfには厄介ですが、weasyprintにもシステム全体のインストールが必要です。
visoft 2018

1
私はオプションがあるべきと考えているだろう'wb'、ではない'w'ので、pdfあるbytesオブジェクト。
アナトリーシェルバコフ

1
私にとっては、最初のページのみがダウンロードされ、残りは無視されます
ファビオ

24

以下の投稿のおかげで、印刷するWebページのリンクアドレスを追加したり、ページの数に関係なく、生成された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.'

コードを共有していただきありがとうございます。これをローカルpdfファイルで機能させるためのアドバイスはありますか?それとも、URLの前に「file:///」を付けるのと同じくらい簡単ですか。私はこれらのライブラリにあまり詳しくありません...ありがとう
user2426679 '31 / 10/31

@ user2426679、あなたはオンラインPDFをローカルPDFファイルに変換することを意味しますか?
マークK

お返事ありがとうございます... 私はwkhtmltopdfを使用することになりました。しかし、私は私のhddにローカルであるPDFをロードする方法を尋ねていました。乾杯
user2426679 14

@ user2426679申し訳ありません、それでもあなたを理解できません。多分私もPythonの初心者だからです。あなたはPythonでローカルPDFファイルを読むつもりですか?
マークK

html5libxhtml2pdfで使用されるにいくつかの問題がありました。このソリューションは問題を修正しました:github.com/xhtml2pdf/xhtml2pdf/issues/318
Blairg23

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_())

興味深いことに、Webページのリンクは、生成されたPDF内のリンクではなく、テキストとして生成されます。
2014年

なぜこれが私のために空白のPDFを生成するのか誰でも知っていますか?
ボソン

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!"

2

pdfkitを使用して@NorthCatの回答を試しました。

wkhtmltopdfをインストールする必要がありました。インストールはここからダウンロードできます。https://wkhtmltopdf.org/downloads.html

実行可能ファイルをインストールします。次に、以下のようにwkhtmltopdfの場所を示す行を記述します。(Python PDFKITエラーを使用してPDFを作成できないから参照: "wkhtmltopdf実行ファイルが見つかりません:"

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)

1

セレンとクロムを使用する場合、Cookieを自分で管理する必要はなく、クロムの印刷物から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 = "/programming/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()

1
まず、weasyprintを使用しますが、独自のdefault_url_fetchercookieを処理してcookieを処理することもできます が、後でUbuntu16にインストールすると問題が発生します。次に、wkhtmltopdfを使用してcookie設定をサポートしていますが、処理時に-15 -11のような多くのOSERRORが発生しましたいくつかのページ。
Yuanmeng Xiao

@Yuanmeng Xiaoさんを共有していただきありがとうございます。
マークK

1

このソリューションは、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('/programming/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_())
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.