Skip to content

Instantly share code, notes, and snippets.

import sqlite3
class SQL():
def __init__(self) -> None:
conn = sqlite3.connect('data.db')
cur = conn.cursor()
cur.execute("""CREATE TABLE IF NOT EXISTS students(
discord_id INT,
name TEXT,