Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/erans/pgsqlite
/ User
Class
User
tests/python/test_sqlalchemy_minimal.py:13–18 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
11
Base = declarative_base()
12
13
class
User(Base):
14
__tablename__ =
'users'
15
16
id = Column(Integer, primary_key=True)
17
username = Column(String(50))
18
email = Column(String(100))
19
20
def
main():
21
# Create test database
Callers
1
main
Function · 0.70
Calls
no outgoing calls
Tested by
1
main
Function · 0.56