Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 358409
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T12:17:49+00:00 2026-05-12T12:17:49+00:00

For my django powered site, I am looking for an easy solution to convert

  • 0

For my django powered site, I am looking for an easy solution to convert dynamic html pages to pdf.

Pages include HTML and charts from Google visualization API (which is javascript based, yet including those graphs is a must).

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T12:17:49+00:00Added an answer on May 12, 2026 at 12:17 pm

    Try the solution from Reportlab.

    Download it and install it as usual with python setup.py install

    You will also need to install the following modules: xhtml2pdf, html5lib, pypdf with easy_install.

    Here is an usage example:

    First define this function:

    import cStringIO as StringIO
    from xhtml2pdf import pisa
    from django.template.loader import get_template
    from django.template import Context
    from django.http import HttpResponse
    from cgi import escape
    
    
    def render_to_pdf(template_src, context_dict):
        template = get_template(template_src)
        context = Context(context_dict)
        html  = template.render(context)
        result = StringIO.StringIO()
    
        pdf = pisa.pisaDocument(StringIO.StringIO(html.encode("ISO-8859-1")), result)
        if not pdf.err:
            return HttpResponse(result.getvalue(), content_type='application/pdf')
        return HttpResponse('We had some errors<pre>%s</pre>' % escape(html))
    

    Then you can use it like this:

    def myview(request):
        #Retrieve data or whatever you need
        return render_to_pdf(
                'mytemplate.html',
                {
                    'pagesize':'A4',
                    'mylist': results,
                }
            )
    

    The template:

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
        <head>
            <title>My Title</title>
            <style type="text/css">
                @page {
                    size: {{ pagesize }};
                    margin: 1cm;
                    @frame footer {
                        -pdf-frame-content: footerContent;
                        bottom: 0cm;
                        margin-left: 9cm;
                        margin-right: 9cm;
                        height: 1cm;
                    }
                }
            </style>
        </head>
        <body>
            <div>
                {% for item in mylist %}
                    RENDER MY CONTENT
                {% endfor %}
            </div>
            <div id="footerContent">
                {%block page_foot%}
                    Page <pdf:pagenumber>
                {%endblock%}
            </div>
        </body>
    </html>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm facing very strange issue, I'm getting JSON object from django powered site and
I'm about to deploy a mediumsized site powered by Django. I have a dedicated
I am attempting model inheritance on my Django powered site in order to adhere
I'm creating a Django-powered site for my newspaper-ish site. The least obvious and common-sense
We've got a server over which we're running a Django powered site. Since we
Django has the Flatpages app, which lets site admins change content on specific pages
I have an upload page in django powered site. The end-users upload the documents
Does Django have any template tags to generate common HTML markup? For example, I
In Django, given excerpts from an application animals likeso: A animals/models.py with: from django.db
We recently launched a new Django-powered website, and we are experiencing the oddest bug:

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.