You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

jsonabledb

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jsonabledb

A lightweight document-oriented database based on JSON

0.0.3
PyPI
Maintainers
1

jsonableDB

GitHub PyPI

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

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts