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.2.tar.gz
(19.7 kB
view details)
File details
Details for the file lemondb-1.0.2.tar.gz
.
File metadata
- Download URL: lemondb-1.0.2.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.1 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 | 7443cf655847fcc0a8e39c3b417b0ec84f5525c1fcfd4b1efcc39f603741c656 |
|
MD5 | 834a15f4b133c9d64fa32bff2233decd |
|
BLAKE2b-256 | 094e6c1623241b26731fcf1c978f7aa062be91d2cc987967ccabe36fa8c7da15 |