sibi-dst 0.3.54__tar.gz → 0.3.55__tar.gz
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-0.3.54 → sibi_dst-0.3.55}/PKG-INFO +1 -8
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/README.md +0 -7
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/pyproject.toml +1 -1
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/df_helper/backends/sqlalchemy/_db_connection.py +3 -1
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/__init__.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/df_helper/__init__.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/df_helper/_artifact_updater_multi_wrapper.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/df_helper/_df_helper.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/df_helper/_parquet_artifact.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/df_helper/_parquet_reader.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/df_helper/backends/__init__.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/df_helper/backends/django/__init__.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/df_helper/backends/django/_db_connection.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/df_helper/backends/django/_io_dask.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/df_helper/backends/django/_load_from_db.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/df_helper/backends/django/_sql_model_builder.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/df_helper/backends/http/__init__.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/df_helper/backends/http/_http_config.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/df_helper/backends/parquet/__init__.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/df_helper/backends/parquet/_filter_handler.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/df_helper/backends/parquet/_parquet_options.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/df_helper/backends/sqlalchemy/__init__.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/df_helper/backends/sqlalchemy/_filter_handler.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/df_helper/backends/sqlalchemy/_io_dask.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/df_helper/backends/sqlalchemy/_load_from_db.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/df_helper/backends/sqlalchemy/_sql_model_builder.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/df_helper/core/__init__.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/df_helper/core/_defaults.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/df_helper/core/_filter_handler.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/df_helper/core/_params_config.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/df_helper/core/_query_config.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/df_helper/data_cleaner.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/geopy_helper/__init__.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/geopy_helper/geo_location_service.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/geopy_helper/utils.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/osmnx_helper/__init__.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/osmnx_helper/base_osm_map.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/osmnx_helper/basemaps/__init__.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/osmnx_helper/basemaps/calendar_html.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/osmnx_helper/basemaps/router_plotter.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/osmnx_helper/utils.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/tests/__init__.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/tests/test_data_wrapper_class.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/utils/__init__.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/utils/airflow_manager.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/utils/clickhouse_writer.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/utils/credentials.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/utils/data_from_http_source.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/utils/data_utils.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/utils/data_wrapper.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/utils/date_utils.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/utils/df_utils.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/utils/file_utils.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/utils/filepath_generator.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/utils/log_utils.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/utils/parquet_saver.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/utils/phone_formatter.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/utils/storage_config.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/utils/storage_manager.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/utils/webdav_client.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/v2/__init__.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/v2/df_helper/__init__.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/v2/df_helper/_df_helper.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/v2/df_helper/backends/__init__.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/v2/df_helper/backends/sqlalchemy/__init__.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/v2/df_helper/backends/sqlalchemy/_db_connection.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/v2/df_helper/backends/sqlalchemy/_io_dask.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/v2/df_helper/backends/sqlalchemy/_load_from_db.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/v2/df_helper/backends/sqlalchemy/_model_builder.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/v2/df_helper/backends/sqlmodel/__init__.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/v2/df_helper/backends/sqlmodel/_db_connection.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/v2/df_helper/backends/sqlmodel/_io_dask.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/v2/df_helper/backends/sqlmodel/_load_from_db.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/v2/df_helper/backends/sqlmodel/_model_builder.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/v2/df_helper/core/__init__.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/v2/df_helper/core/_filter_handler.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/v2/df_helper/core/_params_config.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/v2/df_helper/core/_query_config.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/v2/utils/__init__.py +0 -0
- {sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/v2/utils/log_utils.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: sibi-dst
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.55
|
4
4
|
Summary: Data Science Toolkit
|
5
5
|
Author: Luis Valverde
|
6
6
|
Author-email: lvalverdeb@gmail.com
|
@@ -51,13 +51,6 @@ Requires-Dist: uvicorn-worker (>=0.3.0,<0.4.0)
|
|
51
51
|
Requires-Dist: webdav4[fsspec] (>=0.10.0,<0.11.0)
|
52
52
|
Description-Content-Type: text/markdown
|
53
53
|
|
54
|
-
---
|
55
|
-
title: "Sibi Data Science Toolkit"
|
56
|
-
description: "Data Science Toolkit built with Python, Pandas, Dask, GeoPandas, OpenStreetMaps, SQLAlchemy"
|
57
|
-
author: "Luis Valverde"
|
58
|
-
current_mantainer: "Luis Valverde"
|
59
|
-
---
|
60
|
-
|
61
54
|
### SIBI-DST
|
62
55
|
|
63
56
|
Data Science Toolkit built with Python, Pandas, Dask, OpenStreetMaps, NetworkX, SQLAlchemy, GeoPandas, and Folium.
|
@@ -1,10 +1,3 @@
|
|
1
|
-
---
|
2
|
-
title: "Sibi Data Science Toolkit"
|
3
|
-
description: "Data Science Toolkit built with Python, Pandas, Dask, GeoPandas, OpenStreetMaps, SQLAlchemy"
|
4
|
-
author: "Luis Valverde"
|
5
|
-
current_mantainer: "Luis Valverde"
|
6
|
-
---
|
7
|
-
|
8
1
|
### SIBI-DST
|
9
2
|
|
10
3
|
Data Science Toolkit built with Python, Pandas, Dask, OpenStreetMaps, NetworkX, SQLAlchemy, GeoPandas, and Folium.
|
{sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/df_helper/backends/sqlalchemy/_db_connection.py
RENAMED
@@ -33,6 +33,7 @@ class SqlAlchemyConnectionConfig(BaseModel):
|
|
33
33
|
pool_size: int = 10
|
34
34
|
max_overflow: int = 5
|
35
35
|
pool_timeout: int = 30
|
36
|
+
pool_recycle:int = 3600
|
36
37
|
|
37
38
|
@model_validator(mode="after")
|
38
39
|
def validate_and_initialize(self):
|
@@ -47,7 +48,8 @@ class SqlAlchemyConnectionConfig(BaseModel):
|
|
47
48
|
self.engine = create_engine(self.connection_url,
|
48
49
|
pool_size=self.pool_size,
|
49
50
|
max_overflow=self.max_overflow,
|
50
|
-
pool_timeout=self.pool_timeout
|
51
|
+
pool_timeout=self.pool_timeout,
|
52
|
+
pool_recycle=self.pool_recycle)
|
51
53
|
|
52
54
|
# Validate the connection
|
53
55
|
self.validate_connection()
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/df_helper/backends/django/_sql_model_builder.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/df_helper/backends/sqlalchemy/_filter_handler.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/df_helper/backends/sqlalchemy/_sql_model_builder.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/v2/df_helper/backends/sqlalchemy/_db_connection.py
RENAMED
File without changes
|
File without changes
|
{sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/v2/df_helper/backends/sqlalchemy/_load_from_db.py
RENAMED
File without changes
|
{sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/v2/df_helper/backends/sqlalchemy/_model_builder.py
RENAMED
File without changes
|
File without changes
|
{sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/v2/df_helper/backends/sqlmodel/_db_connection.py
RENAMED
File without changes
|
File without changes
|
{sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/v2/df_helper/backends/sqlmodel/_load_from_db.py
RENAMED
File without changes
|
{sibi_dst-0.3.54 → sibi_dst-0.3.55}/sibi_dst/v2/df_helper/backends/sqlmodel/_model_builder.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|