initial commit and version 1.0

This commit is contained in:
2025-04-21 15:14:03 +02:00
commit ae6b2bbf44
82 changed files with 10782 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)