Metadata-Version: 2.1
Name: pdfmap
Version: 0.0.11
Summary: Turning PDF into WordMap algorithm
Home-page: https://github.com/elint-tech/pdfmap/
Author: elint-tech
Author-email: contato@elint.com.br
License: proprietary
Download-URL: https://github.com/elint-tech/pdfmap/dist/pdfmap-0.0.11tar.gz
Keywords: pdfmap,pdf,wordmap
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: Intended Audience :: Other Audience
Classifier: Topic :: Software Development
Classifier: Topic :: Utilities
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: pdfminer (==20191125)

# pdfmap [![PyPI version fury.io](https://img.shields.io/pypi/v/pdfmap?color=green)](https://github.com/elint-tech/pdfmap) [![PyPI pyversions](https://img.shields.io/pypi/pyversions/pdfmap)](https://github.com/elint-tech/pdfmap)


## Dependencies
* pdfminer

## Setup

```bash
pip3 install pdfmap
```

## Usage

Simple usage can be achieved with:

```python
from pdfmap import pdfWordMap

pdfwm = pdfWordMap()
print(pdfwm.parse_pdf('folder/pdfname.pdf'))
```

For other examples, check out [our example script](example.py)


