Metadata-Version: 2.1
Name: aiodatabase
Version: 1.0.0
Summary: AioDatabase is a simple database abstraction layer for SQLite and MySQL.
Home-page: https://github.com/Amitminer/AioDatabase
Author: AmitxD
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: PyYAML
Requires-Dist: aiomysql
Requires-Dist: aiosqlite


# AioDatabase

AioDatabase is a simple database abstraction layer for SQLite and MySQL.

## Features

- Supports both SQLite and MySQL databases.
- Provides a convenient interface for executing SQL queries.
- Easy to set up and use.

## Installation

You can install AioDatabase using pip:

```bash
pip install aiodatabase
```

## Configuration

AioDatabase requires a configuration file (`config.yml`) and an SQL queries file (`queries.sql`) to connect to the database and execute queries. Sample configurations are provided in the repository.

## Example Usage

For a practical example of how to use AioDatabase, check out the [AioDatabase-Example](https://github.com/Amitminer/AioDatabase-Example/) repository. It contains sample code demonstrating how to integrate and use AioDatabase in a project.

## Contributing

Contributions are welcome! If you encounter any issues or have suggestions for improvements, please feel free to open an issue or submit a pull request.

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
```
