Metadata-Version: 1.0
Name: headless-pdfkit
Version: 0.1.4
Summary: A headless version of pdfkit which makes use of xvfb-run
Home-page: http://github.com/mrshu/headless_pdfkit
Author: Marek Suppa (mr.Shu)
Author-email: mr@shu.io
License: MIT
Description-Content-Type: UNKNOWN
Description: Headless PDFKit
        ===============
        
        The PDFKit package makes use of `wkhtmltopdf`, which in turn needs an X Server
        to run. In Debian land, this generally requires `xvfb-run` wrapper.
        
        The ``headless_pdfkit`` package tries to make the `hotfix`_ proposed by
        `jakewins`_ a bit easier to work with.
        
        Installation
        ------------
        
        You can install ``headless_pdfkit`` by running::
        
            pip install headless-pdfkit
        
        Examples
        --------
        
        Save a simple PDF from string.::
        
            from headless_pdfkit import generate_pdf
        
            ret = generate_pdf('<html></html>')
            with open('output.pdf', 'wb') as w:
                w.write(ret)
        
        
        .. _hotfix: https://github.com/JazzCore/python-pdfkit/issues/56#issuecomment-305593936
        .. _jakewins: https://github.com/jakewins
        
Platform: UNKNOWN
