A simple persistent JSON database for Python
Project description
JawaDB
A simple persistent JSON database for Python that acts like a regular dictionary or list.
Installation
pip install jawadb
Usage
import jawadb
# Use as dictionary
db = jawadb.load("mydata.json")
db["key"] = "value"
db["nested"] = {"foo": "bar"}
# File is automatically saved when db is garbage collected
# Use as list
db = jawadb.load("mylist.json")
db += ["item1", "item2"]
db.append("item3")
# File is automatically saved
Features
- Automatic persistence to JSON file
- Use as either dictionary or list (type is determined by first operation)
- Handles nested structures
- Atomic file writes
- Saves on program exit, Ctrl-C, and garbage collection
- Type hints included
License
MIT License
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
jawadb-0.1.2.tar.gz
(3.8 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 jawadb-0.1.2.tar.gz.
File metadata
- Download URL: jawadb-0.1.2.tar.gz
- Upload date:
- Size: 3.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
438b279ef34248037028b6c26da8d847a35eb8802e04d68cbd677c5e60844e72
|
|
| MD5 |
d1a86ace7a493ffea2fea17f413f61e7
|
|
| BLAKE2b-256 |
344aa99c0ebb326851224a3ed3fe233233c3dbffc0c0723ce6f39bef37301ca5
|
File details
Details for the file jawadb-0.1.2-py3-none-any.whl.
File metadata
- Download URL: jawadb-0.1.2-py3-none-any.whl
- Upload date:
- Size: 4.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.13.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
05b35422841cebfe7ae830063fd2e9bb6845a0f22a11585cd5f4367ef04f94b3
|
|
| MD5 |
49a0aa915a338341a2e33e3701777203
|
|
| BLAKE2b-256 |
3954d5e130fb65694b02416658b5bacea15d3f8016db256dd8ebaa309d63342d
|