Coverage for /home/martinb/.local/share/virtualenvs/camcops/lib/python3.6/site-packages/sqlalchemy/ext/declarative/__init__.py : 100%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1# ext/declarative/__init__.py
2# Copyright (C) 2005-2020 the SQLAlchemy authors and contributors
3# <see AUTHORS file>
4#
5# This module is part of SQLAlchemy and is released under
6# the MIT License: http://www.opensource.org/licenses/mit-license.php
8from .api import AbstractConcreteBase
9from .api import as_declarative
10from .api import comparable_using
11from .api import ConcreteBase
12from .api import declarative_base
13from .api import DeclarativeMeta
14from .api import declared_attr
15from .api import DeferredReflection
16from .api import has_inherited_table
17from .api import instrument_declarative
18from .api import synonym_for
21__all__ = [
22 "declarative_base",
23 "synonym_for",
24 "has_inherited_table",
25 "comparable_using",
26 "instrument_declarative",
27 "declared_attr",
28 "as_declarative",
29 "ConcreteBase",
30 "AbstractConcreteBase",
31 "DeclarativeMeta",
32 "DeferredReflection",
33]