Skip to content

Instantly share code, notes, and snippets.

View axi0m's full-sized avatar
⚗️
Experimenting with code

Kevin Dienst axi0m

⚗️
Experimenting with code
View GitHub Profile
@axi0m
axi0m / download_podcast_episodes.py
Last active March 28, 2022 18:23
Download podcast episodes from RSS feed
#!/usr/bin/python3
import feedparser
import argparse
import requests
import sys
from rich.console import Console
from os import listdir
from os.path import isfile, join
from pathlib import Path
from pathlib import PurePath