如何将weasyprint生成的PDF文件保存(存储)到指定目录?

时间:2017-05-28 06:58:13

标签: python django weasyprint

我需要 weasyprint 生成的 pdf 文件作为某个指定的文件夹,例如在文件夹&#34; my_project / pdf_files / < /强>&#34;

注意:我正在为我的项目使用django框架。这是项目的结构。

my_project/

----pdf_generator_app/

--------admin.py

--------models.py

--------views.py

pdf_files/

目前我的 views.py

中有此内容
def generate(student_id):
    student = get_object_or_404(Student, application_id=student_id)
    html = render_to_string('contract.html', {'student': student})
    response = HttpResponse(content_type='application/pdf')
    response['Content-Disposition'] = 'filename="some_file.pdf"'
    weasyprint.HTML(string=html).write_pdf('myfile.pdf', 
                                           presentational_hints=True,
                                           stylesheets=[weasyprint.CSS(settings.STATIC_ROOT + '/css/styles.css')])
    return response

但是此视图不会将pdf文件存储到目录中。它只是在浏览器上显示文件。我需要将文件存储在 my_project / pdf_files /

目录中

3 个答案:

答案 0 :(得分:1)

对我来说,我得到了PDF文件,但无法在我的浏览器上查看。 替换&#39; myfile.pdf&#39;到absolulte路径并检查是否生成pdf文件。在我的条件下,它对我有用。

答案 1 :(得分:1)

我把输出写入二进制模式并且有效。

dirname = os.path.dirname(__file__)


def hello_pdf():
    # Make a PDF straight from HTML in a string.
    html = render_template('template-1.html', name=name)

    pdf = HTML(string=html).write_pdf()

    if os.path.exists(dirname):

        f = open(os.path.join(dirname, 'mypdf.pdf'), 'wb')
        f.write(pdf)

答案 2 :(得分:0)

您可以将文件名作为参数传递,并将PDF存储为文件:

HTML(string=html).write_pdf('out.pdf')