[Python-modules-commits] [pdfkit] 01/03: import pdfkit_0.5.0.orig.tar.gz

Scott Kitterman kitterman at moszumanska.debian.org
Wed Nov 16 04:48:55 UTC 2016


This is an automated email from the git hooks/post-receive script.

kitterman pushed a commit to branch master
in repository pdfkit.

commit 9512cb022fabfc4785027439bc04354ccfa239ed
Author: Scott Kitterman <scott at kitterman.com>
Date:   Tue Nov 15 22:50:26 2016 -0500

    import pdfkit_0.5.0.orig.tar.gz
---
 HISTORY.rst                          |  25 ++++
 LICENSE                              |  20 ++++
 MANIFEST.in                          |   1 +
 PKG-INFO                             | 208 +++++++++++++++++++++++++++++++++
 README.rst                           | 160 ++++++++++++++++++++++++++
 pdfkit.egg-info/PKG-INFO             | 208 +++++++++++++++++++++++++++++++++
 pdfkit.egg-info/SOURCES.txt          |  14 +++
 pdfkit.egg-info/dependency_links.txt |   1 +
 pdfkit.egg-info/top_level.txt        |   1 +
 pdfkit/__init__.py                   |  11 ++
 pdfkit/api.py                        |  79 +++++++++++++
 pdfkit/configuration.py              |  27 +++++
 pdfkit/pdfkit.py                     | 217 +++++++++++++++++++++++++++++++++++
 pdfkit/source.py                     |  41 +++++++
 setup.cfg                            |   5 +
 setup.py                             |  53 +++++++++
 16 files changed, 1071 insertions(+)

diff --git a/HISTORY.rst b/HISTORY.rst
new file mode 100644
index 0000000..44b0e3f
--- /dev/null
+++ b/HISTORY.rst
@@ -0,0 +1,25 @@
+Changelog
+---------
+* `0.5.0`
+    * Allow passing multiple css files
+    * Fix problems with external file encodings
+    * Rise an error when X server is missing on \*nix systems
+    * Fix tests that was broken with latest wkhtmltopdf release
+    * Update README
+* `0.4.1`
+    * More easier custom configuration setting
+    * Update README
+* `0.4.0`
+    * Allow passing file-like objects
+    * Ability to return PDF as a string
+    * Allow user specification of configuration
+    * API calls now returns True on success
+    * bugfixes
+* `0.3.0`
+    * Python 3 support
+* `0.2.4`
+    * Add History
+    * Update setup.py
+* `0.2.3`
+    * Fix installing with setup.py
+    * Update README
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..274cd86
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,20 @@
+Copyright (c) 2012 JazzCore
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/MANIFEST.in b/MANIFEST.in
new file mode 100644
index 0000000..c10cb34
--- /dev/null
+++ b/MANIFEST.in
@@ -0,0 +1 @@
+include README.rst LICENSE HISTORY.rst
\ No newline at end of file
diff --git a/PKG-INFO b/PKG-INFO
new file mode 100644
index 0000000..a0c1e30
--- /dev/null
+++ b/PKG-INFO
@@ -0,0 +1,208 @@
+Metadata-Version: 1.1
+Name: pdfkit
+Version: 0.5.0
+Summary: Wkhtmltopdf python wrapper to convert html to pdf using the webkit rendering engine and qt
+Home-page: UNKNOWN
+Author: Golovanov Stanislav
+Author-email: stgolovanov at gmail.com
+License: MIT
+Download-URL: https://github.com/JazzCore/python-pdfkit
+Description: Python-PDFKit: HTML to PDF wrapper

+        ==================================

+        

+        

+        .. image:: https://travis-ci.org/JazzCore/python-pdfkit.png?branch=master

+                :target: https://travis-ci.org/JazzCore/python-pdfkit

+        

+        Python 2 and 3 wrapper for wkhtmltopdf utility to convert HTML to PDF using Webkit.

+        

+        This is adapted version of `ruby PDFKit <https://github.com/pdfkit/pdfkit>`_ library, so big thanks to them!

+        

+        Installation

+        ------------

+        

+        1. Install python-pdfkit:

+        

+        ::
+        

+        	$ pip install pdfkit

+        

+        2. Install wkhtmltopdf:

+        

+        * Debian/Ubuntu:

+        

+        ::
+        

+        	$ sudo apt-get install wkhtmltopdf

