Metadata-Version: 2.1
Name: sqlite_logger
Version: 0.0.1
Summary: Write logs to SQLite db file.
Home-page: https://github.com/ChenyangGao/web-mount-packs/tree/main/python-module/sqlite_logger
License: MIT
Keywords: sqlite,logger
Author: ChenyangGao
Author-email: wosiwujm@gmail.com
Requires-Python: >=3.12,<4.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Project-URL: Repository, https://github.com/ChenyangGao/web-mount-packs/tree/main/python-module/sqlite_logger
Description-Content-Type: text/markdown

# Write logs to SQLite db file.

## Installation

You can install via [pypi](https://pypi.org/project/sqlite_logger/)

```console
pip install -U sqlite_logger
```

## Usage

```python
from sqlite_logger import setup_logger

logger, handler = setup_logger()
```

