a43edb1148
* feat: ✨ added the extraction process into the main multi threaded loop Also added a warning when the app finds existing CSV files in the combined folder * fix: 🐛 Fixed time calculations for ETA & Completion
16 lines
405 B
Python
16 lines
405 B
Python
class Config:
|
|
TAR_TOP_FOLDER = "./tar_files"
|
|
GZ_TOP_FOLDER = "./gz_files"
|
|
DAT_TOP_FOLDER = "./dat_files"
|
|
ASC_TOP_FOLDER = "./asc_files"
|
|
COMBINED_FOLDER = "./combined_files"
|
|
|
|
ZONE_FOLDER = "./zone_inputs"
|
|
|
|
delete_tar_after_processing = False
|
|
delete_gz_after_processing = True
|
|
delete_dat_after_processing = True
|
|
delete_asc_after_processing = True
|
|
|
|
BATCH_SIZE = 5
|