django-itunespodcast

A Django podcast application optimized for the iTunes Store


License
BSD-3-Clause
Install
pip install django-itunespodcast==0.1.9

Documentation

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 Apple Podcasts. Formerly Django iTunes Podcast.

An online demo also exists.

Install

$ pipenv install django-applepodcast

Add to settings.py.

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

Add to urls.py.

from django.urls import include, path

urlpatterns = [
    # ...
    path('podcast/', include('podcast.urls')),
]

Migrate the database.

$ pipenv run python manage.py migrate

Load the fixtures.

$ pipenv run python manage.py loaddata podcast_category.json

Usage

Run the local server.

$ pipenv run python manage.py runserver

Visit either the show view or the admin.