Skip to main content

A simple podcast feed parser

Project description

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

podfeed-1.0.1.tar.gz (3.8 kB view hashes)

Uploaded Source

Built Distribution

podfeed-1.0.1-py3-none-any.whl (5.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page