Skip to content

catherinedevlin/podfeed

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

126 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

podfeed

podfeed is a python3 package that will read an RSS feed for a podcast and provide episode-level utilties for download or playlist creation.

Installation

$ pip install podfeed

Example Usage

from podfeed import parseFeed

# Collect episodes published after May 1st, 2018 
episodes = parseFeed("https://www.npr.org/rss/podcast.php?id=510289", 1525132800)

# Write each episode to a file
for episode in episodes:
  episode.writeFile("./{0}_{1}.{2}".format(
    episode.getTitle(), episode.getDate(), episode.getExt()))

Documentation

podfeed Documentation

Logging

podfeed uses the built-in python logging module, using loggers with the top-level name podfeed.

About

Python package for parsing RSS feeds for podcasts and downloading the most recent episodes.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages

  • Python 100.0%