Skip to main content

A Django podcast app optimized for Apple Podcasts

Project description

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.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page