Skip to content

richardcornish/django-applepodcast

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

A Django podcast app optimized for Apple Podcasts

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published