This file contains hidden or 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
In [1]: from sqlalchemy import create_engine | |
In [2]: postgresql_engine = create_engine('postgresql://') | |
In [3]: mysql_engine = create_engine('mysql://') | |
In [4]: from myapp.resources import Event | |
In [5]: from sqlalchemy.schema import CreateTable |