Metadata-Version: 1.1
Name: django-rest-multiple-models
Version: 1.6.3
Summary: Multiple model/queryset view (and mixin) for Django Rest Framework
Home-page: https://github.com/Axiologue/DjangoRestMultipleModels
Author: Matt Broach
Author-email: go.for.dover@gmail.com
License: MIT License
Description: ===
        Django Rest Multiple Model View
        ===
        
        drf-multiple-models provides an easy view (and mixin) for serializing multiple models in a single view.  It is built on top of (and meant to be an extension for) Django Rest Framework.
        
        Installation
        ------------
        
        
        1. Install the package from pip:
        
        
        pip install django-rest-multiple-models
        
        
        2. Make sure to add 'drf_multiple_model' to your INSTALLED_APPS:
        
        
        INSTALLED_APPS = (
            ....
            'drf_multiple_model',
        )
        
        
        3.  Then simply import the view into any views.py in which you'd want to use it:
        
        from drf_multiple_model.views import MultipleModelAPIView
        
        
        Usage
        -----
        
        See the included README.md or check out the documentation on Github:
        https://github.com/Axiologue/DjangoRestMultipleModels
        
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
