Simple and lightweight document oriented database
Project description
LemonDB
LemonDB is a simple and lightweight document oriented database written in pure Python 3 tried on version: 3.9
& 3.8
. It should work on versions <= 3.7. This class handle all operation including storing document on a file.
Example:
from lemondb import LemonDB
db = LemonDB('test.db')
db.insert_many([{'name': 'Zenqi'}, {'name': 'John Doe'}, {'name': 'Elizabeth Doe'}])
# Search from database using `find` or `search`
for i in db.find('Doe').where(lambda x: x['name'].startswith('John')):
print(i)
#: {'name': 'John Doe'}
#: You can use the query or dict
from lemondb import Query
query = Query()
print(db.find_one(query.name == 'Zenqi')))
#: {'name': 'Zenqi'}
print(db.find_one({'name': 'Zenqi'}))
#: {'name': 'Zenqi'}
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
lemondb-1.0.0.tar.gz
(19.7 kB
view details)
File details
Details for the file lemondb-1.0.0.tar.gz
.
File metadata
- Download URL: lemondb-1.0.0.tar.gz
- Upload date:
- Size: 19.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f3284cbdea2000951f25992237b817c15f99623ae50368ad8c29e0fed6be547f |
|
MD5 | c14fb24dbd533f89dfda46684607d6ef |
|
BLAKE2b-256 | b245be7b35e460c2e970fa033e0adae6827d6811a69bf0f8bf41633a3b59098b |