A simple NoSQL-like interface for SQLite
Project description
Odeta
A simple NoSQL-like interface for SQLite.
Installation
pip install odeta
Usages
Importing the Library
from odeta import odeta
Initializing the Database
db = odeta("my_database.db")
users = db.table("users")
Fetching Data
Fetch all records from the table:
print(users.fetch())
Fetch records that match a specific query:
print(users.fetch({"name": "Bob Johnson"}))
Inserting Data
Insert a new record into the table:
new_user_id = users.put({"name": "Alice Smith", "age": 30})
print(new_user_id)
Updating Data
Update an existing record in the table:
users.update({"name": "Alice Johnson", "age": 31}, new_user_id)
Deleting Data
Delete a record from the table:
users.delete(new_user_id)
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
odeta-0.1.13.tar.gz
(3.6 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file odeta-0.1.13.tar.gz.
File metadata
- Download URL: odeta-0.1.13.tar.gz
- Upload date:
- Size: 3.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c45e1538ad3b95fbde66e799d6c08a95c936e1c294119590b5d545157892abf2
|
|
| MD5 |
9c225ba7ddf2f95c457dd1a705ecf45b
|
|
| BLAKE2b-256 |
83615556915b09f303a4f87419fcf1262930d5d503d6d21cbc8fbcf33a6ee32e
|
File details
Details for the file odeta-0.1.13-py3-none-any.whl.
File metadata
- Download URL: odeta-0.1.13-py3-none-any.whl
- Upload date:
- Size: 3.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
28ee805c604f7e57e2e18dcbdcd752e92657be0b02fbe5d0b47160ab9ed469a0
|
|
| MD5 |
2ff47ae3408aa952d88a039bff739391
|
|
| BLAKE2b-256 |
87208d3c4295a4cbcd9c100cf352655c69dde27c9451866661820a7fa397ecae
|