I want to download the content a whole page using scrapy.
With selenium this is quite easy:
import os,sys
reload(sys)
sys.setdefaultencoding('utf8')
from selenium import webdriver
url = 'https://es.wikipedia.org/wiki/Python'
driver = webdriver.Firefox()
driver.get(url)
content = driver.page_source
with open('source','w') as output:
output.write(content)
But selenium is much slower than scrapy.
Is it an simple way to do in scrapy?
I want to save the code of each page in a different file text, not as a csv or json file. Also, if posible without creating a project, which seems a bit of overkill for such a simple task.
Code will download this page and save it in file download-a-full-page-with-scrapy.html
test_scr.py
import scrapy
class TestSpider(scrapy.Spider):
name = "test"
start_urls = [
"http://stackoverflow.com/questions/38233614/download-a-full-page-with-scrapy",
]
def parse(self, response):
filename = response.url.split("/")[-1] + '.html'
with open(filename, 'wb') as f:
f.write(response.body)
run scrapy by this command
scrapy runspider test_scr.py
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With