diff --git a/.idea/.gitignore b/.idea/.gitignore
deleted file mode 100644
index 26d3352..0000000
--- a/.idea/.gitignore
+++ /dev/null
@@ -1,3 +0,0 @@
-# Default ignored files
-/shelf/
-/workspace.xml
diff --git a/.idea/NewsGroups.iml b/.idea/NewsGroups.iml
deleted file mode 100644
index 0e5de3a..0000000
--- a/.idea/NewsGroups.iml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml
deleted file mode 100644
index c53b08f..0000000
--- a/.idea/inspectionProfiles/Project_Default.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml
deleted file mode 100644
index 105ce2d..0000000
--- a/.idea/inspectionProfiles/profiles_settings.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/modules.xml b/.idea/modules.xml
deleted file mode 100644
index 2075ecb..0000000
--- a/.idea/modules.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
deleted file mode 100644
index 94a25f7..0000000
--- a/.idea/vcs.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/21 poslednich 100k.py b/21 poslednich 100k.py
index 7383083..0d3e2b2 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 = 50_000
+FIRST=70805000
# =========================================
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}")