initial commit, version 1.0

This commit is contained in:
2025-04-21 18:57:43 +02:00
commit 6becd19bb0
24 changed files with 106328 additions and 0 deletions

9
log.py Normal file
View File

@@ -0,0 +1,9 @@
import json
# Send the status to the console for interpretation
def log_step(step, progress, message):
print(json.dumps({
"step": step,
"progress": progress,
"message": message
}), flush=True)