Skip to content

Commit

Permalink
Added support for Kubernetes Podcast
Browse files Browse the repository at this point in the history
  • Loading branch information
kissgyorgy committed Feb 5, 2021
1 parent 9d2a2f8 commit 2c93d1a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ so it will be synced to my phone and I can listen the episodes without internet
- Podcast.\_\_init\_\_ (https://www.podcastinit.com/)
- Indie Hackers (https://www.indiehackers.com/podcast)
- Real Python (https://realpython.com/podcasts/rpp/)
- Kubernetes Podcast (https://kubernetespodcast.com/)

## 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 @@ -57,6 +57,13 @@ class Podcast:
rss="https://realpython.com/podcasts/rpp/feed",
rss_parser=BaseItem,
),
Podcast(
name="kubernetespodcast",
title="Kubernetes Podcast",
url="https://kubernetespodcast.com/",
rss="https://kubernetespodcast.com/feeds/audio.xml",
rss_parser=BaseItem,
),
]

PODCAST_MAP = {p.name: p for p in PODCASTS}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "simple-podcast-dl"
version = "1.4"
version = "1.5"
description = "Simple podcast downloader (podcatcher)"
authors = ["Kiss György <kissgyorgy@me.com>"]
repository = "https://github.com/kissgyorgy/simple-podcast-dl"
Expand Down

0 comments on commit 2c93d1a

Please sign in to comment.