Skip to content

Easily manage SQLite3 databases in Python without any prior knowledge.

License

Notifications You must be signed in to change notification settings

MasonBarnes/EasyDB

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

EasyDB

Easily manage SQLite3 databases in Python without any prior knowledge.

Example for initializing database:

from easydb import *
db = EasyDB("students.db")
db.create_table("info", "name", "age", "grade")
data = DBTable(db, "info")
data.insert_values(name="Mark Baker", age=11, grade=5)
close_db(db)

Example for getting data from a database:

from easydb import *
db = EasyDB("students.db")
data = DBTable(db, "info")
age = DBKey(data, "name", "age")
print(age["Mark Baker"])
# Outputs 11

About

Easily manage SQLite3 databases in Python without any prior knowledge.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages