The Picky Fingers Banjo Podcast

From PickiPedia: A knowledge base of bluegrass, old time psychedelic jams, and other public domain music
Jump to navigationJump to search
Bluegrass Jam Along
Host Matt Hutchinson
Website Official site
RSS Feed

Hosted by Keith Billik.

Latest Episodes

Failed to load RSS feed from http://feeds.libsyn.com/116948/rss: Error parsing XML for RSS

Guest name patterns

These are used by the Bluegrass Podcast Firehose to pull guest names out of episode titles. They are tried in order and the first match wins, so the specific ones belong above the general ones.[unverified]

  • A line starting with skip: marks episodes that have no guest — a backing track, a monologue, a festival announcement. Skipping them is not the same as failing to parse them, and keeping the two apart is what makes the unmatched list worth reading.[unverified]
  • A line starting with # is a comment.[unverified]
  • Anything else is a Python regular expression with a named group (?P<guest>...) around the part to capture.[unverified]

Edit these freely. A pattern that does not compile is skipped and logged rather than breaking the feed, so a mistake here costs one show's guest names until somebody fixes it — never the feed itself.[unverified]

^#\d+\s*[-–]\s*"[^"]*"\s+(?:feat\.?|Feat\.?)\s+(?P<guest>.+)$
^#\d+\s*[-–]\s*"[^"]*"\s+(?:by|Revisited!\s*Feat\.?)\s+(?P<guest>.+)$
^#\d+\s*[-–]\s*(?:In Memoriam:\s*)?(?P<guest>[A-Z][\w'\-]+(?: [A-Z][\w'\-]+)*).*$
^BONUS\s*[-–]\s*(?:Fireside Chat w/\s*)?(?P<guest>[A-Z][\w'\-]+(?: [A-Z][\w'\-]+)*).*$
^Bonus\s*[-–]\s*(?P<guest>[A-Z][\w'\-]+(?: [A-Z][\w'\-]+)*).*$
^REPLAY\s*[-–]\s*(?P<guest>[A-Z][\w'\-]+(?: [A-Z][\w'\-]+)*).*$
^#\d+\s*[-–]\s*Dueling .+feat\.?\s*(?P<guest>.+)$
# Non-guest bonus eps
skip: ^Bonus\s*[-–]\s*(?:Who is|Eli)

[unverified]