Skip to content

Instantly share code, notes, and snippets.

@jordic
Last active October 18, 2018 09:39
Show Gist options
  • Select an option

  • Save jordic/0f6a889236e09465a7a425abd8cc244c to your computer and use it in GitHub Desktop.

Select an option

Save jordic/0f6a889236e09465a7a425abd8cc244c to your computer and use it in GitHub Desktop.
snippets sqlalchemy
""" Some snippets I'm collecting throught sqlalchemy docs """
class User(Base):
__tablename__ = 'user'
id = Column(Integer, primary_key=True)
def _get_addresses(self):
return object_session(self).query(Address).with_parent(self).filter(...).all()
addresses = property(_get_addresses)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment