A helper script for easily handling JSON files as a local database. Provides a simple class to load, manipulate, and save data persisted in a JSON file. Intended for small-scale local storage needs. Version 1.0, no active development observed.
pip install localdb-jsonVerified import paths — ran on the pinned version, not inferred.
Basic usage: create a JSONDatabase instance, assign data, call save().
Use underscore in import: from localdb_json import JSONDatabase
Always call db.save() after making changes to write to disk.
Use only in single-threaded, single-process scenarios, or implement your own locking mechanism.
No dependency data recorded yet.