django-applepodcast 0.3.7

Creator: danarutscher

Last updated:

Add to Cart

Description:

djangoapplepodcast 0.3.7

Django Apple Podcast

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

Package distribution
Code repository
Documentation
Tests

An online demo also exists.

Online demo
Online demo code repository


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.

http://127.0.0.1:8000/podcast/
http://127.0.0.1:8000/admin/podcast/

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.