Mock Express server generated based on your views, that can come in handy when developing REST APIs with Django
Project description
Django REST Mock
Mock Express server generated based on your views, that can come in handy when developing REST APIs with Django.
Requirements
Requires Django 1.11 or later and Node.js.
Installation
Using pip:
$ pip install django-rest-mock
Then include rest_mock_server into your INSTALLED_APPS:
INSTALLED_APPS = ( ... 'rest_mock_server', ... )
Usage
Generates an ExpressJS file:
$ python manage.py genmockserver
Starts an ExpressJS server (it will generate an ExpressJS file if necessary):
$ python manage.py startmockserver [--file]
–file (Optional): Specifies ExpressJS file to be used
Example
Let’s say you have an app with the following views.py, you will need to include the following syntax in your docstrings:
class SomeView(APIView): """ URL: /some-view/ """ def get(self, request, *args, **kwargs): """ ``` { "data": "Hello, world!" } ``` """ pass
And then you run python manage.py genmockserver, you will get an index.js generated in your current directory
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-rest-mock-0.2.0.tar.gz
.
File metadata
- Download URL: django-rest-mock-0.2.0.tar.gz
- Upload date:
- Size: 10.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6a343bd8cb584f6094300f74fc9396875d33d6ed651060ac75c7532240c8420f |
|
MD5 | a1be01198f68260bef4281bbc3d097ec |
|
BLAKE2b-256 | 14fe792632669d782b696ace4c641628a2806a09b5de33e1c8696c2636fa0fac |