From: Stefan Huber Date: Fri, 2 Jan 2026 19:44:44 +0000 (+0100) Subject: Killing the delay when generating 30 day view X-Git-Url: https://git.sthu.org/?a=commitdiff_plain;h=72fd0aa69119a2c845812dd28a32f1548f5c8f72;p=oe1archive.git Killing the delay when generating 30 day view Delays for flow control are typically wrong. It should be something done by the server, instead. --- diff --git a/oe1archive b/oe1archive index 1e1c3ec..141c680 100755 --- a/oe1archive +++ b/oe1archive @@ -63,7 +63,6 @@ import re import os import requests from datetime import timedelta -import time # Add audioapi as constant: @@ -185,9 +184,6 @@ class Archive: } extended_json.append(guide_entry) - # Small delay to avoid overwhelming the API - time.sleep(0.1) - numdays = len(extended_json) print(f"Archive data loaded: {numdays} days total", file=sys.stderr)