+        

+        **Warning!** Version in debian/ubuntu repos have reduced functionality (because it compiled without the wkhtmltopdf QT patches), such as adding outlines, headers, footers, TOC etc. To use this options you should install static binary from `wkhtmltopdf <http://wkhtmltopdf.org/>`_ site or you can use `this script <https://github.com/JazzCore/python-pdfkit/blob/master/travis/before-script.sh>`_.

+        

+        * Windows and other options: check wkhtmltopdf `homepage <http://wkhtmltopdf.org/>`_ for binary installers

+        

+        Usage

+        -----

+        

+        For simple tasks:

+        

+        ::
+        

+        	import pdfkit

+        

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

+        	pdfkit.from_file('test.html', 'out.pdf')

+        	pdfkit.from_string('Hello!', 'out.pdf')

+        

+        You can pass a list with multiple URLs or files:

+        

+        ::
+        

+        	pdfkit.from_url(['google.com', 'yandex.ru', 'engadget.com'], 'out.pdf')

+        	pdfkit.from_file(['file1.html', 'file2.html'], 'out.pdf')

+        

+        Also you can pass an opened file:

+        

+        ::
+        

+            with open('file.html') as f:

+                pdfkit.from_file(f, 'out.pdf')

+        

+        If you wish to further process generated PDF, you can read it to a variable:

+        

+        ::
+        

+            # Use False instead of output path to save pdf to a variable

+            pdf = pdfkit.from_url('http://google.com', False)

+        

+        You can specify all wkhtmltopdf `options <http://wkhtmltopdf.org/usage/wkhtmltopdf.txt>`_. You can drop '--' in option name. If option without value, use *None, False* or *''* for dict value:

+        

+        ::
+        

+        	options = {

+        	    'page-size': 'Letter',

+        	    'margin-top': '0.75in',

+        	    'margin-right': '0.75in',

+        	    'margin-bottom': '0.75in',

+        	    'margin-left': '0.75in',

+        	    'encoding': "UTF-8",

+        	    'no-outline': None

+        	}

+        

+        	pdfkit.from_url('http://google.com', 'out.pdf', options=options)

+        

+        By default, PDFKit will show all ``wkhtmltopdf`` output. If you dont want it, you need to pass ``quiet`` option:

+        

+        ::
+        

+            options = {

+                'quiet': ''

+                }

+        

+            pdfkit.from_url('google.com', 'out.pdf', options=options)

+        

+        Due to wkhtmltopdf command syntax, **TOC** and **Cover** options must be specified separately:

+        

+        ::
+        

+        	toc = {

+        	    'xsl-style-sheet': 'toc.xsl'

+        	}

+        

+        	cover = 'cover.html'

+        

+        	pdfkit.from_file('file.html', options=options, toc=toc, cover=cover)

+        

+        You can specify external CSS files when converting files or strings using *css* option.

+        

+        **Warning** This is a workaround for `this bug <http://code.google.com/p/wkhtmltopdf/issues/detail?id=144>`_ in wkhtmltopdf. You should try *--user-style-sheet* option first.

+        

+        ::
+        

+            # Single CSS file

+            css = 'example.css'

+            pdfkit.from_file('file.html', options=options, css=css)

+        

+            # Multiple CSS files

+            css = ['example.css', 'example2.css']

+            pdfkit.from_file('file.html', options=options, css=css)

+        

+        You can also pass any options through meta tags in your HTML:

+        

+        ::
+        

+        	body = """

+        	    <html>

+        	      <head>

+        	        <meta name="pdfkit-page-size" content="Legal"/>

+        	        <meta name="pdfkit-orientation" content="Landscape"/>

+        	      </head>

+        	      Hello World!

+        	      </html>

+        	    """

+        

+        	pdfkit.from_string(body, 'out.pdf') #with --page-size=Legal and --orientation=Landscape

+        

+        Configuration

+        -------------

+        

+        Each API call takes an optional configuration paramater. This should be an instance of ``pdfkit.configuration()`` API call. It takes the configuration options as initial paramaters. The available options are:

+        

+        * ``wkhtmltopdf`` - the location of the ``wkhtmltopdf`` binary. By default ``pdfkit`` will attempt to locate this using ``which`` (on UNIX type systems) or ``where`` (on Windows).

+        * ``meta_tag_prefix`` - the prefix for ``pdfkit`` specific meta tags - by default this is ``pdfkit-``

