1
0
Fork 0
mirror of https://github.com/qurator-spk/modstool.git synced 2025-08-16 13:09:53 +02:00

🚧 Use temporary SQLite DB for alto4pandas, too

This commit is contained in:
Mike Gerber 2024-11-29 15:53:00 +01:00
parent ca8f165955
commit 39f7d8646a
2 changed files with 27 additions and 28 deletions

View file

@ -332,7 +332,7 @@ def dicts_to_df(data_list: List[Dict], *, index_column) -> pd.DataFrame:
def valid_column_key(k):
if re.match("^[a-zA-Z0-9 _-]+$", k):
if re.match("^[a-zA-Z0-9 _@/:\[\]-]+$", k):
return True
else:
return False