diff --git a/21 poslednich 100k.py b/21 poslednich 100k.py index 7383083..666c373 100644 --- a/21 poslednich 100k.py +++ b/21 poslednich 100k.py @@ -15,8 +15,9 @@ def sanitize(value): # ================= CONFIG ================= GROUP = "alt.binaries.e-book.magazines" -TOTAL_ARTICLES = 50_000_000 -BATCH_SIZE = 10_000 +TOTAL_ARTICLES = 75_000_000 +BATCH_SIZE = 1_000 +FIRST=40805000 # ========================================= load_dotenv() @@ -43,8 +44,10 @@ with nntplib.NNTP_SSL( first = int(first) last = int(last) - start_global = first - end_global = min(first + TOTAL_ARTICLES - 1, last) + # start_global = first + start_global = FIRST + # end_global = min(first + TOTAL_ARTICLES - 1, last) + end_global = last print(f"🎯 Target range: {start_global} – {end_global}")