+        

+        Example - for when ``wkhtmltopdf`` is not on ``$PATH``:

+        

+        ::
+        

+            config = pdfkit.configuration(wkhtmltopdf='/opt/bin/wkhtmltopdf'))

+            pdfkit.from_string(html_string, output_file, configuration=config)

+        

+        

+        Troubleshooting

+        ---------------

+        

+        - ``IOError: 'No wkhtmltopdf executable found'``:

+        

+          Make sure that you have wkhtmltopdf in your `$PATH` or set via custom configuration (see preceding section). *where wkhtmltopdf* in Windows or *which wkhtmltopdf* on Linux should return actual path to binary.

+        

+        - ``IOError: 'Command Failed'``

+        

+          This error means that PDFKit was unable to process an input. You can try to directly run a command from error message and see what error caused failure (on some wkhtmltopdf versions this can be cause by segmentation faults)

+        
+        
+        Changelog
+        ---------
+        * `0.5.0`
+            * Allow passing multiple css files
+            * Fix problems with external file encodings
+            * Rise an error when X server is missing on \*nix systems
+            * Fix tests that was broken with latest wkhtmltopdf release
+            * Update README
+        * `0.4.1`
+            * More easier custom configuration setting
+            * Update README
+        * `0.4.0`
+            * Allow passing file-like objects
+            * Ability to return PDF as a string
+            * Allow user specification of configuration
+            * API calls now returns True on success
+            * bugfixes
+        * `0.3.0`
+            * Python 3 support
+        * `0.2.4`
+            * Add History
+            * Update setup.py
+        * `0.2.3`
+            * Fix installing with setup.py
+            * Update README
+        
+Platform: UNKNOWN
+Classifier: Programming Language :: Python
+Classifier: Programming Language :: Python :: 2.7
+Classifier: Programming Language :: Python :: 3.2
+Classifier: Programming Language :: Python :: 3.3
+Classifier: Topic :: Text Processing
+Classifier: Topic :: Text Processing :: General
+Classifier: Topic :: Text Processing :: Markup
+Classifier: Topic :: Text Processing :: Markup :: HTML
+Classifier: Topic :: Text Processing :: Markup :: XML
+Classifier: Topic :: Utilities
diff --git a/README.rst b/README.rst
new file mode 100644
index 0000000..2977bfc
--- /dev/null
+++ b/README.rst
@@ -0,0 +1,160 @@
+Python-PDFKit: HTML to PDF wrapper
+==================================
+
+
+.. image:: https://travis-ci.org/JazzCore/python-pdfkit.png?branch=master
+        :target: https://travis-ci.org/JazzCore/python-pdfkit
+
+Python 2 and 3 wrapper for wkhtmltopdf utility to convert HTML to PDF using Webkit.
+
+This is adapted version of `ruby PDFKit <https://github.com/pdfkit/pdfkit>`_ library, so big thanks to them!
+
+Installation
+------------
+
+1. Install python-pdfkit:
+
+.. code-block:: bash
+
+	$ pip install pdfkit
+
+2. Install wkhtmltopdf:
+
+* Debian/Ubuntu:
+
+.. code-block:: bash
+
+	$ sudo apt-get install wkhtmltopdf
+
+**Warning!** Version in debian/ubuntu repos have reduced functionality (because it compiled without the wkhtmltopdf QT patches), such as adding outlines, headers, footers, TOC etc. To use this options you should install static binary from `wkhtmltopdf <http://wkhtmltopdf.org/>`_ site or you can use `this script <https://github.com/JazzCore/python-pdfkit/blob/master/travis/before-script.sh>`_.
+
+* Windows and other options: check wkhtmltopdf `homepage <http://wkhtmltopdf.org/>`_ for binary installers
+
+Usage
+-----
+
+For simple tasks:
+
+.. code-block:: python
+
+	import pdfkit
+
+	pdfkit.from_url('http://google.com', 'out.pdf')
+	pdfkit.from_file('test.html', 'out.pdf')
+	pdfkit.from_string('Hello!', 'out.pdf')
+
+You can pass a list with multiple URLs or files:
+
+.. code-block:: python
+
+	pdfkit.from_url(['google.com', 'yandex.ru', 'engadget.com'], 'out.pdf')
+	pdfkit.from_file(['file1.html', 'file2.html'], 'out.pdf')
+
+Also you can pass an opened file:
+
+.. code-block:: python
+
+    with open('file.html') as f:
+        pdfkit.from_file(f, 'out.pdf')
+
+If you wish to further process generated PDF, you can read it to a variable:
+
+.. code-block:: python
+
+    # Use False instead of output path to save pdf to a variable
+    pdf = pdfkit.from_url('http://google.com', False)
+
+You can specify all wkhtmltopdf `options <http://wkhtmltopdf.org/usage/wkhtmltopdf.txt>`_. You can drop '--' in option name. If option without value, use *None, False* or *''* for dict value:
+
+.. code-block:: python
+
+	options = {
+	    'page-size': 'Letter',
+	    'margin-top': '0.75in',
+	    'margin-right': '0.75in',
+	    'margin-bottom': '0.75in',
+	    'margin-left': '0.75in',
+	    'encoding': "UTF-8",
+	    'no-outline': None
+	}
+
+	pdfkit.from_url('http://google.com', 'out.pdf', options=options)
+
+By default, PDFKit will show all ``wkhtmltopdf`` output. If you dont want it, you need to pass ``quiet`` option:
+
+.. code-block:: python
+
+    options = {
+        'quiet': ''
+        }
+
+    pdfkit.from_url('google.com', 'out.pdf', options=options)
+
+Due to wkhtmltopdf command syntax, **TOC** and **Cover** options must be specified separately:
+
+.. code-block:: python
+
+	toc = {
+	    'xsl-style-sheet': 'toc.xsl'
+	}
+
+	cover = 'cover.html'
+
+	pdfkit.from_file('file.html', options=options, toc=toc, cover=cover)
+
+You can specify external CSS files when converting files or strings using *css* option.
+
+**Warning** This is a workaround for `this bug <http://code.google.com/p/wkhtmltopdf/issues/detail?id=144>`_ in wkhtmltopdf. You should try *--user-style-sheet* option first.
+
+.. code-block:: python
+
+    # Single CSS file
+    css = 'example.css'
+    pdfkit.from_file('file.html', options=options, css=css)
+
+    # Multiple CSS files
+    css = ['example.css', 'example2.css']
+    pdfkit.from_file('file.html', options=options, css=css)
+
+You can also pass any options through meta tags in your HTML:
+
+.. code-block:: python
+
+	body = """
+	    <html>
+	      <head>
+	        <meta name="pdfkit-page-size" content="Legal"/>
+	        <meta name="pdfkit-orientation" content="Landscape"/>
+	      </head>
+	      Hello World!
+	      </html>
+	    """
+
+	pdfkit.from_string(body, 'out.pdf') #with --page-size=Legal and --orientation=Landscape
+
+Configuration
+-------------
+
+Each API call takes an optional configuration paramater. This should be an instance of ``pdfkit.configuration()`` API call. It takes the configuration options as initial paramaters. The available options are:
+
+* ``wkhtmltopdf`` - the location of the ``wkhtmltopdf`` binary. By default ``pdfkit`` will attempt to locate this using ``which`` (on UNIX type systems) or ``where`` (on Windows).
+* ``meta_tag_prefix`` - the prefix for ``pdfkit`` specific meta tags - by default this is ``pdfkit-``
+
+Example - for when ``wkhtmltopdf`` is not on ``$PATH``:
+
+.. code-block:: python
+
+    config = pdfkit.configuration(wkhtmltopdf='/opt/bin/wkhtmltopdf'))
+    pdfkit.from_string(html_string, output_file, configuration=config)
+
+
+Troubleshooting
+---------------
+
+- ``IOError: 'No wkhtmltopdf executable found'``:
+
+  Make sure that you have wkhtmltopdf in your `$PATH` or set via custom configuration (see preceding section). *where wkhtmltopdf* in Windows or *which wkhtmltopdf* on Linux should return actual path to binary.
+
+- ``IOError: 'Command Failed'``
+
+  This error means that PDFKit was unable to process an input. You can try to directly run a command from error message and see what error caused failure (on some wkhtmltopdf versions this can be cause by segmentation faults)
diff --git a/pdfkit.egg-info/PKG-INFO b/pdfkit.egg-info/PKG-INFO
new file mode 100644
index 0000000..a0c1e30
--- /dev/null
+++ b/pdfkit.egg-info/PKG-INFO
@@ -0,0 +1,208 @@
+Metadata-Version: 1.1
+Name: pdfkit
+Version: 0.5.0
+Summary: Wkhtmltopdf python wrapper to convert html to pdf using the webkit rendering engine and qt
+Home-page: UNKNOWN
+Author: Golovanov Stanislav
+Author-email: stgolovanov at gmail.com
+License: MIT
+Download-URL: https://github.com/JazzCore/python-pdfkit
+Description: Python-PDFKit: HTML to PDF wrapper

