Scrapy tutorial to build a Craigslist crawler that scrapes engineering jobs in New York.
Check this blog post for the full Scrapy tutorial:
http://python.gotrained.com/scrapy-tutorial-web-scraping-craigslist
In Terminal or CMD, navigate to the main Scrapy project folder, and run one of the spiders:
scrapy crawl titles -o job-titles.csv
scrapy crawl jobsone -o job-one-page.csv
scrapy crawl jobsall -o job-all-pages.csv
scrapy crawl jobscontent -o job-all-pages-content.csv
Check this Scrapy tutorial to learn much more: