StashDB: The best json database package for Python

David - Aug 10 - - Dev Community

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
Enter fullscreen mode Exit fullscreen mode

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
Enter fullscreen mode Exit fullscreen mode

To get the full documentation, check out the official GitHub repository of this project

.
Terabox Video Player