Skip to content

Commit

Permalink
Added Real Python podcast
Browse files Browse the repository at this point in the history
  • Loading branch information
kissgyorgy committed Jul 17, 2020
1 parent 681fa6d commit 71b4d7d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ so it will be synced to my phone and I can listen the episodes without internet
- The Changelog (https://changelog.com/podcast)
- Podcast.\_\_init\_\_ (https://www.podcastinit.com/)
- Indie Hackers (https://www.indiehackers.com/podcast)
- Real Python (https://realpython.com/podcasts/rpp/)

## Installation

Expand Down
7 changes: 7 additions & 0 deletions podcast_dl/podcasts.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,13 @@ class Podcast:
rss="http://feeds.backtracks.fm/feeds/indiehackers/indiehackers/feed.xml",
rss_parser=IndieHackersItem,
),
Podcast(
name="realpython",
title="Real Python",
url="https://realpython.com/podcasts/rpp/",
rss="https://realpython.com/podcasts/rpp/feed",
rss_parser=BaseItem,
),
]

PODCAST_MAP = {p.name: p for p in PODCASTS}

0 comments on commit 71b4d7d

Please sign in to comment.