Metadata-Version: 1.1
Name: xpdf-python
Version: 0.0.10
Summary: Python wrapper for xpdf
Home-page: https://github.com/ecatkins/xpdf_python
Author: Edward Atkins
Author-email: ecatkins@gmail.com
License: BSD
Download-URL: https://github.com/ecatkins/xpdf_python/tarball/0.0.10
Description: xpdf python
        ===============================
        
        version number: 0.0.10
        
        author: Edward Atkins
        
        python >= 3.4
        
        Overview
        --------
        
        Python wrapper for xpdf (currently just the "pdftotext" utility)
        
        Installation / Usage
        --------------------
        
        To install using pip from pypi:
        
            $ pip install xpdf_python
        
        To install using pip from github:
        
            $ pip install git+https://github.com:/ecatkins/xpdf_python
        
        Or clone the repo:
        
            $ git clone https://github.com/ecatkins/xpdf_python.git
            $ python setup.py install
        
        The package will attempt to automatically install xpdf. If this fails use either:
        1. Instructions for your OS found [here](http://www.foolabs.com/xpdf/download.html) OR 
        2. The bash scripts found in this repo's install_xpdf subdirectory
            
        
        Operating Systems
        ------------
        
        macOS, Linux
        
        Note: For Linux you may need to install the libxp6 library:
        
            sudo apt install libxp6 (Ubuntu)
            sudo yum install libXp.so.6 (Centos)
        
        Example
        -------
        
            from xpdf_python import to_text
        
            pdf_location = '/path/to/my.pdf'
            text = to_text(pdf_location)
        
        Supported by
        ------------
        
        <a href = "http://dealstatrei.com"><img src="dealstat-logo.png" width="100"> </a>
        
           
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
