Update web_scraper.py
Browse files- web_scraper.py +1 -1
web_scraper.py
CHANGED
@@ -147,7 +147,7 @@ def scrape_site_content(query, num_sites=5):
|
|
147 |
|
148 |
try:
|
149 |
# Get more URLs than needed to account for failures
|
150 |
-
search_results = list(search(query,
|
151 |
|
152 |
# Process each found URL
|
153 |
for url in search_results:
|
|
|
147 |
|
148 |
try:
|
149 |
# Get more URLs than needed to account for failures
|
150 |
+
search_results = list(search(query, num=num_sites * 2))
|
151 |
|
152 |
# Process each found URL
|
153 |
for url in search_results:
|