13 lines
244 B
Python
13 lines
244 B
Python
import sqlite3
|
|
|
|
|
|
class User:
|
|
def __init__(self, email: str, password_hash: str):
|
|
self.email = email
|
|
self.is_authenticated
|
|
|
|
|
|
if __name__ == "__main__":
|
|
connection = sqlite3.connect("users.db")
|
|
c = connection.cursor()
|