Django Apple Podcast is a Django podcast application optimized for Apple Podcasts. Formerly Django iTunes Podcast.
An online demo also exists.
$ 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
Run the local server.
$ pipenv run python manage.py runserver
Visit either the show view or the admin.