Metadata-Version: 2.2
Name: sl3aio
Version: 1.3.0rc1
Summary: A simple and efficient Python library for asynchronous use of SQLite3 with a set of useful tools and interfaces.
Author-email: Nedelis <dimoshunya@gmail.com>
Maintainer-email: Nedelis <dimoshunya@gmail.com>
License: BSD 3-Clause License
        
        Copyright (c) 2024, Nedelis
        
        Redistribution and use in source and binary forms, with or without
        modification, are permitted provided that the following conditions are met:
        
        1. Redistributions of source code must retain the above copyright notice, this
           list of conditions and the following disclaimer.
        
        2. Redistributions in binary form must reproduce the above copyright notice,
           this list of conditions and the following disclaimer in the documentation
           and/or other materials provided with the distribution.
        
        3. Neither the name of the copyright holder nor the names of its
           contributors may be used to endorse or promote products derived from
           this software without specific prior written permission.
        
        THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
        AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
        IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
        DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
        FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
        DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
        SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
        CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
        OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
        OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
        
Project-URL: Homepage, https://github.com/Nedelis/sl3aio
Project-URL: Documentation, https://sl3aio.readthedocs.io
Project-URL: Source, https://github.com/Nedelis/sl3aio/master/src/sl3aio
Project-URL: Repository, https://github.com/Nedelis/sl3aio
Project-URL: Bug Reports, https://github.com/Nedelis/sl3aio/issues
Keywords: database,development,sqlite,sl3,async
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Database
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE

# sl3aio

[![License](https://img.shields.io/github/license/Nedelis/sl3aio?style=for-the-badge)](https://github.com/Nedelis/sl3aio/blob/master/LICENSE)
[![Commit activity](https://img.shields.io/github/commit-activity/m/Nedelis/sl3aio/master?style=for-the-badge&logo=github&label=Commit%20activity)](https://github.com/Nedelis/sl3aio/pulse)
[![PyPi](https://img.shields.io/pypi/v/sl3aio?style=for-the-badge&logo=pypi)](https://pypi.python.org/pypi/sl3aio)
[![Python versions](https://img.shields.io/pypi/pyversions/sl3aio?style=for-the-badge&logo=python)](https://pypi.python.org/pypi/sl3aio)

sl3aio is a simple python library that adds asynchronous support and useful tools for the sqlite3.

## Documentation
Check out the [sl3aio documentation](https://sl3aio.readthedocs.io) and get started with it.

## Features
- Safe asynchronous access to any sqlite3 database
- Convinient interface that replaces sqlite3 boiler-plate code
- Wide range of simple built-in tools

## Installation
You can simply install sl3aio from pip:

```shell
pip install sl3aio
```

Other installation methods and usage examples can be found in the documentation.

## Notes
Before working with the library, it is advisable to learn the basics of working with [asyncio](https://docs.python.org/3/library/asyncio.html). You can also view the [sqlite3 library](https://docs.python.org/3/library/sqlite3.html) which is the core of the sl3aio.
