__init__.py 512 B

12345678910111213141516
  1. # future/__init__.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
  11. from .engine import create_engine as create_engine
  12. from .engine import Engine as Engine
  13. from ..sql._selectable_constructors import select as select