first commit
This commit is contained in:
8
database.py
Normal file
8
database.py
Normal file
@ -0,0 +1,8 @@
|
||||
import sqlite3
|
||||
|
||||
con = sqlite3.connect("data.db")
|
||||
|
||||
cur = con.cursor()
|
||||
|
||||
cur.execute('CREATE TABLE IF NOT EXISTS data_table (key, value)')
|
||||
|
||||
Reference in New Issue
Block a user