Metadata-Version: 2.1
Name: django-podcast
Version: 0.0.1.dev1
Summary: A small django app to easily publish podcasts
Home-page: https://github.com/hmleal/django-podcast
Author: Henrique Leal
Author-email: hm.leal@hotmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django :: 3.2
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Pillow

# django-podcast
> A small django app to easily publish podcasts

[![Build Status](https://travis-ci.org/hmleal/django-podcast.svg?branch=master)](https://travis-ci.org/hmleal/django-podcast) 

### Installation
1. Add `podcast` to your `INSTALLED_APPS` in `settings.py`
```python
INSTALLED_APPS = (
    ...
    'podcast',
)
```

2. Add these lines to your URL configuration, `urls.py`
```python
urlpatterns = (
    (r'^podcasts/', include('podcast.urls')),
)
```

### Relevant links
* [RSS 2.0 specification](https://cyber.harvard.edu/rss/rss.html)
* [DjangoAppChecklist](http://djangoappschecklist.com)
* [Feed NerdCast](https://jovemnerd.com.br/feed-nerdcast)


