Metadata-Version: 2.1
Name: dbcontroller
Version: 0.1.22
Summary: Python - Database Controller (SQLAlchemy & Motor)
Keywords: database,sql,mongo
Author-email: hlop3z <23062270+hlop3z@users.noreply.github.com>
Requires-Python: >=3.10
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Provides-Extra: mongo
Provides-Extra: sql
Provides-Extra: sqlite
Provides-Extra: testing
Project-URL: Documentation, https://hlop3z.github.io/dbcontroller/
Project-URL: Homepage, https://github.com/hlop3z/dbcontroller
Description-Content-Type: text/markdown

# Welcome to **DataBase-Controller**

## Install **SQL**ite

```sh
python -m pip install "dbcontroller[sqlite]"
```

## Install Postgre**SQL**

```sh
python -m pip install "dbcontroller[sql]" "databases[postgresql]"
```

## Install My**SQL**

```sh
python -m pip install "dbcontroller[sql]" "databases[mysql]"
```

## Install **Mongo**

```sh
python -m pip install "dbcontroller[mongo]"
```

## Install **Testing**

```sh
python -m pip install "dbcontroller[testing]"
```

## To Be Used With . . .

- [sqlalchemy](https://pypi.org/project/SQLAlchemy/) and [databases](https://pypi.org/project/databases/)
- [pymongo](https://pypi.org/project/pymongo/) and [motor](https://pypi.org/project/motor/)

## Links

- ### [PyPi](https://pypi.org/project/dbcontroller)
- ### [Github](https://github.com/hlop3z/dbcontroller)
- ### [Read the Documents](https://hlop3z.github.io/dbcontroller/)

