sibi-dst 0.3.26__py3-none-any.whl → 0.3.28__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/df_helper/__init__.py +2 -0
- sibi_dst/df_helper/_df_helper.py +180 -12
- sibi_dst/df_helper/core/_filter_handler.py +37 -0
- sibi_dst/df_helper/core/_params_config.py +2 -2
- sibi_dst/df_helper/data_cleaner.py +132 -0
- sibi_dst/osmnx_helper/__init__.py +9 -0
- sibi_dst/osmnx_helper/base_osm_map.py +165 -0
- sibi_dst/osmnx_helper/basemaps/__init__.py +0 -0
- sibi_dst/osmnx_helper/basemaps/calendar_html.py +122 -0
- sibi_dst/osmnx_helper/basemaps/router_plotter.py +186 -0
- sibi_dst/osmnx_helper/utils.py +267 -0
- sibi_dst/tests/__init__.py +0 -0
- sibi_dst/tests/test_data_wrapper_class.py +78 -0
- sibi_dst/utils/clickhouse_writer.py +1 -1
- sibi_dst/utils/data_utils.py +1 -1
- sibi_dst/utils/data_wrapper.py +0 -26
- {sibi_dst-0.3.26.dist-info → sibi_dst-0.3.28.dist-info}/METADATA +6 -1
- {sibi_dst-0.3.26.dist-info → sibi_dst-0.3.28.dist-info}/RECORD +19 -10
- {sibi_dst-0.3.26.dist-info → sibi_dst-0.3.28.dist-info}/WHEEL +1 -1
sibi_dst/utils/data_wrapper.py
CHANGED
@@ -126,32 +126,6 @@ class DataWrapper:
|
|
126
126
|
futures[new_future] = priority
|
127
127
|
self.logger.info(f"Resubmitted task for priority {priority} after timeout.")
|
128
128
|
|
129
|
-
# def process(self):
|
130
|
-
# """Execute the update plan following the specified hierarchy."""
|
131
|
-
# update_plan_table = self.generate_update_plan_with_conditions()
|
132
|
-
#
|
133
|
-
# # Display the update plan table to the user if show_progress is True
|
134
|
-
# if self.show_progress:
|
135
|
-
# display(update_plan_table)
|
136
|
-
#
|
137
|
-
# # Process files according to the hierarchy, considering only `update_required` dates
|
138
|
-
# for category, description in [
|
139
|
-
# ("overwrite", "Processing files due to overwrite=True"),
|
140
|
-
# ("history_days", "Processing files within history_days_threshold"),
|
141
|
-
# ("missing_files", "Processing missing files")
|
142
|
-
# ]:
|
143
|
-
# # Filter dates in the category where `update_required` is True
|
144
|
-
# dates_to_process = update_plan_table[
|
145
|
-
# (update_plan_table["update_category"] == category) & (update_plan_table["update_required"])
|
146
|
-
# ]["date"].tolist()
|
147
|
-
#
|
148
|
-
# date_iterator = dates_to_process
|
149
|
-
# if self.show_progress:
|
150
|
-
# date_iterator = tqdm(date_iterator, desc=f"{description}:{self.dataclass.__name__}", unit="date")
|
151
|
-
#
|
152
|
-
# for current_date in date_iterator:
|
153
|
-
# self.process_date(current_date)
|
154
|
-
|
155
129
|
def is_file_older_than(self, file_path: str) -> bool:
|
156
130
|
"""
|
157
131
|
Check if a file is older than the specified max_age_minutes.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: sibi-dst
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.28
|
4
4
|
Summary: Data Science Toolkit
|
5
5
|
Author: Luis Valverde
|
6
6
|
Author-email: lvalverdeb@gmail.com
|
@@ -8,6 +8,7 @@ Requires-Python: >=3.11,<4.0
|
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
9
9
|
Classifier: Programming Language :: Python :: 3.11
|
10
10
|
Classifier: Programming Language :: Python :: 3.12
|
11
|
+
Classifier: Programming Language :: Python :: 3.13
|
11
12
|
Requires-Dist: apache-airflow-client (>=2.10.0,<3.0.0)
|
12
13
|
Requires-Dist: chardet (>=5.2.0,<6.0.0)
|
13
14
|
Requires-Dist: charset-normalizer (>=3.4.0,<4.0.0)
|
@@ -17,10 +18,13 @@ Requires-Dist: dask-expr (>=1.1.20,<2.0.0)
|
|
17
18
|
Requires-Dist: dask[complete] (>=2024.11.1,<2025.0.0)
|
18
19
|
Requires-Dist: django (>=5.1.4,<6.0.0)
|
19
20
|
Requires-Dist: djangorestframework (>=3.15.2,<4.0.0)
|
21
|
+
Requires-Dist: folium (>=0.19.4,<0.20.0)
|
22
|
+
Requires-Dist: geopandas (>=1.0.1,<2.0.0)
|
20
23
|
Requires-Dist: httpx (>=0.27.2,<0.28.0)
|
21
24
|
Requires-Dist: ipython (>=8.29.0,<9.0.0)
|
22
25
|
Requires-Dist: jinja2 (>=3.1.4,<4.0.0)
|
23
26
|
Requires-Dist: mysqlclient (>=2.2.6,<3.0.0)
|
27
|
+
Requires-Dist: nltk (>=3.9.1,<4.0.0)
|
24
28
|
Requires-Dist: openpyxl (>=3.1.5,<4.0.0)
|
25
29
|
Requires-Dist: pandas (>=2.2.3,<3.0.0)
|
26
30
|
Requires-Dist: paramiko (>=3.5.0,<4.0.0)
|
@@ -32,6 +36,7 @@ Requires-Dist: pymysql (>=1.1.1,<2.0.0)
|
|
32
36
|
Requires-Dist: pytest (>=8.3.3,<9.0.0)
|
33
37
|
Requires-Dist: pytest-mock (>=3.14.0,<4.0.0)
|
34
38
|
Requires-Dist: python-dotenv (>=1.0.1,<2.0.0)
|
39
|
+
Requires-Dist: s3fs (>=2024.12.0,<2025.0.0)
|
35
40
|
Requires-Dist: sqlalchemy (>=2.0.36,<3.0.0)
|
36
41
|
Requires-Dist: tornado (>=6.4.1,<7.0.0)
|
37
42
|
Requires-Dist: tqdm (>=4.67.0,<5.0.0)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
sibi_dst/__init__.py,sha256=CLHfzrFNqklNx5uMKAPtbZfkbBbVYR5qsiMro0RTfmA,252
|
2
|
-
sibi_dst/df_helper/__init__.py,sha256=
|
3
|
-
sibi_dst/df_helper/_df_helper.py,sha256=
|
2
|
+
sibi_dst/df_helper/__init__.py,sha256=5yzslP6zYYOHsTtAzHnNDXHYjf_T6yW7baxwgtduWqQ,292
|
3
|
+
sibi_dst/df_helper/_df_helper.py,sha256=MttqHot8dlHzo4G522JL-z6LOFWYVXqqz06k-4YcvRM,23447
|
4
4
|
sibi_dst/df_helper/_parquet_artifact.py,sha256=nx1wTEyrjARpCCPNwBxYiBROee3CSb6c-u7Cpme_tdk,4978
|
5
5
|
sibi_dst/df_helper/_parquet_reader.py,sha256=sbe8DsScNT2h6huNsz8mUxVnUGpJeRzbaONZ3u2sQeQ,1685
|
6
6
|
sibi_dst/df_helper/backends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -22,15 +22,24 @@ sibi_dst/df_helper/backends/sqlalchemy/_load_from_db.py,sha256=ML-m_WeTR1_UMgiDR
|
|
22
22
|
sibi_dst/df_helper/backends/sqlalchemy/_sql_model_builder.py,sha256=Bmhh6VvmBfNfBA2JpuEdsYD_193yJ768Si2TvkY9HmU,4405
|
23
23
|
sibi_dst/df_helper/core/__init__.py,sha256=o4zDwgVmaijde3oix0ezb6KLxI5QFy-SGUhFTDVFLT4,569
|
24
24
|
sibi_dst/df_helper/core/_defaults.py,sha256=eNpHD2sZxir-2xO0b3_V16ryw8YP_5FfpIKK0HNuiN4,7011
|
25
|
-
sibi_dst/df_helper/core/_filter_handler.py,sha256=
|
26
|
-
sibi_dst/df_helper/core/_params_config.py,sha256=
|
25
|
+
sibi_dst/df_helper/core/_filter_handler.py,sha256=t3uLLJX5hWO_dWKCCz8Dwpc9RZ5PMHBIWkHSELCpFXI,11131
|
26
|
+
sibi_dst/df_helper/core/_params_config.py,sha256=Og3GYth0GVWpcOYWZWRy7CZ5PDsg63Nmqo-W7TUrA_0,3503
|
27
27
|
sibi_dst/df_helper/core/_query_config.py,sha256=Y8LVSyaKuVkrPluRDkQoOwuXHQxner1pFWG3HPfnDHM,441
|
28
|
+
sibi_dst/df_helper/data_cleaner.py,sha256=lkxQoXLvGzXCicFUimnA5nen5qkrO1oxgl_p2Be2o8w,5183
|
29
|
+
sibi_dst/osmnx_helper/__init__.py,sha256=QeAKEeVXZk_qn8o0d3BOoGgv2lzatcI2yBqY3ZqviKI,153
|
30
|
+
sibi_dst/osmnx_helper/base_osm_map.py,sha256=s2OY_XfwjZA3ImJNtCgevGBCbwRVe3dY3QVkTHEulB0,5794
|
31
|
+
sibi_dst/osmnx_helper/basemaps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
32
|
+
sibi_dst/osmnx_helper/basemaps/calendar_html.py,sha256=UArt6FDgoCgoRte45Xo3IHqd-RNzW0YgitgZYfOFasY,4031
|
33
|
+
sibi_dst/osmnx_helper/basemaps/router_plotter.py,sha256=QznnBGsUwhl8ZITcVNBrQDm-MXAd0jpJGPuyozKyQg0,8537
|
34
|
+
sibi_dst/osmnx_helper/utils.py,sha256=8sF-wNSL38WzhWS3DceZ1cP8BM11i7D0bI-E4XYD8K4,8449
|
35
|
+
sibi_dst/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
36
|
+
sibi_dst/tests/test_data_wrapper_class.py,sha256=Nkup5OFH5Cos2fxPaU7g9IEyINJM0uJ5-rOZ-eNtd20,3275
|
28
37
|
sibi_dst/utils/__init__.py,sha256=z51o5sjIo_gTjnDXk5SBniCxWJIrDBMS7df0dTs8VMk,775
|
29
38
|
sibi_dst/utils/airflow_manager.py,sha256=-d44EKUZNYJyp4wuNwRvilRQktunArPOB5fZuWdQv10,7526
|
30
|
-
sibi_dst/utils/clickhouse_writer.py,sha256=
|
39
|
+
sibi_dst/utils/clickhouse_writer.py,sha256=xUhFDOuZt0eZDpVJNuLb7pfTHUV06NCYrNUx_a7qrSM,8580
|
31
40
|
sibi_dst/utils/credentials.py,sha256=cHJPPsmVyijqbUQIq7WWPe-lIallA-mI5RAy3YUuRME,1724
|
32
|
-
sibi_dst/utils/data_utils.py,sha256=
|
33
|
-
sibi_dst/utils/data_wrapper.py,sha256=
|
41
|
+
sibi_dst/utils/data_utils.py,sha256=Kv87Br78EXlH_MSVzRspqLwrf6sqHIRQc0t3LDI0dSM,7045
|
42
|
+
sibi_dst/utils/data_wrapper.py,sha256=DTK4hd_GUUi5lxcbEbMraKwzpmPh2IwX6WNWA4t-vx0,10693
|
34
43
|
sibi_dst/utils/date_utils.py,sha256=CMAZBNwVj7cvERcNiTA8Pf7_5EjV9By9yxkYJpkqz1g,10656
|
35
44
|
sibi_dst/utils/df_utils.py,sha256=OFEtcwVKIilvf9qVf-IfIOHp4jcFAHX5l2IDGudhPZg,10989
|
36
45
|
sibi_dst/utils/file_utils.py,sha256=JpsybYj3XvVJisSBeVU6YSaZnYRm4_6YWTI3TLnnY4Y,1257
|
@@ -38,6 +47,6 @@ sibi_dst/utils/filepath_generator.py,sha256=hjI7gQwfwRToPeuzoUQDayHKQrr4Ivhi4Chl
|
|
38
47
|
sibi_dst/utils/log_utils.py,sha256=4eLmoV8VC7wDwPr1mRfDKP24_-laGO6ogE4U0u3DUuA,2315
|
39
48
|
sibi_dst/utils/parquet_saver.py,sha256=hLrWr1G132y94eLopDPPGQGDsAiR1lQ8id4QQtGYPE4,4349
|
40
49
|
sibi_dst/utils/storage_manager.py,sha256=7nkfeBW_2xlF59pGj7V2aY5TLwpJnPQuPVclqjavJOA,3856
|
41
|
-
sibi_dst-0.3.
|
42
|
-
sibi_dst-0.3.
|
43
|
-
sibi_dst-0.3.
|
50
|
+
sibi_dst-0.3.28.dist-info/METADATA,sha256=9xBeLwWalUf7exDK-0NZfnYmUQnOIdV2xa0PYNTd85I,2436
|
51
|
+
sibi_dst-0.3.28.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
52
|
+
sibi_dst-0.3.28.dist-info/RECORD,,
|