Skip to content

Instantly share code, notes, and snippets.

@gileno
Created June 22, 2015 21:31
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 gileno/8579ef62f5a700ca99d4 to your computer and use it in GitHub Desktop.
Save gileno/8579ef62f5a700ca99d4 to your computer and use it in GitHub Desktop.
Scrapy post blog I
# -*- coding: utf-8 -*-
import scrapy
class GilenoFilhoSpider(scrapy.Spider):
name = "gilenofilho"
allowed_domains = ["gilenofilho.com.br"]
start_urls = (
'http://www.gilenofilho.com.br/',
)
def parse(self, response):
self.log('Hello World: {0}'.format(response.url))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment