what is the purpose of scrapy items since they are only dictionaries? I can send dictionary (or tuple) and process it in item pipeline so shouldn't I use plain dictionaries instead, or use @dataclass (since python 3.7) since it is more convenient?
what is the purpose of scrapy items since they are only dictionaries? I can send dictionary (or tuple) and process it in item pipeline so shouldn't I use plain dictionaries instead, or use @dataclass (since python 3.7) since it is more convenient?