reporter
This commit is contained in:
@@ -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}")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user