This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from sqlalchemy import create_engine | |
from sqlalchemy.orm import sessionmaker | |
from sqlalchemy.ext.declarative import declarative_base | |
engine = create_engine('sqlite://', echo=False) | |
session = sessionmaker(engine)() | |
Base = declarative_base() | |
"""An undirected graph example Modified from SQLAlchemy directed | |
graph example.""" |