I have the following defined table in Python sqlalchemy:
class entry(Base):
    summary = Column(String(10000))
    content = Column(String(10000))
    description = Column(String(10000))
And I basically want to do the following:
a = entry()
for col in ['summary', 'content', 'description']:
    a[col] = get_value(col)
But I got the following error:
TypeError: 'entry' object has no attribute '__getitem__'
So I guess I cannot treat a as a dict. Looking through sqlalchemy document, I didn't figure out a way to set the value of a Column when using a variable to identify the Column. Could anyone point me to the right direction? Thank you for the help!

