1# databases/__init__.py
2# Copyright (C) 2005-2019 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
7
8"""Include imports from the sqlalchemy.dialects package for backwards
9compatibility with pre 0.6 versions.
10
11"""
12from ..dialects.firebird import base as firebird
13from ..dialects.mssql import base as mssql
14from ..dialects.mysql import base as mysql
15from ..dialects.oracle import base as oracle
16from ..dialects.postgresql import base as postgresql
17from ..dialects.sqlite import base as sqlite
18from ..dialects.sybase import base as sybase
19
20
21postgres = postgresql
22
23
24__all__ = (
25    "firebird",
26    "mssql",
27    "mysql",
28    "postgresql",
29    "sqlite",
30    "oracle",
31    "sybase",
32)
33