Skip to content

Commit eaa803c

Browse files
authored
Add files via upload
1 parent 51faf3f commit eaa803c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Scrapy/fundrazr/fundrazr/spiders/fundrazr_scrape.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class Fundrazr(scrapy.Spider):
1313
npages = 2
1414

1515
# This mimics getting the pages using the next button.
16-
for i in range(2, npages +1 ):
16+
for i in range(2, npages + 2):
1717
start_urls.append("https://fundrazr.com/find?category=Health&page="+str(i)+"")
1818

1919
def parse(self, response):

0 commit comments

Comments
 (0)