engine.py 495 B

123456789101112131415
  1. # future/engine.py
  2. # Copyright (C) 2005-2025 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: https://www.opensource.org/licenses/mit-license.php
  7. """2.0 API features.
  8. this module is legacy as 2.0 APIs are now standard.
  9. """
  10. from ..engine import Connection as Connection # noqa: F401
  11. from ..engine import create_engine as create_engine # noqa: F401
  12. from ..engine import Engine as Engine # noqa: F401