Skip to content

Instantly share code, notes, and snippets.

View artofhuman's full-sized avatar
💭
I use vim, btw

Semyon Pupkov artofhuman

💭
I use vim, btw
View GitHub Profile
import os
def create_db_engine(db_url, **kwargs):
return create_engine(
url=db_url, future=True, **kwargs
)
from sqlalchemy import create_engine
from sqlalchemy.orm import scoped_session, sessionmaker