Skip to content

Instantly share code, notes, and snippets.

@gileno
Created June 22, 2015 22:42
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/e533443087a86b4a5fb5 to your computer and use it in GitHub Desktop.
Save gileno/e533443087a86b4a5fb5 to your computer and use it in GitHub Desktop.
Scrapy blog post III
# -*- coding: utf-8 -*-
import scrapy
class OlxSpider(scrapy.Spider):
name = "olx"
allowed_domains = ["pe.olx.com.br"]
start_urls = (
'http://pe.olx.com.br/imoveis/aluguel',
)
def parse(self, response):
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment