__init__.py 476 B

123456789101112131415161718
  1. # connectors/__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. from ..engine.interfaces import Dialect
  8. class Connector(Dialect):
  9. """Base class for dialect mixins, for DBAPIs that work
  10. across entirely different database backends.
  11. Currently the only such mixin is pyodbc.
  12. """