Created
September 26, 2017 03:13
-
-
Save mGalarnyk/b4d0ccaac939441a51771202ac0e1b1d to your computer and use it in GitHub Desktop.
How many additional start_urls we want for the blog post: and youtube tutorial: https://youtu.be/O_j3OTXw2_E
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| start_urls = ["https://fundrazr.com/find?category=Health"] | |
| npages = 2 | |
| # This mimics getting the pages using the next button. | |
| for i in range(2, npages + 2 ): | |
| start_urls.append("https://fundrazr.com/find?category=Health&page="+str(i)+"") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment