Examples (7)
Create a project
scrapy startproject project_nameCreate a spider (in project directory)
scrapy genspider spider_name website_domainRun spider (in project directory)
scrapy crawl spider_nameFetch a webpage as Scrapy sees it and print the source to `stdout`
scrapy fetch urlOpen a webpage in the default browser as Scrapy sees it (disable JavaScript for extra fidelity)
Open Scrapy shell for URL, which allows interaction with the page source in a Python shell (or IPython if available)
scrapy shell urlmade by @shridhargupta | data from tldr-pages