StashDB is a new lightweight Python library that allows you to use Json as a database but handles all the annoying and confusing aspects.
This package allows you to treat the json as a regular python dictionary and work wll it as you please without any roadblock.
To get started, run the command in your terminal:
pip install stashdb
After the package installs, create a main.py file (you can name the file whatever you want) and start writing code.
from stashdb import DB
db = DB("app") # you can name this whatever you want
To get the full documentation, check out the official GitHub repository of this project
Top comments (0)