Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ResolveWang/ec5b9c1b0ca1a6b55f315475c176946f to your computer and use it in GitHub Desktop.
Save ResolveWang/ec5b9c1b0ca1a6b55f315475c176946f to your computer and use it in GitHub Desktop.
def to_dict(ins):
table_columns = ins.__table__.c
l = [column.key for column in table_columns]
d = {}
for k, v in ins.__dict__.items():
if k in l:
d[k] = str(v) if v is not None else ''
return d
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment