Django comes with a syndication feed framework that allows you to create Really Simple Syndication (RSS) and Atom feeds. RSS and Atom feeds are XML documents with specific semantics. They can be subscribed to an RSS reader, such as Feedly, or they can be aggregated in other websites, mobile applications, or desktop applications. In this recipe, we will create an RSS feed that provides information about songs. Moreover, the results will be filterable by URL query parameters.
Creating filterable RSS feeds
Getting ready
Start by creating the music app from the Importing data from a local CSV file and Preparing paginated sitemaps for search engines recipes. Specifically, follow the steps in the Getting ready section to set up...