




This is a follow-up from my POD-igy repo.
I realized that there was no easy way to extract the RSS feeds from your podcast app. I use iTunes on my desktop for downloading my podcasts. So I created this repo that extracts the podcasts from your iTunes folder and provides you with the RSS feeds.
- Download this repo to your disk.
- Open your command prompt and navigate to this repo
- Enter the repo:
cd Podcast-Feed-Extractor
- Install the requirements:
pip install -r requirements.txt
- Find the path to your iTunes folder. By default, on Windows, it is installed at “C:\Users<user>\Music\iTunes”
- Run this code:
python3 podcast.py <path of the iTunes folder as identified in step 5>
- The output files are as follows:
- A pickle file (podcast_feed.pkl) (if you want to load the dictionary { podcast_name : rss_feed} for further manipulation in python
- A text file (error_podcasts): A text file that contains the names of podcasts whose RSS feeds could not be identified
- A text file (rss_feeds): A text file that contains the name of podcasts and the RSS URL for each podcast
Sample output files are available in the sample_outputs folder
- List of podcasts in the iTunes library
2. List of podcasts whose RSS feeds could not be extracted
3. List of podcasts with the url of the RSS feeds

Leave a Reply