Metadata-Version: 2.4
Name: uniconnector
Version: 0.1.0
Summary: A simple library to connect to multiple database types.
Author-email: Your Name <your@email.com>
Project-URL: Homepage, https://github.com/your-username/uniconnector
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: postgres
Requires-Dist: psycopg2-binary; extra == "postgres"
Provides-Extra: mysql
Requires-Dist: mysql-connector-python; extra == "mysql"
Provides-Extra: all
Requires-Dist: psycopg2-binary; extra == "all"
Requires-Dist: mysql-connector-python; extra == "all"

# UniConnector

A simple library to connect to multiple database types with a single function.

## Installation

Install the base library:
```bash
pip install uniconnector
