Skip to main content

Simple JSON document storage on disk

Project description

JsonDocStore

Simple JSON document storage on disk.

  • A Python library to organize and query JSON documents on disk, basically, with no running process.
  • You instantiate a JsonDocStore object with a root directory where your JSON documents will be stored. If you want to organize documents into different folders, use one JsonDocStore instance per folder. Each instance manages only the JSON files in its own directory. E.g. JsonDocStore("./data/users") and JsonDocStore("./data/products").
  • Each document is stored as a file named <key>.json. The document key is the filename stem.
  • If you want to query by a field, create an index on it. This will create an index.json file in the store directory. Currently, only exact match is supported. It is not required for basic operations like insert, update, delete, and get. The index is in-memory, not persisted to disk and is rebuilt when the store is opened.

Installation

pip install jsondocstore

API docs are available at:

https://mortensi.github.io/jsondocstore/

Using from the terminal

Start the interactive shell:

jsondocstore /path/to/store

The directory must already exist. The CLI does not create it for you.

Commands:

  • list prints document filenames only
  • listindexes prints indexed fields, or [] if there is no index.json
  • get KEY
  • queryby FIELD VALUE
  • createindex FIELD
  • deleteindex FIELD
  • insert KEY JSON_DOCUMENT valid keys may contain letters, digits, ., _, and -. No whitespace.
  • update KEY JSON_DOCUMENT
  • delete KEY
  • exit

Example session:

$ jsondocstore ./data
jsondocstore> insert user-1 '{"username": "alice", "password": "secret1", "role": "admin"}'
jsondocstore> insert user-2 '{"username": "bob", "password": "secret2", "role": "user"}'
jsondocstore> insert user-3 '{"username": "carol", "password": "secret3", "role": "user"}'
jsondocstore> update user-2 '{"username": "bob", "password": "secret2", "role": "admin"}'
jsondocstore> list
[
  "user-1.json",
  "user-2.json",
  "user-3.json"
]
jsondocstore> get user-1
{
  "password": "secret1",
  "role": "admin",
  "username": "alice"
}
jsondocstore> createindex role
jsondocstore> queryby role user
{
  "user-3": {
    "password": "secret3",
    "role": "user",
    "username": "carol"
  }
}

Using from your Python application

Learn the API by reading the API reference.

Example:

from jsondocstore import JsonDocStore

store = JsonDocStore("./data", create=True)
store.insert("user-1", {"username": "alice", "password": "secret1", "role": "admin"})
store.insert("user-2", {"username": "bob", "password": "secret2", "role": "user"})
store.insert("user-3", {"username": "carol", "password": "secret3", "role": "user"})
store.update("user-2", {"username": "bob", "password": "secret2", "role": "admin"})
names = store.list_all()
store.create_index("role")
admins = store.query_by("role", "admin")
doc = store.get("user-1")

Schema

The schema file index.json is optional and required only if you want to use indexes.

  • index_fields defines which fields are indexed in memory.
  • get(), insert(), delete(), and list_all() work without index.json.
  • query_by() only works when an index exists. It returns a mapping of key -> document. Querying without an index, or on a non-indexed field, raises an error.
  • Indexes work only on top-level document fields, not nested paths.

Example:

{
  "index_fields": ["email", "status"]
}

For example, this works:

{
  "email": "alice@example.com",
  "profile": {
    "city": "Rome"
  }
}
  • you can index email
  • you cannot index profile.city

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jsondocstore-0.2.1.tar.gz (8.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

jsondocstore-0.2.1-py3-none-any.whl (8.2 kB view details)

Uploaded Python 3

File details

Details for the file jsondocstore-0.2.1.tar.gz.

File metadata

  • Download URL: jsondocstore-0.2.1.tar.gz
  • Upload date:
  • Size: 8.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for jsondocstore-0.2.1.tar.gz
Algorithm Hash digest
SHA256 ae137d3d6bdeaa03ac52a2af4cc4c7032686165863d09bca39a47909fb0792b4
MD5 bd8dc7e545c74950e0d3be743b627998
BLAKE2b-256 725cd2b473a8a4bf3ad4a0e1f1f277331aa06013a3c1094def91600b660207cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for jsondocstore-0.2.1.tar.gz:

Publisher: publish.yml on mortensi/jsondocstore

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jsondocstore-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: jsondocstore-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 8.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for jsondocstore-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 7b6bcaccf5a9a242ed4c8a30af5835328e3f2828f345c6df0709884e6494c1b4
MD5 2965bdb7235d255f0432578f912bb273
BLAKE2b-256 e103490046105aa6336207d02e0d23e583609b4a21ce6e50b46c029da9abcc9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for jsondocstore-0.2.1-py3-none-any.whl:

Publisher: publish.yml on mortensi/jsondocstore

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page