From 9bfe06a8509e77c0a8014032f220a853da90eab8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anton=20Luka=20=C5=A0ijanec?= Date: Mon, 7 Nov 2022 22:39:56 +0100 Subject: 200000-999999 removed from server, added check to skip them --- gather.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gather.py b/gather.py index 2992ae0..6b5cd36 100755 --- a/gather.py +++ b/gather.py @@ -104,6 +104,9 @@ try: elif r.text.startswith(''): logger.warning(f"received urllink parameter syntax error with no usable data for acsm {acsm_id}, so I did not store anything") force_acsm_id = acsm_id+1 + if acsm_id >= 199999: + logger.warning(f"on 2022-11-07, library removed access for acsms 200000-999999. skipping to 1000000") + force_acsm_id = 1000000 failed_acsms += 1 else: try: -- cgit v1.2.3