This commit is contained in:
2026-02-25 12:28:28 +01:00
parent dc2e8c2270
commit 186e721bb1
3 changed files with 43 additions and 12 deletions

View File

@@ -76,4 +76,7 @@ def execute(conn, sources: list, target: str):
print(f"\n\033[31mFehler: {e}\033[0m")
total_duration = time.monotonic() - start_time_all
print(f"\nAlle {len(resolved_files)} Dateien in {total_duration:.1f}s übertragen.")
total_kb = total_size_all / 1024
avg_speed = total_kb / total_duration if total_duration > 0 else 0
print(f"\nÜbertragung abgeschlossen: {total_kb:.1f} KB in {total_duration:.1f}s ({avg_speed:.1f} KB/s)")