Metadata-Version: 2.0
Name: document-clipper
Version: 0.11.0
Summary: A set of utility classes and functions to process documents with Python
Home-page: https://github.com/reclamador/document_clipper
Author: Nick Jaremek
Author-email: nick13jaremek@gmail.com
License: MIT license
Keywords: document_clipper
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Requires-Dist: Pillow (==4.2.1)
Requires-Dist: PyPDF2 (==1.26.0)
Requires-Dist: beautifulsoup4 (==4.3.2)
Requires-Dist: lxml (==3.3.2)
Requires-Dist: pilkit (==2.0)
Requires-Dist: scraperwiki (==0.5.1)

================
document-clipper
================


.. image:: https://img.shields.io/pypi/v/document_clipper.svg
        :target: https://pypi.python.org/pypi/document_clipper

.. image:: https://img.shields.io/travis/reclamador/document_clipper.svg
        :target: https://travis-ci.org/reclamador/document_clipper

.. image:: https://readthedocs.org/projects/document-clipper/badge/?version=latest
        :target: https://document-clipper.readthedocs.io/en/latest/?badge=latest
        :alt: Documentation Status

.. image:: https://pyup.io/repos/github/reclamador/document_clipper/shield.svg
     :target: https://pyup.io/repos/github/reclamador/document_clipper/
     :alt: Updates

.. image:: https://coveralls.io/repos/github/reclamador/document_clipper/badge.svg?branch=master
     :target: https://coveralls.io/github/reclamador/document_clipper?branch=master



A set of utility classes and functions to process documents with Python


* Free software: MIT license
* Documentation: https://document-clipper.readthedocs.io.

Installation
------------

The `document_clipper` package uses libraries that rely on the `pdftohtml` command line util. It can be obtained by
installing the `poppler-utils` package.

For instance, in Ubuntu, run the following:

.. code-block:: bash

    $ sudo apt-get install poppler-utils


Then, you may install `document_clipper` as usual via Python package managers, such as PIP:

.. code-block:: bash

    $ pip install document_clipper



Features
--------

* Fetch the number of pages associated to a PDF file.
* Extract the coordinates and dimensions of a given text located in a PDF file.


=======
History
=======

0.1.0 (2017-06-27)
------------------

* First release on PyPI.


