django-media

A basic Django application to store and manage media.


License
Other
Install
pip install django-media==1.0.1

Documentation

django-media

A reusable Django application to store and manage media. This application was originally created by Nathan Borror for django-basic-apps, his collection of simple prebuilt Django applications.

How it Works

Models are included for storing audio, photos, and video, as well as sets of these three objects. URLs (using generic views) and templates are included for displaying these objects.

Requirements

Installation

django-media is available on PyPI and can be installed with PIP.

pip install django-media

Alternatively, you may download the source and install it.

python setup.py install

Setup

Add media to your settings.INSTALLED_APPS.

URLs

If you wish to use the default URL structure, you may do so by adding them to your project's URL patterns. For example:

urlpatterns = patterns('',
    ...
    (r'^photos/', include('media.urls.photos')),