Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/sqlalchemy/sqlalchemy
/ B
Class
B
examples/asyncio/async_orm_writeonly.py:43–47 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
41
42
43
class
B(Base):
44
__tablename__ =
"b"
45
id: Mapped[int] = mapped_column(primary_key=True)
46
a_id: Mapped[int] = mapped_column(ForeignKey(
"a.id"
))
47
data: Mapped[Optional[str]]
48
49
50
async
def
async_main():
Callers
1
async_main
Function · 0.70
Calls
2
mapped_column
Function · 0.90
ForeignKey
Class · 0.90
Tested by
no test coverage detected