Skip to content

Instantly share code, notes, and snippets.

View jmlares's full-sized avatar
👌
OK

Jessica Lares jmlares

👌
OK
View GitHub Profile
@jmlares
jmlares / calibre_newsfilter.py
Last active November 4, 2016 19:16
Filter articles in Calibre news recipes by URLs and titles
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)
@jmlares
jmlares / jamapi_allmusic.md
Last active May 25, 2017 15:11
Parse AllMusic Album Overviews on Jam API

Parse AllMusic Album Overviews on Jam API

Parse information from an album's overview page on AllMusic with Jam API

Keys:
  • album artist
  • album title
  • allmusic review author
  • allmusic rating (Returns a value between 1 and 10)