Using SQLAlchemy on App Engine development server
问题 I have seen some questions about using SQLAlchemy on App Engine to connect to Google Cloud SQL. But I'm not sure if it is possible to develop using a local MySQL database and the existing SQLAlchemy dialect. On my first attempt, I added SQLAlchemy 0.8.0 to the app and defined a schema: from sqlalchemy import create_engine, Column, Integer, Table from sqlalchemy.ext.declarative import declarative_base Base = declarative_base() foo_table = Table('foo', Base.metadata, Column('id', Integer,