Skip to content

rfleschenberg/django-itunespodcast

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

75 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

image

Django iTunes Podcast

PyPI version_ Build status_

Django iTunes Podcast is a Django podcast application optimized for the iTunes Store.

An online demo also exists.

Install

$ pip install django-itunespodcast

Add to settings.py.

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

Add to urls.py.

from django.conf.urls import url, include

urlpatterns = [
    # ...
    url(r'^podcast/', include('podcast.urls')),
]

Migrate the database.

$ python manage.py migrate

Load the fixtures.

$ python manage.py loaddata podcast_category.json

Usage

Run the local server.

$ python manage.py runserver

Visit either the show view or the admin.

About

A Django podcast app optimized for the iTunes Store

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 88.8%
  • HTML 11.2%