/django-applepodcast

A Django podcast app optimized for Apple Podcasts

Primary LanguagePythonBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

https://django-applepodcast.readthedocs.io/en/latest/_images/logo.svg?

Django Apple Podcast

PyPI version Build status

Django Apple Podcast is a Django podcast application optimized for the Apple Podcasts. Formerly Django iTunes Podcast.

An online demo also exists.

Install

$ pip install django-applepodcast

Add to settings.py.

INSTALLED_APPS = [
    # ...
    'podcast',
]

Add to urls.py.

from django.conf.urls import url, include

urlpatterns = [
    # ...
    url(r'^podcast/', include('podcast.urls')),
]

Migrate the database.

$ python manage.py migrate

Load the fixtures.

$ python manage.py loaddata podcast_category.json

Usage

Run the local server.

$ python manage.py runserver

Visit either the show view or the admin.