+        ==================================

+        

+        

+        .. image:: https://travis-ci.org/JazzCore/python-pdfkit.png?branch=master

+                :target: https://travis-ci.org/JazzCore/python-pdfkit

+        

+        Python 2 and 3 wrapper for wkhtmltopdf utility to convert HTML to PDF using Webkit.

+        

+        This is adapted version of `ruby PDFKit <https://github.com/pdfkit/pdfkit>`_ library, so big thanks to them!

+        

+        Installation

+        ------------

+        

+        1. Install python-pdfkit:

+        

+        ::
+        

+        	$ pip install pdfkit

+        

+        2. Install wkhtmltopdf:

+        

+        * Debian/Ubuntu:

+        

+        ::
+        

+        	$ sudo apt-get install wkhtmltopdf

+        

+        **Warning!** Version in debian/ubuntu repos have reduced functionality (because it compiled without the wkhtmltopdf QT patches), such as adding outlines, headers, footers, TOC etc. To use this options you should install static binary from `wkhtmltopdf <http://wkhtmltopdf.org/>`_ site or you can use `this script <https://github.com/JazzCore/python-pdfkit/blob/master/travis/before-script.sh>`_.

+        

+        * Windows and other options: check wkhtmltopdf `homepage <http://wkhtmltopdf.org/>`_ for binary installers

