Parse information from an album's overview page on AllMusic with Jam API
- album artist
- album title
- allmusic review author
- allmusic rating (Returns a value between 1 and 10)
| def parse_feeds(self): | |
| feeds = BasicNewsRecipe.parse_feeds(self) | |
| for feed in feeds: | |
| for article in feed.articles[:]: | |
| if 'this.com' in article.url: | |
| feed.articles.remove(article) |
Parse information from an album's overview page on AllMusic with Jam API