Skip to content

Instantly share code, notes, and snippets.

@mottet-dev
Created August 23, 2018 20:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mottet-dev/a4d8c54c198ce3fb3bd5209ff82854c8 to your computer and use it in GitHub Desktop.
Save mottet-dev/a4d8c54c198ce3fb3bd5209ff82854c8 to your computer and use it in GitHub Desktop.
import scrapy
class CoinSpider(scrapy.Spider):
name = "coin"
def start_requests(self):
url = "https://coinmarketcap.com/all/views/all/"
yield scrapy.Request(url=url, callback=self.parse)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment