Allows you to retrieve information about the system.
Project description
What is it?
Module with basic functionality to work with SQLite3.
Installation
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
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]
)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
sqlite3w-1.0.6.tar.gz
(4.7 kB
view details)
Built Distribution
File details
Details for the file sqlite3w-1.0.6.tar.gz
.
File metadata
- Download URL: sqlite3w-1.0.6.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 802a81381e999987b7b1098921368438272c9f6f719d70c801cb113c79de66d2 |
|
MD5 | f8da10c1be9521bbbcacf337a2e48b56 |
|
BLAKE2b-256 | 9bc4b45a55b720b44e9a477cf41aadaa5c023544d270782b502de0d4f9674acc |
File details
Details for the file sqlite3w-1.0.6-py3-none-any.whl
.
File metadata
- Download URL: sqlite3w-1.0.6-py3-none-any.whl
- Upload date:
- Size: 5.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4fbe709e839444ffc1b3680617102a9087ff8571d3363a34aab1b83f8302a032 |
|
MD5 | 6244834df0bf284596fbef1e42af19b5 |
|
BLAKE2b-256 | 3e6276604299723031dd97590ad1ba44ee53796bf9b162ed49f5764cefbf66ef |