Simple python logger
Project description
JSON DB
Simple python local database
Quick start:
from jsondb import Manager
manager = Manager("database.test")
data = manager.get()
if "nick" not in data:
data["nick"] = input("Enter your nickname: ")
manager.save()
nick = data["nick"]
print("Hello, %s" % nick)
>>> Enter your nickname: ZoomDeveloper
Hello, ZoomDeveloper
Hello, ZoomDeveloper
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
jsondbpy-1.0.tar.gz
(3.5 kB
view hashes)
Built Distribution
jsondbpy-1.0-py3-none-any.whl
(3.9 kB
view hashes)