Metadata-Version: 2.1
Name: podfeed
Version: 1.0.1
Summary: A simple podcast feed parser
Home-page: https://github.com/mmazzocchi/podfeed
Author: Max Mazzocchi
Author-email: maxwell.mazzocchi@gmail.com
License: UNKNOWN
Keywords: podcast RSS feed parser
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Topic :: Multimedia :: Sound/Audio
Requires-Python: >=3
Description-Content-Type: text/markdown
Requires-Dist: feedparser

# 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
```python
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](https://mmazzocchi.github.io/podfeed/)

## Logging
`podfeed` uses the built-in python [logging module](https://docs.python.org/3/library/logging.html), using loggers with the top-level name `podfeed`.


