SQLAlchemywithを使用しようとしてSublimeText2いますが、次のシーケンスを実行します

それから私はそうし
ます

だから私のコードは
from sqlalchemy.ext.declarative import declarative_base
Base = declarative_base()
class Transaction(Base):
__tablename__ = 'transaction'
# id = Column('id', Integer, primary_key=True)
id = Column('id', Integer, primary_key=True)
def main():
print 'Hello World!'
if __name__ == '__main__':
main()
これをpythonビルドとしてビルドしようとすると、
line 10, in Transaction
id = Column('id', Integer, primary_key=True)
NameError: name 'Column' is not defined
[Finished in 0.2s with exit code 1]
これは、ファイル内のColumn,をインポートしないためです。Integer
どうすればこれを修正できますか?