Metadata-Version: 2.1
Name: UniParse
Version: 0.1.0
Summary: A library to parse PDF, DOCX, and TXT files
Home-page: https://github.com/hridesh-net/praserlib.git
Author: Hridesh
Author-email: hridesh.khandal@gmail.com
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: PyMuPDF>=1.18.0
Requires-Dist: python-docx>=0.8.10

# UniParse

A Python library to parse PDF, DOCX, and TXT files.

## Installation

```bash
pip install mylibrary
```

## How to Use
```python
from mylibrary import FileParser

parser = FileParser('path/to/your/file.pdf')
content = parser.parse()
print(content)
```

## Features
- Parse text from PDF files
- Extract content from DOCX documents
- Read text from TXT files
