You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- from typing import Any
- from sqlalchemy.ext.declarative import declared_attr
- from sqlalchemy.orm import as_declarative
-
-
- @as_declarative()
- class Base:
- id: Any
- __name__: str
- def __tablename__(cls) -> str:
- return cls.__name__.lower()
|