Skip to content

Instantly share code, notes, and snippets.

View vladimir-puzic's full-sized avatar

Vladimir Puzic vladimir-puzic

View GitHub Profile
import sqlite3
from people import create_employee, create_customer
from transactions import create_transaction
from datetime import date, datetime
from random import choice, randint
class DatabaseSession:
def __init__(self, db_name: str):
self._db_name = db_name
self.connection = None