I\'m brand new to Scrapy. I have learned how to use response.css() for reading specific aspects from a web page, and am avoiding learning the xpath system. It seems
response.css()
Use html-text after extracting the whole paragraph:
from html_text import extract_text for paragraph in response.css('p'): html = paragraph.get() text = extract_text(html)