8 lines
159 B
Python
8 lines
159 B
Python
|
import os
|
||
|
from sqlalchemy import create_engine
|
||
|
from sqlalchemy.orm import declarative_base
|
||
|
from sqlalchemy.orm import sessionmaker
|
||
|
|
||
|
|
||
|
Base = declarative_base()
|