datasourcelib 0.1.1__py3-none-any.whl → 0.1.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- datasourcelib/core/__init__.py +10 -4
- datasourcelib/indexes/__init__.py +1 -1
- {datasourcelib-0.1.1.dist-info → datasourcelib-0.1.2.dist-info}/METADATA +1 -1
- {datasourcelib-0.1.1.dist-info → datasourcelib-0.1.2.dist-info}/RECORD +7 -7
- {datasourcelib-0.1.1.dist-info → datasourcelib-0.1.2.dist-info}/WHEEL +0 -0
- {datasourcelib-0.1.1.dist-info → datasourcelib-0.1.2.dist-info}/licenses/LICENSE +0 -0
- {datasourcelib-0.1.1.dist-info → datasourcelib-0.1.2.dist-info}/top_level.txt +0 -0
datasourcelib/core/__init__.py
CHANGED
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
from .sync_base import SyncBase
|
|
2
|
-
from .
|
|
3
|
-
from .sync_types import SyncType
|
|
4
|
-
from .sync_types import SyncStatus
|
|
2
|
+
from . import sync_types
|
|
3
|
+
from .sync_types import SyncType, SyncStatus
|
|
5
4
|
|
|
6
5
|
__all__ = [
|
|
7
6
|
"SyncBase",
|
|
8
7
|
"SyncManager",
|
|
9
8
|
"SyncType",
|
|
10
9
|
"SyncStatus"
|
|
11
|
-
]
|
|
10
|
+
]
|
|
11
|
+
|
|
12
|
+
# Lazy-load SyncManager to avoid potential circular imports
|
|
13
|
+
def __getattr__(name):
|
|
14
|
+
if name == "SyncManager":
|
|
15
|
+
from .sync_manager import SyncManager
|
|
16
|
+
return SyncManager
|
|
17
|
+
raise AttributeError(f"module {__name__!r} has no attribute {name!r}")
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
datasourcelib/__init__.py,sha256=I7JTSZ1J6ULg_TfdMEgFcd1regkCHuyKdZT4DcPtoyQ,78
|
|
2
|
-
datasourcelib/core/__init__.py,sha256=
|
|
2
|
+
datasourcelib/core/__init__.py,sha256=nsXojDd97T7eMqqtCsZr1qSYLBitvKydSZRb9Dg7hqU,462
|
|
3
3
|
datasourcelib/core/sync_base.py,sha256=AfwwaV3rJOFKVmKKpSj-BwznnCDCaeuT4LLNDfA3NAY,716
|
|
4
4
|
datasourcelib/core/sync_manager.py,sha256=lj070S3PwSNcB0UL_ZDzDAm6uJ9G38TY491vQZ1dL3o,3849
|
|
5
5
|
datasourcelib/core/sync_types.py,sha256=KVZB7PkfkFTzghoe--U8jLeAU8XAfba9qMRIVcUjuMc,297
|
|
@@ -11,12 +11,12 @@ datasourcelib/datasources/datasource_types.py,sha256=eEiWymYS05X_TxwuB7P3MpphPG1
|
|
|
11
11
|
datasourcelib/datasources/sharepoint_source - Copy.py,sha256=7V1c-zyvTo4IuPN_YMrKwLZFgbtipbP-mtunmXjOLJQ,17664
|
|
12
12
|
datasourcelib/datasources/sharepoint_source.py,sha256=Pv9735Gu2FylVeeT9e_cZlCvgGUwxn-pVRRZQe2PHU8,20196
|
|
13
13
|
datasourcelib/datasources/sql_source.py,sha256=sCYHrmeD82fQVcdQjL9Y2TTTjaqlv2v8B5noAng3Bl4,5450
|
|
14
|
-
datasourcelib/indexes/__init__.py,sha256=
|
|
14
|
+
datasourcelib/indexes/__init__.py,sha256=S8dz-lyxy1BTuDuLGRJNLrZD_1ku_FIUnDEm6HhMyT0,94
|
|
15
15
|
datasourcelib/indexes/azure_search_index.py,sha256=o3BoSxURBk5jCC3AlNz-v9_igg-dXYS4yUxXZwSfqFg,17265
|
|
16
16
|
datasourcelib/indexes/azure_search_index_only.py,sha256=SulrYPehWGaf3Wi_Dw8UvFneSY-UwEK9viVYXwIlQuI,7120
|
|
17
17
|
datasourcelib/indexes/azure_search_index_vector.py,sha256=4By1vJHv1ORiWOpTqO5wR0sTrq1TaEHP6t8MoOINhok,13410
|
|
18
|
-
datasourcelib-0.1.
|
|
19
|
-
datasourcelib-0.1.
|
|
20
|
-
datasourcelib-0.1.
|
|
21
|
-
datasourcelib-0.1.
|
|
22
|
-
datasourcelib-0.1.
|
|
18
|
+
datasourcelib-0.1.2.dist-info/licenses/LICENSE,sha256=9S0AcKETmp9XOcC73jEjN7WSkuSWGFGreiBat6ONClo,1087
|
|
19
|
+
datasourcelib-0.1.2.dist-info/METADATA,sha256=DOKGwf3XspFhCQRLYLod8Oqc2sUjhDaFFe15xiKqQhQ,1185
|
|
20
|
+
datasourcelib-0.1.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
21
|
+
datasourcelib-0.1.2.dist-info/top_level.txt,sha256=wIwiwdIj8T9pAvE2TkGLUvT2oIi43C2vkkTKibUlv3U,14
|
|
22
|
+
datasourcelib-0.1.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|