Загрузить файлы в «venv/Lib/site-packages/sqlalchemy/connectors»

This commit is contained in:
2026-07-02 20:18:48 +00:00
parent 292c2ef960
commit 5aac904518
4 changed files with 890 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
# connectors/__init__.py
# Copyright (C) 2005-2026 the SQLAlchemy authors and contributors
# <see AUTHORS file>
#
# This module is part of SQLAlchemy and is released under
# the MIT License: https://www.opensource.org/licenses/mit-license.php
from ..engine.interfaces import Dialect
class Connector(Dialect):
"""Base class for dialect mixins, for DBAPIs that work
across entirely different database backends.
Currently the only such mixin is pyodbc.
"""