Metadata-Version: 2.1
Name: aio-databases
Version: 0.0.8
Summary: Async Support for various databases
Home-page: https://github.com/klen/aio-databases
Author: Kirill Klenov
Author-email: horneds@gmail.com
License: MIT
Project-URL: Documentation, https://github.com/klen/aio-databases
Project-URL: Source code, https://github.com/klen/aio-databases
Project-URL: Issue tracker, https://github.com/klen/aio-databases/issues
Description: # AIO-Databases
        
        The package gives you asycio support for a range of databases (SQLite,
        PostgreSQL, MySQL).
        
        [![Tests Status](https://github.com/klen/aio-databases/workflows/tests/badge.svg)](https://github.com/klen/aio-databases/actions)
        [![PYPI Version](https://img.shields.io/pypi/v/aio-databases)](https://pypi.org/project/aio-databases/)
        [![Python Versions](https://img.shields.io/pypi/pyversions/aio-databases)](https://pypi.org/project/aio-databases/)
        
        
        ## Requirements
        
        * python >= 3.7
        
        ## Installation
        
        **aio-databases** should be installed using pip:
        
        ```shell
        $ pip install aio-databases
        ```
        
        You can install the required database drivers with:
        
        ```shell
        $ pip install aio-databases[sqlite]
        $ pip install aio-databases[postgresql]
        $ pip install aio-databases[mysql]
        ```
        
        
        ## Usage
        
        ## Bug tracker
        
        If you have any suggestions, bug reports or annoyances please report them to
        the issue tracker at https://github.com/klen/aio-databases/issues
        
        
        ## Contributing
        
        Development of the project happens at: https://github.com/klen/aio-databases
        
        
        ## License
        
        Licensed under a [MIT License](http://opensource.org/licenses/MIT)
        
Keywords: asyncio,databases,mysql,sqlite,postgres,postgresql
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Framework :: AsyncIO
Classifier: Framework :: Trio
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: postgresql
Provides-Extra: mysql
Provides-Extra: sqlite
Provides-Extra: tests
