notebookvb

This commit is contained in:
Vladimir Buzalka
2026-04-29 06:51:47 +02:00
parent a1b9c93506
commit a9c143ba24
141 changed files with 30711 additions and 0 deletions
@@ -0,0 +1,16 @@
import sys
from datetime import datetime
# Vypíšeme všechny argumenty, které Medicus předal
print("=== Medicus → Python argument test ===")
print(f"🕓 {datetime.now().strftime('%Y-%m-%d %H:%M:%S')}")
print()
for i, arg in enumerate(sys.argv):
print(f"Arg {i}: {arg!r}")
# A uložíme i do souboru pro jistotu
with open(r"u:\Dropbox\!!!Days\Downloads Z230\received_from_medicus.txt", "a", encoding="utf-8") as f:
f.write(f"\n--- {datetime.now().strftime('%Y-%m-%d %H:%M:%S')} ---\n")
for i, arg in enumerate(sys.argv):
f.write(f"Arg {i}: {arg!r}\n")
@@ -0,0 +1,2 @@
@echo off
"C:\Python\python.exe" "U:\medicus\Přenos_argumentů_MEDICUS\10_Receiver.py" %*