Web Scraping in Python
Thomas Laetsch, PhD
Data Scientist, NYU
from scrapy import Selector
import requests
url = 'https://en.wikipedia.org/wiki/Web_scraping'
html = requests.get( url ).content
sel = Selector( text = html )
Web Scraping in Python