FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
Building a Podcast Guest Tracker Across Shows and Platforms
How-ToWeb Development

Building a Podcast Guest Tracker Across Shows and Platforms

via Dev.to Tutorialagenthustler4h ago

Building a Podcast Guest Tracker Across Shows and Platforms Tracking who appears on which podcasts reveals influence networks, trending experts, and booking patterns. Let's build a Python scraper that monitors podcast guests across platforms. Data Sources Podcast RSS feeds — Direct access to episode metadata Apple Podcasts — Episode descriptions with guest names ListenNotes API — Podcast search engine with API Setting Up pip install requests beautifulsoup4 feedparser pandas spacy python3 -m spacy download en_core_web_sm Parsing RSS Feeds Every podcast has an RSS feed — the most reliable data source: import feedparser def parse_podcast_feed ( feed_url ): feed = feedparser . parse ( feed_url ) episodes = [] for entry in feed . entries : episodes . append ({ " title " : entry . get ( " title " , "" ), " published " : entry . get ( " published " , "" ), " summary " : entry . get ( " summary " , "" ), " duration " : entry . get ( " itunes_duration " , "" ), " link " : entry . get ( " link "

Continue reading on Dev.to Tutorial

Opens in a new tab

Read Full Article
0 views

Related Articles

Samsung Galaxy S26 and Galaxy S26+ Review: Lacking Ambition
How-To

Samsung Galaxy S26 and Galaxy S26+ Review: Lacking Ambition

Wired • 51m ago

5 kitchen splurges that I can't recommend enough
How-To

5 kitchen splurges that I can't recommend enough

ZDNet • 1h ago

Here’s how to rank the 50 best Apple products ever
How-To

Here’s how to rank the 50 best Apple products ever

The Verge • 1h ago

Fix Payment and Tax Issues in Museum Ticketing Software
How-To

Fix Payment and Tax Issues in Museum Ticketing Software

Dev.to Beginners • 2h ago

Difficulty vs Confusion in Tactical Games
How-To

Difficulty vs Confusion in Tactical Games

Medium Programming • 3h ago

Discover More Articles