MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / Keyword

Class Keyword

test/ext/test_associationproxy.py:4019–4025  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4017 self.keyword = keyword
4018
4019 class Keyword(ComparableMixin, decl_base):
4020 __tablename__ = "keyword"
4021 id: Mapped[int] = mapped_column(primary_key=True)
4022 keyword: Mapped[str] = mapped_column()
4023
4024 def __init__(self, keyword):
4025 self.keyword = keyword
4026
4027 return UserKeywordAssociation, Keyword
4028

Callers 3

insert_dataMethod · 0.70
test_dc_decl_usageMethod · 0.70

Calls 1

mapped_columnFunction · 0.90

Tested by 3

insert_dataMethod · 0.56
test_dc_decl_usageMethod · 0.56