Simple key-value database for my small projects!
Project description
nonbloat-db
Simple key-value database for my small projects!
The idea is to have a dead simple database, which doesn't require spinning up a
server (like Redis), is not underwhelming with features (like SQLite or SQL in
general), data inside can be easily manually reviewed and modified and it
doesn't corrupt (if you just dump JSON into file using json.dump
, if the
program was forced to stop during write (e.g. because of power outage),
the data will be corrupted).
The purpose of this project is to serve as a database library for my small projects. So obviously this solution doesn't scale to thousands of users, and it was never intended to. Use right tool for right job.
Also, do note, that everything is async. There is no synchronous version, because all of my projects are generally async. I maybe will add a synchronous wrapper, but I don't promise.
How does it work?
It is just a really simple key-value storage:
import asyncio
from nbdb.storage import Storage
async def main():
# you need to provide a path to database
my_db = await Storage.init("data/db.json")
await my_db.set("abc", 123)
value = await my_db.get("abc")
print(value) # 123
await my_db.write()
if __name__ == "__main__":
asyncio.run(main())
[!NOTE] Everything in this library is asynchronous, so you have to call it from async functions.
In the background, a lot of things are happening. For example, when you call
.set
, the db writes the operation to special AOF (Append Only File; this is
what Redis uses
to achieve data persistence).
And on every write, library renames db.json
to db.json.temp
and then writes
to db.json
new data. This is done to not corrupt data in case of power outage
or force shutdown. If library during initial read finds a .temp
file next to
database, it will output a warning and read from temp file.
Installing
It is not yet published to PyPI, so good luck.
pip install nonbloat-db
Installing for local developing
git clone https://github.com/PerchunPak/nonbloat-db.git
cd nonbloat-db
Installing poetry
Next we need install poetry
with recommended way.
If you use Linux, use command:
curl -sSL https://install.python-poetry.org | python -
If you use Windows, open PowerShell with admin privileges and use:
(Invoke-WebRequest -Uri https://install.python-poetry.org -UseBasicParsing).Content | python -
Installing dependencies
poetry install
If something is not clear
You can always write me!
Thanks
This project was generated with python-template.
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
Built Distribution
File details
Details for the file nonbloat_db-0.1.0.tar.gz
.
File metadata
- Download URL: nonbloat_db-0.1.0.tar.gz
- Upload date:
- Size: 16.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a9bcb79750ce204fff489ee89bc5d2667533dcc2142d7c05ced8e8a4f28d30bb |
|
MD5 | e96221f4c4b78f26214817eedb697331 |
|
BLAKE2b-256 | 1953a451ae888e6bbe89283d548bc86c65fa19c7655fcae40fd1e6fc7dc10a66 |
File details
Details for the file nonbloat_db-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: nonbloat_db-0.1.0-py3-none-any.whl
- Upload date:
- Size: 16.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d59f68002bf35b533f7c17467ccd7501b84787093eaeaf0f7ef043ad8fa6fd3c |
|
MD5 | b392e6297eda0f1997d0bf7477fd6f23 |
|
BLAKE2b-256 | d4bb8031f35d3e11d2f457648f4779493975a0392fe62e6cff77a22b4db5a673 |