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