Metadata-Version: 2.1
Name: bluewave
Version: 0.0.4
Summary: A package to compare similarity of two pdfs
Author-email: bballboy8 <author@example.com>
Project-URL: Homepage, https://github.com/bballboy8/bluewave/
Project-URL: Bug Tracker, https://github.com/bballboy8/bluewave/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: black (==22.10.0)
Requires-Dist: matplotlib (==3.6.2)
Requires-Dist: numpy (==1.23.5)
Requires-Dist: openpyxl (==3.0.10)
Requires-Dist: pandas (==1.5.2)
Requires-Dist: Pillow (==9.3.0)
Requires-Dist: pre-commit (==2.20.0)
Requires-Dist: pydivsufsort (==0.0.6)
Requires-Dist: PyMuPDF (==1.21.0)
Requires-Dist: pytest (==7.2.0)
Requires-Dist: scikit-learn (==1.1.3)

# bluewave

This is a Python script to analyze the similarity of two PDFs.

## Usage

To run this, an example would be:

```python
from bluewave.compare_pdfs import compare_pdf_files

filenames = ["file1.pdf", "file2.pdf"]
result = compare_pdf_files(filenames,
                           methods=False,
                           pretty_print=False,
                           verbose=True,
                           regen_cache=True,
                           sidecar_only=False,
                           no_importance=False
                           )
```
