py2ls 0.2.5.7__py3-none-any.whl → 0.2.5.8__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
@@ -6772,39 +6772,39 @@ def finfo(fpath):
|
|
6772
6772
|
|
6773
6773
|
|
6774
6774
|
# ! format excel file
|
6775
|
-
def hex2argb(hex_color):
|
6776
|
-
"""
|
6777
|
-
Convert a hex color code to aARGB format required by openpyxl.
|
6778
6775
|
|
6779
|
-
:param hex_color: A hex color code in the format #RRGGBB, RRGGBB, or aARRGGBB.
|
6780
|
-
:return: A hex color code in the format aARRGGBB.
|
6781
6776
|
|
6782
|
-
|
6783
|
-
print(hex_to_argb("FFFF00")) # Outputs: FFFFFF00
|
6784
|
-
print(hex_to_argb("#DF4245")) # Outputs: FFFFFF00
|
6785
|
-
print(hex_to_argb("FF00FF00")) # Outputs: FF00FF00 (already in aARGB format)
|
6777
|
+
def hex2argb(color):
|
6786
6778
|
"""
|
6787
|
-
|
6788
|
-
if hex_color.startswith("#"):
|
6789
|
-
hex_color = hex_color[1:]
|
6779
|
+
Convert a color name or hex code to aARGB format required by openpyxl.
|
6790
6780
|
|
6791
|
-
|
6792
|
-
|
6793
|
-
return hex_color
|
6781
|
+
:param color: A color in the format: 'blue', '#RRGGBB', 'RRGGBB', 'aARRGGBB'
|
6782
|
+
:return: A hex color code in the format aARRGGBB.
|
6794
6783
|
|
6795
|
-
|
6796
|
-
|
6797
|
-
|
6798
|
-
|
6799
|
-
|
6800
|
-
|
6801
|
-
|
6802
|
-
|
6803
|
-
|
6804
|
-
|
6805
|
-
|
6806
|
-
|
6807
|
-
)
|
6784
|
+
Example:
|
6785
|
+
print(hex2argb("blue")) # Output: FF0000FF
|
6786
|
+
print(hex2argb("FFFF00")) # Output: FFFFFF00
|
6787
|
+
print(hex2argb("#DF4245")) # Output: FFDf4245
|
6788
|
+
print(hex2argb("FF00FF00")) # Output: FF00FF00 (already in aARGB format)
|
6789
|
+
"""
|
6790
|
+
import matplotlib.colors as mcolors
|
6791
|
+
import re
|
6792
|
+
color = color.lower().replace(" ", "") # 'light blue'
|
6793
|
+
# Convert color name (e.g., "blue") to hex
|
6794
|
+
if color.lower() in mcolors.CSS4_COLORS:
|
6795
|
+
color = mcolors.CSS4_COLORS[color.lower()].lstrip("#")
|
6796
|
+
color = color.lstrip("#").upper()# Remove '#' if present
|
6797
|
+
|
6798
|
+
# Validate hex format
|
6799
|
+
if not re.fullmatch(r"[A-F0-9]{6,8}", color):
|
6800
|
+
raise ValueError(f"格式错误❌: {color}, 应该使用 RRGGBB, #RRGGBB, or aARRGGBB format.")
|
6801
|
+
|
6802
|
+
# If already in aARRGGBB format (8 chars), return as is
|
6803
|
+
if len(color) == 8:
|
6804
|
+
return color
|
6805
|
+
|
6806
|
+
# If in RRGGBB format, add FF (full opacity) as alpha
|
6807
|
+
return f"FF{color}"
|
6808
6808
|
|
6809
6809
|
def extract_kwargs(func):
|
6810
6810
|
import inspect
|
@@ -6975,7 +6975,7 @@ def format_excel(
|
|
6975
6975
|
from openpyxl.worksheet.datavalidation import DataValidation
|
6976
6976
|
from openpyxl.comments import Comment
|
6977
6977
|
from openpyxl.formatting.rule import ColorScaleRule, DataBarRule, IconSetRule,IconSet
|
6978
|
-
|
6978
|
+
from openpyxl.utils import get_column_letter
|
6979
6979
|
def convert_indices_to_range(row_slice, col_slice):
|
6980
6980
|
"""Convert numerical row and column slices to Excel-style range strings."""
|
6981
6981
|
start_row = row_slice.start + 1
|
@@ -7000,9 +7000,17 @@ def format_excel(
|
|
7000
7000
|
sheet_name : str
|
7001
7001
|
The name of the sheet to style.
|
7002
7002
|
conditions : dict
|
7003
|
-
Dictionary defining conditions for text coloring.
|
7003
|
+
Dictionary defining conditions for text or background coloring.
|
7004
|
+
Example:
|
7005
|
+
{
|
7006
|
+
">10": "#FF0000", # Red if value is greater than 10
|
7007
|
+
"contains:Error": "#FFFF00", # Yellow if text contains 'Error'
|
7008
|
+
"startswith:Warn": "#FFA500" # Orange if text starts with 'Warn'
|
7009
|
+
}
|
7004
7010
|
cell_idx : tuple, optional
|
7005
7011
|
A tuple of slices defining the selected row and column range (only for DataFrame).
|
7012
|
+
where : str, default="text"
|
7013
|
+
"text" -> Apply color to text, "bg" -> Apply color to background.
|
7006
7014
|
|
7007
7015
|
Returns:
|
7008
7016
|
openpyxl.workbook.workbook.Workbook
|
@@ -7010,14 +7018,24 @@ def format_excel(
|
|
7010
7018
|
"""
|
7011
7019
|
def evaluate_condition(value, condition):
|
7012
7020
|
"""Evaluate the condition dynamically."""
|
7021
|
+
if not isinstance(conditions, dict):
|
7022
|
+
raise ValueError(f"condition必须是dict格式:e.g., {'x>=20':'#DD0531', 'startswith:Available':'#DD0531'}")
|
7013
7023
|
try:
|
7014
7024
|
if "x" in condition and re.search(r"[<>=!]=*", condition):
|
7015
7025
|
expr = condition.replace("x", str(value))
|
7026
|
+
return eval(expr)
|
7027
|
+
elif condition.startswith("startswith:") or condition.startswith("startwith:"):
|
7028
|
+
return value.startswith(condition.split(":", 1)[1])
|
7029
|
+
elif condition.startswith("endswith:") or condition.startswith("endwith:"):
|
7030
|
+
return value.endswith(condition.split(":", 1)[1])
|
7031
|
+
elif condition.startswith("contains:") or condition.startswith("contain:") or condition.startswith("include:"):
|
7032
|
+
return condition.split(":", 1)[1] in value
|
7033
|
+
elif condition.startswith("matches:") or condition.startswith("match:"):
|
7034
|
+
return re.search(condition.split(":", 1)[1], value) is not None
|
7016
7035
|
else:
|
7017
7036
|
expr = condition
|
7018
|
-
return
|
7019
|
-
except Exception as e:
|
7020
|
-
# print(f"Error evaluating condition {condition} for value {value}: {e}")
|
7037
|
+
return False
|
7038
|
+
except Exception as e:
|
7021
7039
|
return False
|
7022
7040
|
|
7023
7041
|
def apply_condition_to_cell_text_color(cell, value):
|
@@ -7446,12 +7464,12 @@ def format_excel(
|
|
7446
7464
|
kwargs.pop("sheet_name", 0) # 更好地跟df.to_excel结合使用
|
7447
7465
|
# 只有openpyxl才支持 append
|
7448
7466
|
mode = strcmp(kwargs.get("mode", "a"), ["a", "w","auto"])[0]
|
7449
|
-
print(f'mode="{mode}"')
|
7467
|
+
# print(f'mode="{mode}"')
|
7450
7468
|
kwargs.pop("mode", None)
|
7451
7469
|
engine = strcmp(kwargs.get("engine", "openpyxl"), ["xlsxwriter", "openpyxl"])[0]
|
7452
7470
|
# corr engine
|
7453
7471
|
engine="openpyxl" if mode=="a" else "xlsxwriter"
|
7454
|
-
print(f'engine="{engine}"')
|
7472
|
+
# print(f'engine="{engine}"')
|
7455
7473
|
if_sheet_exists=kwargs.get("if_sheet_exists","replace")
|
7456
7474
|
# 通常是不需要保存index的
|
7457
7475
|
index = kwargs.get("index", False)
|
@@ -7478,11 +7496,7 @@ def format_excel(
|
|
7478
7496
|
with pd.ExcelWriter(filename, mode="a", engine=engine, if_sheet_exists=if_sheet_exists) as writer:
|
7479
7497
|
for ws in df.worksheets: # Iterate through worksheets in the input workbook
|
7480
7498
|
ws_df = pd.DataFrame(ws.values)
|
7481
|
-
ws_df.to_excel(writer,
|
7482
|
-
sheet_name=sheet_name,
|
7483
|
-
index=index,
|
7484
|
-
header=header,
|
7485
|
-
**kwargs)
|
7499
|
+
ws_df.to_excel(writer,sheet_name=sheet_name,index=index,header=header,**kwargs)
|
7486
7500
|
# 重新打开刚更新过的数据
|
7487
7501
|
wb = load_workbook(filename)
|
7488
7502
|
if sheet_name in wb.sheetnames:
|
@@ -242,7 +242,7 @@ py2ls/export_requirements.py,sha256=x2WgUF0jYKz9GfA1MVKN-MdsM-oQ8yUeC6Ua8oCymio,
|
|
242
242
|
py2ls/fetch_update.py,sha256=9LXj661GpCEFII2wx_99aINYctDiHni6DOruDs_fdt8,4752
|
243
243
|
py2ls/freqanalysis.py,sha256=F4218VSPbgL5tnngh6xNCYuNnfR-F_QjECUUxrPYZss,32594
|
244
244
|
py2ls/ich2ls.py,sha256=3E9R8oVpyYZXH5PiIQgT3CN5NxLe4Dwtm2LwaeacE6I,21381
|
245
|
-
py2ls/ips.py,sha256=
|
245
|
+
py2ls/ips.py,sha256=fZULodwMcWrfalf1RVwvhswpXK6uKWRDqCufPQP6X10,475998
|
246
246
|
py2ls/ml2ls.py,sha256=I-JFPdikgEtfQjhv5gBz-QSeorpTJI_Pda_JwkTioBY,209732
|
247
247
|
py2ls/mol.py,sha256=AZnHzarIk_MjueKdChqn1V6e4tUle3X1NnHSFA6n3Nw,10645
|
248
248
|
py2ls/netfinder.py,sha256=OhqD3S9PuwweL2013D-q4GNP1WvJjuYfZzq5BZgGddE,68980
|
@@ -254,6 +254,6 @@ py2ls/sleep_events_detectors.py,sha256=bQA3HJqv5qnYKJJEIhCyhlDtkXQfIzqksnD0YRXso
|
|
254
254
|
py2ls/stats.py,sha256=qBn2rJmNa_QLLUqjwYqXUlGzqmW94sgA1bxJU2FC3r0,39175
|
255
255
|
py2ls/translator.py,sha256=77Tp_GjmiiwFbEIJD_q3VYpQ43XL9ZeJo6Mhl44mvh8,34284
|
256
256
|
py2ls/wb_detector.py,sha256=7y6TmBUj9exCZeIgBAJ_9hwuhkDh1x_-yg4dvNY1_GQ,6284
|
257
|
-
py2ls-0.2.5.
|
258
|
-
py2ls-0.2.5.
|
259
|
-
py2ls-0.2.5.
|
257
|
+
py2ls-0.2.5.8.dist-info/METADATA,sha256=rWjCkSAqUewruKt5Rcnu8EdLW8GDl4JWa4QkSeldXtQ,20631
|
258
|
+
py2ls-0.2.5.8.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
259
|
+
py2ls-0.2.5.8.dist-info/RECORD,,
|