.
1) __init__? , , , SQLAlchemy . , , , __init__, , , -:
def __init__(self, lalala, *args, **kwargs):
super(test, self).__init__(*args, **kwargs)
2) primary_key=True, . , : ?
, , :
class test(Base):
__tablename__ = 'test'
id = Column(Integer, primary_key=True)
id2 = Column(String, index=True, unique=True)
title = Column(String)