Metadata-Version: 2.1
Name: sqlite3w
Version: 1.0.5
Summary: Allows you to retrieve information about the system.
Home-page: https://github.com/romanin-rf/sqlite3worker.py
Author: ProgrammerFromParlament
Author-email: semina054@gmail.com
License: MIT
Keywords: sqlite3w
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE

# What is it?
Module with basic functionality to work with SQLite3.

# Installation
```cmd
pip install --upgrade https://github.com/romanin-rf/sqlite3worker.py/releases/download/v1.0.0.0-release/sqlite3worker-1.0.0.0_release-py3-none-any.whl
```

# Example
```python
import sqlite3worker

db = sqlite3worker.SQLite3Worker("main.sqlite3") # "FILEPATH" | ":memory:"

db.create_table(
    "users",
    {
        "id": (int, True), # "id": (int, True) -> "COLON_NAME": (PYTHON_TYPE, IS_PRIMARY_KEY)
        "nick": (str, False),
        "desc": (str, False),
        "birthday": (float, False)
    }
)

db.add_data(
    "users",
    [0, "Roman", "...", 1]
)
```


