Skip to content

Instantly share code, notes, and snippets.

@thepycoach
Last active September 5, 2021 03:26
Show Gist options
  • Select an option

  • Save thepycoach/9893fc312f60a4bb350fa47a44397706 to your computer and use it in GitHub Desktop.

Select an option

Save thepycoach/9893fc312f60a4bb350fa47a44397706 to your computer and use it in GitHub Desktop.
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