From 7a6912d4c78d01e5ee605923719da30ec14ab67a Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 30 Oct 2025 15:29:50 +0100 Subject: [PATCH] changed range of files --- create_parquet_files.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/create_parquet_files.py b/create_parquet_files.py index 6651bfd..5fb5b6a 100644 --- a/create_parquet_files.py +++ b/create_parquet_files.py @@ -4,7 +4,7 @@ import owncloud import pandas as pd import h5py - +num_files = 30 # number of files to process (min: 1, max: 30) # Load credentials with open("login.yaml") as f: cfg = yaml.safe_load(f) @@ -17,7 +17,7 @@ print("connection aufgebaut") # File pattern base = "adabase-public-{num:04d}-v_0_0_2.h5py" -for i in range(1): +for i in range(num_files): file_name = base.format(num=i) local_tmp = f"tmp_{i:04d}.h5"