Last active
September 5, 2021 03:26
-
-
Save thepycoach/9893fc312f60a4bb350fa47a44397706 to your computer and use it in GitHub Desktop.
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
| import scrapy | |
| class WorldometersSpider(scrapy.Spider): | |
| name = 'worldometers' | |
| allowed_domains = ['www.worldometers.info'] | |
| start_urls = ['https://www.worldometers.info/world-population/population-by-country/'] | |
| def parse(self, response): | |
| pass |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment