File System Database - A simple file-based database library
Project description
FSTDB - File System Database
A simple file-based database library for Python.
Installation
pip install fstdb
Usage
from fstdb import FSTDB
# Initialize database
db = FSTDB("my_database")
# Set a value
db.set("user:1", {"name": "John", "age": 30})
# Get a value
user = db.get("user:1")
print(user) # {'name': 'John', 'age': 30}
# Check if key exists
if db.exists("user:1"):
print("User exists!")
# Get all keys
all_keys = db.keys()
# Delete a key
db.delete("user:1")
# Clear all data
db.clear()
Features
- Simple key-value storage
- JSON-based storage
- Thread-safe file operations
- Easy to use API
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
fstdb-0.1.4.tar.gz
(15.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
fstdb-0.1.4-py3-none-any.whl
(17.7 kB
view details)
File details
Details for the file fstdb-0.1.4.tar.gz.
File metadata
- Download URL: fstdb-0.1.4.tar.gz
- Upload date:
- Size: 15.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.8.20
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
38a3292adb8cf81cb56920f1184028898dcec207ff1d1fdc2c28684b8aeb1547
|
|
| MD5 |
4fe85b02c1fc3139cc506160e2fe94e6
|
|
| BLAKE2b-256 |
6a5a8f42f6da51a3722baa9df339cc6cc11afb5b7094a96ad5f6447d86b7d0a6
|
File details
Details for the file fstdb-0.1.4-py3-none-any.whl.
File metadata
- Download URL: fstdb-0.1.4-py3-none-any.whl
- Upload date:
- Size: 17.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.8.20
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe26b90d8cc6e6ac5d429ca17cd5073a32e589fe2952b43586cddbf6e63d90c3
|
|
| MD5 |
8d2534b782c33a77d576ed73eae07ea0
|
|
| BLAKE2b-256 |
0b6ec6687c7ec2a3cf5a2a2de8f300485a5cc7680e29917fee5e60e1fd3cdde1
|