Package pdf_utils

Welcome to pdf_utils. The purpose of this package is to fix problems with scanned PDF documents.

Note - pdf_utils contains a module 'PDF' which contains a class also named 'PDF'. Since pdf_utils.PDF.PDF seemed redundant, this package imports the PDF class. The documentation still shows the extra PDF module in the middle, but just import the class like this:

from pdf_utils import PDF
Expand source code
"""
Welcome to pdf_utils. The purpose of this package is to fix problems
with scanned PDF documents. 

**Note** - pdf_utils contains a module 'PDF' which contains a class also 
named 'PDF'. Since pdf_utils.PDF.PDF seemed redundant, this package 
imports the PDF class. The documentation still shows the extra PDF
module in the middle, but just import the class like this: 

```
from pdf_utils import PDF
``` 
"""

from .PDF import PDF

Sub-modules

pdf_utils.PDF

Module for PDF utilities.

pdf_utils.tests

This module contains unit tests for the pdf_utils module. You only need this if you are contributing to this module's code, but it might be useful as …