This commit is contained in:
michaela.buzalkova
2025-11-17 11:28:31 +01:00
parent a210f801d3
commit ea32ea0bc1
5 changed files with 261 additions and 5 deletions

View File

@@ -12,6 +12,14 @@ Spustí všechny PRAVIDELNÉ skripty v daném pořadí:
5) PRAVIDELNE_5_SaveToFileSystem incremental.py
"""
import time, socket
for _ in range(30):
try:
socket.create_connection(("127.0.0.1", 3307), timeout=3).close()
break
except OSError:
time.sleep(10)
import sys
import subprocess
from pathlib import Path