This commit is contained in:
2022-11-28 19:10:35 +10:00
parent 75e6071993
commit e729647f65
5 changed files with 20 additions and 19 deletions

View File

@@ -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()