+        

+        Usage

+        -----

+        

+        For simple tasks:

+        

+        ::
+        

+        	import pdfkit

+        

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

+        	pdfkit.from_file('test.html', 'out.pdf')

+        	pdfkit.from_string('Hello!', 'out.pdf')

+        

+        You can pass a list with multiple URLs or files:

+        

+        ::
+        

+        	pdfkit.from_url(['google.com', 'yandex.ru', 'engadget.com'], 'out.pdf')

+        	pdfkit.from_file(['file1.html', 'file2.html'], 'out.pdf')

+        

+        Also you can pass an opened file:

+        

+        ::
+        

+            with open('file.html') as f:

+                pdfkit.from_file(f, 'out.pdf')

+        

+        If you wish to further process generated PDF, you can read it to a variable:

+        

+        ::
+        

+            # Use False instead of output path to save pdf to a variable

+            pdf = pdfkit.from_url('http://google.com', False)

+        

+        You can specify all wkhtmltopdf `options <http://wkhtmltopdf.org/usage/wkhtmltopdf.txt>`_. You can drop '--' in option name. If option without value, use *None, False* or *''* for dict value:

+        

+        ::
+        

+        	options = {

+        	    'page-size': 'Letter',

+        	    'margin-top': '0.75in',

+        	    'margin-right': '0.75in',

+        	    'margin-bottom': '0.75in',

+        	    'margin-left': '0.75in',

+        	    'encoding': "UTF-8",

+        	    'no-outline': None

+        	}

+        

+        	pdfkit.from_url('http://google.com', 'out.pdf', options=options)

+        

+        By default, PDFKit will show all ``wkhtmltopdf`` output. If you dont want it, you need to pass ``quiet`` option:

+        

+        ::
+        

+            options = {

+                'quiet': ''

+                }

+        

+            pdfkit.from_url('google.com', 'out.pdf', options=options)

+        

+        Due to wkhtmltopdf command syntax, **TOC** and **Cover** options must be specified separately:

+        

+        ::
+        

+        	toc = {

+        	    'xsl-style-sheet': 'toc.xsl'

+        	}

+        

+        	cover = 'cover.html'

+        

+        	pdfkit.from_file('file.html', options=options, toc=toc, cover=cover)

+        

+        You can specify external CSS files when converting files or strings using *css* option.

+        

+        **Warning** This is a workaround for `this bug <http://code.google.com/p/wkhtmltopdf/issues/detail?id=144>`_ in wkhtmltopdf. You should try *--user-style-sheet* option first.

+        

+        ::
+        

+            # Single CSS file

