MCPcopy
hub / github.com/pyodide/pyodide / User

Class User

src/tests/test_database_driver.py:242–248  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

240 pass
241
242 class User(Base):
243 __tablename__ = "sa_users"
244 id: Mapped[int] = mapped_column(primary_key=True, autoincrement=True)
245 name: Mapped[str] = mapped_column(String(100))
246 addresses: Mapped[list["Address"]] = relationship(
247 back_populates="user", cascade="all, delete-orphan"
248 )
249
250 class Address(Base):
251 __tablename__ = "sa_addresses"

Callers 1

runFunction · 0.85

Calls

no outgoing calls

Tested by 1

runFunction · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…