Created
February 3, 2020 18:41
-
-
Save sagunsh/e264cb1f7d9409dba78f57828683aa6e 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
# -*- coding: utf-8 -*- | |
import scrapy | |
class RssScraperSpider(scrapy.Spider): | |
name = 'rss_scraper' | |
allowed_domains = ['examplenews.com'] | |
start_urls = ['http://examplenews.com/'] | |
def parse(self, response): | |
pass |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment