Metadata-Version: 2.1
Name: py-doc
Version: 0.0.13
Summary: Used for working with documentations in Python.
Home-page: 
Author: Connor Holm
Author-email: connorjholm@gmail.com
License: MIT
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
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: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: matplotlib (>=3.2.2)
Requires-Dist: numpy (<1.24.0,>=1.18.5)
Requires-Dist: opencv-python (>=4.1.1)
Requires-Dist: Pillow (>=7.1.2)
Requires-Dist: PyYAML (>=5.3.1)
Requires-Dist: requests (>=2.23.0)
Requires-Dist: scipy (>=1.4.1)
Requires-Dist: torch (!=1.12.0,>=1.7.0)
Requires-Dist: torchvision (!=0.13.0,>=0.8.1)
Requires-Dist: tqdm (>=4.41.0)
Requires-Dist: protobuf (<4.21.3)
Requires-Dist: tensorboard (>=2.4.1)
Requires-Dist: pandas (>=1.1.4)
Requires-Dist: seaborn (>=0.11.0)
Requires-Dist: ipython
Requires-Dist: psutil
Requires-Dist: thop
Requires-Dist: py-doc

# PyDoc
A library for interacting with pdf documents.

### Installation
```
pip install py-doc
```

### Get Started
How to use the library:

```python
from py_doc import Multiplication

# Instantiate a Multiplication object
multiplication = Multiplication(2)

# Call the multiply method
result = multiplication.multiply(5)
```

### Documentation
The documentation for this library can be found [here](https://py-doc.readthedocs.io/en/latest/index.html#).


