py2ls 0.2.5.1__py3-none-any.whl → 0.2.5.3__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.
py2ls/ips.py
CHANGED
@@ -7074,7 +7074,7 @@ def format_excel(
|
|
7074
7074
|
# !Protect sheet with a password
|
7075
7075
|
# Fetch the password
|
7076
7076
|
password = kwargs.pop("password", None) # Use kwargs if provided
|
7077
|
-
|
7077
|
+
|
7078
7078
|
if all([password is not None, any([protect, isinstance(password, (str, list, tuple)) and any(password)])]): # Check if protection options are provided
|
7079
7079
|
if protect is None:
|
7080
7080
|
protect={}
|
@@ -7242,6 +7242,46 @@ def preview(var):
|
|
7242
7242
|
# preview(pd.DataFrame({"Name": ["Alice", "Bob"], "Age": [25, 30]}))
|
7243
7243
|
# preview({"key": "value", "numbers": [1, 2, 3]})
|
7244
7244
|
|
7245
|
+
def df2db(df: pd.DataFrame, db_url: str, table_name: str, if_exists: str = "replace"):
|
7246
|
+
"""
|
7247
|
+
Save a pandas DataFrame to a SQL database (SQLite, MySQL, PostgreSQL).
|
7248
|
+
|
7249
|
+
Usage:
|
7250
|
+
case 1. SQLite:
|
7251
|
+
df2db(df, 'sqlite:///sample_manager.db', 'users', 'replace')
|
7252
|
+
case 2. MySQL:
|
7253
|
+
df2db(df, 'mysql+mysqlconnector://user:password@localhost/mydatabase', 'users', 'replace')
|
7254
|
+
case 3. PostgreSQL:
|
7255
|
+
df2db(df, 'postgresql://user:password@localhost/mydatabase', 'users', 'replace')
|
7256
|
+
|
7257
|
+
Parameters:
|
7258
|
+
- df (pd.DataFrame): The DataFrame to save.
|
7259
|
+
- db_url (str): The SQLAlchemy connection string to the database.
|
7260
|
+
- table_name (str): The name of the table to save the DataFrame to.
|
7261
|
+
- if_exists (str): What to do if the table already exists. Options:
|
7262
|
+
- 'replace': Drop the table before inserting new values.
|
7263
|
+
- 'append': Append new values to the table.
|
7264
|
+
- 'fail': Do nothing if the table exists. Default is 'replace'.
|
7265
|
+
"""
|
7266
|
+
from sqlalchemy import create_engine
|
7267
|
+
from sqlalchemy.exc import SQLAlchemyError
|
7268
|
+
|
7269
|
+
try:
|
7270
|
+
# Create the SQLAlchemy engine based on the provided db_url
|
7271
|
+
engine = create_engine(db_url)
|
7272
|
+
|
7273
|
+
# Save the DataFrame to the SQL database (table)
|
7274
|
+
df.to_sql(table_name, con=engine, index=False, if_exists=if_exists)
|
7275
|
+
|
7276
|
+
print(f"Data successfully saved to {db_url} in the {table_name} table.")
|
7277
|
+
|
7278
|
+
except SQLAlchemyError as e:
|
7279
|
+
# Handle SQLAlchemy-related errors (e.g., connection issues, query issues)
|
7280
|
+
print(f"Error saving DataFrame to database: {str(e)}")
|
7281
|
+
|
7282
|
+
except Exception as e:
|
7283
|
+
# Handle other unexpected errors
|
7284
|
+
print(f"An unexpected error occurred: {str(e)}")
|
7245
7285
|
|
7246
7286
|
def _df_outlier(
|
7247
7287
|
data,
|
@@ -243,7 +243,7 @@ py2ls/export_requirements.py,sha256=x2WgUF0jYKz9GfA1MVKN-MdsM-oQ8yUeC6Ua8oCymio,
|
|
243
243
|
py2ls/fetch_update.py,sha256=9LXj661GpCEFII2wx_99aINYctDiHni6DOruDs_fdt8,4752
|
244
244
|
py2ls/freqanalysis.py,sha256=F4218VSPbgL5tnngh6xNCYuNnfR-F_QjECUUxrPYZss,32594
|
245
245
|
py2ls/ich2ls.py,sha256=3E9R8oVpyYZXH5PiIQgT3CN5NxLe4Dwtm2LwaeacE6I,21381
|
246
|
-
py2ls/ips.py,sha256=
|
246
|
+
py2ls/ips.py,sha256=yvT-36hcx4f0-ezd7a8_azjjVq2u2Z0O2nn5uJegh00,434249
|
247
247
|
py2ls/ml2ls.py,sha256=I-JFPdikgEtfQjhv5gBz-QSeorpTJI_Pda_JwkTioBY,209732
|
248
248
|
py2ls/mol.py,sha256=AZnHzarIk_MjueKdChqn1V6e4tUle3X1NnHSFA6n3Nw,10645
|
249
249
|
py2ls/netfinder.py,sha256=OhqD3S9PuwweL2013D-q4GNP1WvJjuYfZzq5BZgGddE,68980
|
@@ -255,6 +255,6 @@ py2ls/sleep_events_detectors.py,sha256=bQA3HJqv5qnYKJJEIhCyhlDtkXQfIzqksnD0YRXso
|
|
255
255
|
py2ls/stats.py,sha256=qBn2rJmNa_QLLUqjwYqXUlGzqmW94sgA1bxJU2FC3r0,39175
|
256
256
|
py2ls/translator.py,sha256=77Tp_GjmiiwFbEIJD_q3VYpQ43XL9ZeJo6Mhl44mvh8,34284
|
257
257
|
py2ls/wb_detector.py,sha256=7y6TmBUj9exCZeIgBAJ_9hwuhkDh1x_-yg4dvNY1_GQ,6284
|
258
|
-
py2ls-0.2.5.
|
259
|
-
py2ls-0.2.5.
|
260
|
-
py2ls-0.2.5.
|
258
|
+
py2ls-0.2.5.3.dist-info/METADATA,sha256=TAD1eh5djcKbNXJlOGJq8C3X0DbCcfAHvPK6F9SegZU,20440
|
259
|
+
py2ls-0.2.5.3.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
260
|
+
py2ls-0.2.5.3.dist-info/RECORD,,
|
File without changes
|