This module implements the XMLFeedSpider which is the recommended spider to use for scraping from an XML feed.
See documentation in docs/topics/spiders.rst
Class | CSVFeedSpider |
Spider for parsing CSV feeds. It receives a CSV file in a response; iterates through each of its rows, and calls parse_row with a dict containing each field's data. |
Class | XMLFeedSpider |
This class intends to be the base class for spiders that scrape from XML feeds. |