Skip to content
 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SimpDB

SimpDB is a simple key value database that stores JSON data, written in Python.

Usage

Import Module

from simpdb import SimpDB

Initialize Database

myDatabase = SimpDB("./myDatabase.sdb")

Set Key Values

# Create Username and Password
myDatabase.set("username", "ElliottStorey")
myDatabase.set("password", 314159)

# Update Password
myDatabase.set("password", "Password123!")

Read Key Values

username = myDatabase.read("username")
print(username)

>> ElliottStorey

Delete Key Values

myDatabase.delete("username")
myDatabase.delete("password")

About

SimpDB is a simple python database that stores data in the JSON format.

Resources

Stars

1 star

Watchers

0 watching

Forks

Releases

Packages

Used by

Contributors

Languages