sibi-dst 2025.9.3__py3-none-any.whl → 2025.9.5__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.
- sibi_dst/__init__.py +6 -4
- sibi_dst/df_helper/__init__.py +1 -0
- sibi_dst/df_helper/_parquet_artifact.py +533 -113
- sibi_dst/df_helper/backends/parquet/_parquet_options.py +1 -281
- sibi_dst/df_helper/backends/sqlalchemy/_io_dask.py +349 -142
- sibi_dst/df_helper/backends/sqlalchemy/_load_from_db.py +17 -0
- sibi_dst/tests/test_baseclass.py +403 -0
- sibi_dst/utils/base.py +0 -254
- sibi_dst/utils/boilerplate/__init__.py +4 -1
- sibi_dst/utils/boilerplate/hybrid_data_loader.py +144 -0
- sibi_dst/utils/data_wrapper.py +460 -61
- sibi_dst/utils/parquet_saver.py +403 -161
- sibi_dst/utils/update_planner.py +553 -319
- sibi_dst/utils/write_gatekeeper.py +18 -0
- {sibi_dst-2025.9.3.dist-info → sibi_dst-2025.9.5.dist-info}/METADATA +2 -2
- {sibi_dst-2025.9.3.dist-info → sibi_dst-2025.9.5.dist-info}/RECORD +17 -14
- {sibi_dst-2025.9.3.dist-info → sibi_dst-2025.9.5.dist-info}/WHEEL +0 -0
sibi_dst/__init__.py
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
from __future__ import annotations
|
2
|
+
|
1
3
|
try:
|
2
4
|
import importlib.metadata as version_reader
|
3
5
|
except ImportError:
|
@@ -12,8 +14,8 @@ __all__ = [
|
|
12
14
|
"__version__",
|
13
15
|
]
|
14
16
|
|
15
|
-
|
16
|
-
from . import
|
17
|
-
from . import
|
18
|
-
from . import
|
17
|
+
import sibi_dst.df_helper as df_helper
|
18
|
+
from sibi_dst.osmnx_helper import *
|
19
|
+
from sibi_dst.geopy_helper import *
|
20
|
+
from sibi_dst.utils import *
|
19
21
|
|
sibi_dst/df_helper/__init__.py
CHANGED
@@ -6,6 +6,7 @@ from ._parquet_reader import ParquetReader
|
|
6
6
|
#from ._artifact_updater_multi_wrapper import ArtifactUpdaterMultiWrapperThreaded, ArtifactUpdaterMultiWrapperAsync
|
7
7
|
from ._artifact_updater_async import ArtifactUpdaterMultiWrapperAsync
|
8
8
|
from ._artifact_updater_threaded import ArtifactUpdaterMultiWrapperThreaded
|
9
|
+
|
9
10
|
__all__ = [
|
10
11
|
'DfHelper',
|
11
12
|
'ParquetArtifact',
|