Metadata-Version: 2.1
Name: pdfdol
Version: 0.1.1
Summary: Data Object Layer for PDF data
Author: OtoSense
License: mit
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: dol
Requires-Dist: pypdf


# pdfdol
Data Object Layer for PDF data


To install:	```pip install pdfdol```


# Examples

Get a dict-like object to list and read the pdfs of a folder, as text:

    >>> from pdfdol import PdfFilesReader
    >>> from pdfdol.tests import get_test_pdf_folder
    >>> folder_path = get_test_pdf_folder()
    >>> s = PdfFilesReader(folder_path)
    >>> sorted(s)
    ['sample_pdf_1', 'sample_pdf_2']
    >>> assert s['sample_pdf_2'] == [
    ...     'Page 1\nThis is a sample text for testing Python PDF tools.'
    ... ]
