Sadness
This commit is contained in:
13
Ledger.py
13
Ledger.py
@@ -1,4 +1,4 @@
|
||||
import pickle
|
||||
import sqlite3
|
||||
|
||||
class Ledger():
|
||||
def __init__(self) -> None:
|
||||
@@ -27,3 +27,14 @@ class Ledger():
|
||||
|
||||
def updateLedger(self, data, newData):
|
||||
return data
|
||||
|
||||
def main():
|
||||
conn = sqlite3.connect("ledger.db")
|
||||
cur = conn.cursor()
|
||||
table = """ CREATE TABLE IF NOT EXISTS
|
||||
|
||||
"""
|
||||
cur.execute(table)
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
Reference in New Issue
Block a user