A lightweight document-oriented database based on JSON
Project description
jsonableDB
jsonableDB is a lightweight document-oriented database based on JSON.
Installation
pip install jsonabledb
Quickstart
Get your documents prepared
documents = [
{...},
{...},
...
]
Jsonify your documents as a JSON file using jsonableDB
from jsonable import jsonify
jsonify(documents, "collection_name", "database_name")
Retrieve all your documents in the jsonableDB
import jsonable
client = jsonable.Client()
collection = client["database_name"]["collection_name"]
collection.find()
License
jsonableDB has a BSD-3-Clause license, as found in the LICENSE file.
Contributing
Thanks for your interest in contributing to jsonableDB! Please feel free to create a pull request.
Changelog
jsonableDB 0.0.2
- Support to jsonify documents as a JSON file
jsonableDB 0.0.1
- First release
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
jsonabledb-0.0.2.tar.gz
(5.4 kB
view hashes)
Built Distribution
Close
Hashes for jsonabledb-0.0.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c63ceb744bc62208106afdaeda1deac55d032e821afe19e73a37b7cc6b845d74 |
|
MD5 | 51f7c2ed7dffbb62f762bcda731ef535 |
|
BLAKE2b-256 | 4b6383df9242e4a84593cb7f6bd396a8ab18e756af406d782552853bab778ea3 |