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