import scrapy
class Spider(scrapy.Spider):
name = "SPIDER_NAME"
start_urls = [
'https://www.example.com/'
]
def parse(self, response):
filename = 'url-info'
with open(filename, 'wb') as f:
f.write(response.body)
# Windows 10
# Visual Studio Code - In TERMINAL
scrapy crawl SPIDER_NAME
'''
run:
<!doctype html>
<html>
<head>
<title>...
'''