The goal of scraping is to extract data from websites. Without Scrapy Items, we return unstructured data in the form of Python dictionaries.
Luckily, Scrapy provides us with the Item class: A class we can inherit to make our data more structured and stronger, yielding a Python object.
Continue Reading