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.
34 lines
902 B
34 lines
902 B
# ext/declarative/__init__.py
|
|
# Copyright (C) 2005-2020 the SQLAlchemy authors and contributors
|
|
# <see AUTHORS file>
|
|
#
|
|
# This module is part of SQLAlchemy and is released under
|
|
# the MIT License: http://www.opensource.org/licenses/mit-license.php
|
|
|
|
from .api import AbstractConcreteBase
|
|
from .api import as_declarative
|
|
from .api import comparable_using
|
|
from .api import ConcreteBase
|
|
from .api import declarative_base
|
|
from .api import DeclarativeMeta
|
|
from .api import declared_attr
|
|
from .api import DeferredReflection
|
|
from .api import has_inherited_table
|
|
from .api import instrument_declarative
|
|
from .api import synonym_for
|
|
|
|
|
|
__all__ = [
|
|
"declarative_base",
|
|
"synonym_for",
|
|
"has_inherited_table",
|
|
"comparable_using",
|
|
"instrument_declarative",
|
|
"declared_attr",
|
|
"as_declarative",
|
|
"ConcreteBase",
|
|
"AbstractConcreteBase",
|
|
"DeclarativeMeta",
|
|
"DeferredReflection",
|
|
]
|