Metadata-Version: 2.0
Name: django-response
Version: 1.0.2
Summary: Django Response Relative
Home-page: https://github.com/django-xxx/django-response
Author: Hackathon
Author-email: kimi.huang@brightcells.com
License: UNKNOWN
Description-Content-Type: UNKNOWN
Keywords: Django Response JSON
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Office/Business :: Financial :: Spreadsheet
Requires-Dist: django-json-response

===============
django-response
===============

Django Response Relative

Installation
============

::

    pip install django-response


Usage
=====

::

    from django_response import response

    def xxx(request):
        # return response()
        # return response(XXXStatusCode.YYY)
        return response(200, 'message', u'description', data={})



