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.3.tar.gz
(5.4 kB
view hashes)
Built Distribution
Close
Hashes for jsonabledb-0.0.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1d6a425410ce23754a4401303b6a8db893679fb262e6816f775d779a6476a437 |
|
MD5 | 424d1c5825f56b2e0811c688cfe449ad |
|
BLAKE2b-256 | ea931897983d6315c41d470785368c36892cc8714b58fffae32caba8767dc6e0 |