Skip to content

Instantly share code, notes, and snippets.

View SudShekhar's full-sized avatar

Sudhanshu Shekhar SudShekhar

  • IIIT Hyderabad
  • Hyderabad
View GitHub Profile
@SudShekhar
SudShekhar / about.md
Last active August 6, 2017 05:06 — forked from jasonrudolph/about.md
Programming Achievements: How to Level Up as a Developer
@SudShekhar
SudShekhar / scrapyTutorialFile.py
Last active August 29, 2015 14:13
Item Loader vs normal items in scrapy
import scrapy
from tutorial.items import DmozItem
from scrapy.contrib.loader import ItemLoader
class DmozSpider(scrapy.Spider):
name="dmoz"
allowed_domains=["dmoz.org"]
start_urls=[
"http://www.dmoz.org/Computers/Programming/Languages/Python/Books/",
"http://www.dmoz.org/Computers/Programming/Languages/Python/Resources/"
]