Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@BetterProgramming
Created May 14, 2019 12:40
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 BetterProgramming/2a1e911918afda5bb3afd592044fc5a9 to your computer and use it in GitHub Desktop.
Save BetterProgramming/2a1e911918afda5bb3afd592044fc5a9 to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
import scrapy
class ElectronicsSpider(scrapy.Spider):
name = "electronics"
allowed_domains = ["www.olx.com.pk"]
start_urls = ['http://www.olx.com.pk/']
def parse(self, response):
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment