Skip to content

Commit 3612c0c

Browse files
committed
add time travel (small fix)
1 parent 1a06373 commit 3612c0c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scrape_tags.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def get_aliases(url,type):
9696
# create alias dictionary
9797
try:
9898
aliases = collections.defaultdict(list)
99-
for page in range(1,5):
99+
for page in range(1,1001):
100100
# Update the URL with the current page
101101
url = f'{url}&page={page}'
102102
# Fetch the JSON data
@@ -127,7 +127,7 @@ def get_aliases(url,type):
127127
if "d" in boards:
128128
dan_tags = {}
129129
try:
130-
for page in range(1, 5):
130+
for page in range(1,1001):
131131
# Update the URL with the current page
132132
url = f'{base_url}&page={page}'
133133
# Fetch the JSON data
@@ -162,7 +162,7 @@ def get_aliases(url,type):
162162
if "e" in boards:
163163
e6_tags = {}
164164
try:
165-
for page in range(1, 2):
165+
for page in range(1,1001):
166166
# Update the URL with the current page
167167
url = f'{e6_base_url}&page={page}'
168168
# Fetch the JSON data
@@ -189,7 +189,7 @@ def get_aliases(url,type):
189189
except Complete:
190190
print(f'All tags with {minimum_count} posts or greater have been scraped.')
191191

192-
# e6 tags are fucked, a proper solution would take ~10 hours per list and I'm not going that far for furries
192+
# e6 tags are fucked, a proper solution would take ~10 hours to run per list and I'm not going that far for furries
193193
#if "e" in boards:
194194
# e6_aliases = get_aliases(e6_alias_url, "e")
195195
# backdate(e6_tags,e6_aliases,max_date)

0 commit comments

Comments
 (0)