Skip to content

Instantly share code, notes, and snippets.

@yuriwoof
Created December 31, 2016 02:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yuriwoof/2905fa6c7246ac8568214a52255c109d to your computer and use it in GitHub Desktop.
Save yuriwoof/2905fa6c7246ac8568214a52255c109d to your computer and use it in GitHub Desktop.
petshop/db.py
from sqlalchemy import create_engine
from sqlalchemy.orm import scoped_session, sessionmaker
from sqlalchemy.ext.declarative import declarative_base
engine = create_engine('sqlite:///petstore.db', convert_unicode=True)
db_session = scoped_session(sessionmaker(autocommit=False,
autoflush=False,
bind=engine))
Base = declarative_base()
Base.query = db_session.query_property()
def init_db():
"""モデルからテーブルを作成
"""
import models
Base.metadata.create_all(bind=engine)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment