-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path__init__.py
More file actions
74 lines (54 loc) · 2.18 KB
/
__init__.py
File metadata and controls
74 lines (54 loc) · 2.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# -*- coding: utf-8 -*-
from typing import TYPE_CHECKING, FrozenSet
from .error import * # noqa
if TYPE_CHECKING:
from .connection import Connection
__version__: str = "0.4.2"
# Globals https://www.python.org/dev/peps/pep-0249/#globals
apilevel: str = "2.0"
threadsafety: int = 3
paramstyle: str = "qmark"
class DBAPITypeObject(FrozenSet[str]):
"""Type Objects and Constructors
https://www.python.org/dev/peps/pep-0249/#type-objects-and-constructors
"""
def __eq__(self, other: object):
if isinstance(other, frozenset):
return frozenset.__eq__(self, other)
else:
return other in self
def __ne__(self, other: object):
if isinstance(other, frozenset):
return frozenset.__ne__(self, other)
else:
return other not in self
def __hash__(self):
return frozenset.__hash__(self)
def connect(*args, **kwargs) -> "Connection":
from .connection import Connection
return Connection(*args, **kwargs)
# Register superset execution strategy for mongodb+superset:// connections
def _register_superset_executor() -> None:
"""Register SupersetExecution strategy for superset mode.
This allows the executor and cursor to be unaware of superset -
the execution strategy is automatically selected based on the connection mode.
"""
try:
from .executor import ExecutionPlanFactory
from .superset_mongodb.executor import SupersetExecution
ExecutionPlanFactory.register_strategy(SupersetExecution())
except ImportError:
# Superset module not available - skip registration
pass
# Auto-register superset executor on module import
_register_superset_executor()
# SQLAlchemy integration (optional)
# For SQLAlchemy functionality, import from pymongosql.sqlalchemy_mongodb:
# from pymongosql.sqlalchemy_mongodb import create_engine_url, create_engine_from_mongodb_uri
try:
from .sqlalchemy_mongodb import __sqlalchemy_version__, __supports_sqlalchemy_2x__, __supports_sqlalchemy__
except ImportError:
# SQLAlchemy integration not available
__sqlalchemy_version__ = None
__supports_sqlalchemy__ = False
__supports_sqlalchemy_2x__ = False