forked from MattBroach/DjangoRestMultipleModels
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPYPI_README.rst
More file actions
36 lines (19 loc) · 736 Bytes
/
PYPI_README.rst
File metadata and controls
36 lines (19 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
===
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