+            css = 'example.css'

+            pdfkit.from_file('file.html', options=options, css=css)

+        

+            # Multiple CSS files

+            css = ['example.css', 'example2.css']

+            pdfkit.from_file('file.html', options=options, css=css)

+        

+        You can also pass any options through meta tags in your HTML:

+        

+        ::
+        

+        	body = """

+        	    <html>

+        	      <head>

+        	        <meta name="pdfkit-page-size" content="Legal"/>

+        	        <meta name="pdfkit-orientation" content="Landscape"/>

+        	      </head>

+        	      Hello World!

+        	      </html>

+        	    """

+        

+        	pdfkit.from_string(body, 'out.pdf') #with --page-size=Legal and --orientation=Landscape

+        

+        Configuration

+        -------------

+        

+        Each API call takes an optional configuration paramater. This should be an instance of ``pdfkit.configuration()`` API call. It takes the configuration options as initial paramaters. The available options are:

+        

+        * ``wkhtmltopdf`` - the location of the ``wkhtmltopdf`` binary. By default ``pdfkit`` will attempt to locate this using ``which`` (on UNIX type systems) or ``where`` (on Windows).

+        * ``meta_tag_prefix`` - the prefix for ``pdfkit`` specific meta tags - by default this is ``pdfkit-``

+        

+        Example - for when ``wkhtmltopdf`` is not on ``$PATH``:

+        

+        ::
+        

+            config = pdfkit.configuration(wkhtmltopdf='/opt/bin/wkhtmltopdf'))

+            pdfkit.from_string(html_string, output_file, configuration=config)

+        

+        

+        Troubleshooting

+        ---------------

+        

+        - ``IOError: 'No wkhtmltopdf executable found'``:

+        

+          Make sure that you have wkhtmltopdf in your `$PATH` or set via custom configuration (see preceding section). *where wkhtmltopdf* in Windows or *which wkhtmltopdf* on Linux should return actual path to binary.

+        

+        - ``IOError: 'Command Failed'``

+        

+          This error means that PDFKit was unable to process an input. You can try to directly run a command from error message and see what error caused failure (on some wkhtmltopdf versions this can be cause by segmentation faults)

+        
+        
+        Changelog
+        ---------
+        * `0.5.0`
+            * Allow passing multiple css files
+            * Fix problems with external file encodings
+            * Rise an error when X server is missing on \*nix systems
+            * Fix tests that was broken with latest wkhtmltopdf release
+            * Update README
+        * `0.4.1`
+            * More easier custom configuration setting
+            * Update README
+        * `0.4.0`
+            * Allow passing file-like objects
+            * Ability to return PDF as a string
+            * Allow user specification of configuration
+            * API calls now returns True on success
+            * bugfixes
+        * `0.3.0`
+            * Python 3 support
+        * `0.2.4`
+            * Add History
+            * Update setup.py
+        * `0.2.3`
+            * Fix installing with setup.py
+            * Update README
+        
+Platform: UNKNOWN
+Classifier: Programming Language :: Python
+Classifier: Programming Language :: Python :: 2.7
+Classifier: Programming Language :: Python :: 3.2
+Classifier: Programming Language :: Python :: 3.3
+Classifier: Topic :: Text Processing
+Classifier: Topic :: Text Processing :: General
+Classifier: Topic :: Text Processing :: Markup
+Classifier: Topic :: Text Processing :: Markup :: HTML
+Classifier: Topic :: Text Processing :: Markup :: XML
+Classifier: Topic :: Utilities
diff --git a/pdfkit.egg-info/SOURCES.txt b/pdfkit.egg-info/SOURCES.txt
new file mode 100644
index 0000000..c43a209
--- /dev/null
+++ b/pdfkit.egg-info/SOURCES.txt
@@ -0,0 +1,14 @@
+HISTORY.rst
+LICENSE
+MANIFEST.in
+README.rst
+setup.py
+pdfkit/__init__.py
+pdfkit/api.py
+pdfkit/configuration.py
+pdfkit/pdfkit.py
+pdfkit/source.py
+pdfkit.egg-info/PKG-INFO
+pdfkit.egg-info/SOURCES.txt
+pdfkit.egg-info/dependency_links.txt
+pdfkit.egg-info/top_level.txt
... 490 lines suppressed ...

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/pdfkit.git



More information about the Python-modules-commits mailing list