wkhtmltopdf - 缺少url和输出文件参数

时间:2014-01-08 16:45:03

标签: python flask wkhtmltopdf

我正在尝试使用wkhtmltopdf创建一个PDF并且我没有这样做,我现在使用的是一个非常基本的例子,但这给了我一个例外:

Exception: Missing url and output file arguments

以下是该页面的完整屏幕截图: https://dl.dropboxusercontent.com/u/207311432/Exception%20%20Missing%20url%20and%20output%20file%20arguments%20%20%20%20Werkzeug%20Debugger.png

这是我的代码

from app import app 
from wkhtmltopdf import wkhtmltopdf

@app.route('/')
def index():
    return 'Working!'

@app.route('/pdf')
def pdf_gen():
    wkhtmltopdf(url='http://www.example.com', output_file='/home/jsmith/pypdf/example.pdf')
    return 'PDFing'

我正在使用flask web app来生成它。

谢谢!

0 个答案:

没有答案