6 lines
82 B
Python
6 lines
82 B
Python
import sqlite3
|
|
|
|
DB_CON = sqlite3.connect("database.db")
|
|
DB_CUR = DB_CON.cursor()
|
|
|