logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Crawl Websites - Manage Scrapy Projects | Online Free DevTools by Hexmos

Crawl websites effectively with Scrapy. Manage web scraping projects, extract data, and automate web crawling tasks. Free online tool, no registration required.

scrapy

Web-crawling framework. More information: https://scrapy.org.

  • Create a project:

scrapy startproject {{project_name}}

  • Create a spider (in project directory):

scrapy genspider {{spider_name}} {{website_domain}}

  • Edit spider (in project directory):

scrapy edit {{spider_name}}

  • Run spider (in project directory):

scrapy crawl {{spider_name}}

  • Fetch a webpage as Scrapy sees it and print the source to stdout:

scrapy fetch {{url}}

  • Open a webpage in the default browser as Scrapy sees it (disable JavaScript for extra fidelity):

scrapy view {{url}}

  • Open Scrapy shell for URL, which allows interaction with the page source in a Python shell (or IPython if available):

scrapy shell {{url}}

See Also