Skip to content

Instantly share code, notes, and snippets.

View enchance's full-sized avatar
💭
I may be slow to respond.

Jim enchance

💭
I may be slow to respond.
View GitHub Profile
@enchance
enchance / tortoise-orm-queries-reference.py
Last active July 25, 2021 14:27
Example queries using Tortoise ORM
# Sample Tortoise ORM queries using FKs, M2Ms, and manually traversing M2Ms (because fuck the system that's why)
# ic() is from the icecream package https://github.com/gruns/icecream
# FK Relationships
query = Equity.get(ticker='COL')
"""
PATTERN 1 (Recommended): ForeignKeyField
USES:
- You only want to get the data and not edit in any way