Metadata-Version: 1.1
Name: django-mediamosa
Version: 0.0.1c2
Summary: Django integration support for the mediamosa api.
Home-page: https://github.com/UGentPortaal/django-mediamosa
Author: UGent Portaal Team
Author-email: portaal-tech@ugent.be
License: BSD
Description: ================
        django-mediamosa
        ================
        
        django integration for a mediamosa (http://www.mediamosa.org) api.
        
        Currently this version only support setting up the API in settings.py
        and has some examples in the urls.py and views.py file to illustrate how
        this can be used.
        
        ------------
        Installation
        ------------
        
        Install django-mediamosa as follows:
        
        ::
        
           pip install django-mediamosa
        
        
        -------------
        Configuration
        -------------
        
        Add the following config to your project's settings.py:
        
        .. code:: python
        
            MEDIAMOSA_URL = 'http://apivideo.example.com'
            MEDIAMOSA_USERNAME = 'USERNAME'
            MEDIAMOSA_PASSWORD = 'PASSWORD'
        
        -----
        Usage
        -----
        
        You can start using the api in your views by importing the 'api' object
        as follows:
        
        .. code:: python
        
            from django_mediamosa.base import api
        
        -------------------------
        Bugs and Feature requests
        -------------------------
        
        For help, issues and feature requests, please go to http://www.github.com/UGentPortaal/django-mediamosa.
        
        ------------
        Contributing
        ------------
        
        Pull requests may be submitted to the develop branch at our github
        project. Make sure the code and functionality are sufficiently
        documented.
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Multimedia :: Video
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities
