Metadata-Version: 2.1
Name: PyJPDF
Version: 0.1.3
Summary: A simple library to extract text from PDF files.
Home-page: https://github.com/LordWaif/PyJPDF
Author: Jasson Carvalho
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# PyJPDF

PyJPDF is a Python library for extracting information from PDF files.

## Author

Jasson Carvalho

## Version

0.1.3

## Installation

```bash
pip install pyjpdf
```

## Usage

```bash
import pyjpdf as PyJPDF

p = PyJPDF.PyjPDFExtract()

## From URL
text = p.from_url('http://www.example.com/teste.pdf')

## From File
text = p.from_file('teste.pdf')

## From Stream
text = p.from_stream(open('teste.pdf', 'rb'))
```
