Skip to content

Instantly share code, notes, and snippets.

@ThibaudLamothe
Created February 1, 2021 15:29
Show Gist options
  • Save ThibaudLamothe/a79dce80cf2401c908651e12767eb174 to your computer and use it in GitHub Desktop.
Save ThibaudLamothe/a79dce80cf2401c908651e12767eb174 to your computer and use it in GitHub Desktop.
import scrapy
class WcaSpider(scrapy.Spider):
name = 'wca'
allowed_domains = ['worldcubeassociation.org']
start_urls = ['http://worldcubeassociation.org/']
def parse(self, response):
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment