Skip to content

Please never use this in production. I beg you, don't.

License

Notifications You must be signed in to change notification settings

vcokltfre/ohnodb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ohnodb

Please never use this in production. I beg you, don't.

pip install ohnodb

Usage:

from ohnodb import OhNoDB

db = OhNoDB("./data")

my_data = {
    "hello":"world"
}

db.create("my_table", "my_item", my_data, is_json=True)

print(db.fetch("my_table", "my_item", is_json=True))  # >>> {"hello": "world"}

db.update("my_table", "my_item", {}, is_json=True)

print(db.fetch("my_table", "my_item", is_json=True))  # >>> {}

About

Please never use this in production. I beg you, don't.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

 

Packages

No packages published

Languages