Metadata-Version: 2.0
Name: djangorestframework-rapidjson
Version: 0.1.3
Summary: Provides rapidjson support with parser and renderer
Home-page: https://github.com/allisson/django-rest-framework-rapidjson
Author: Allisson Azevedo
Author-email: allisson@gmail.com
License: UNKNOWN
Description-Content-Type: UNKNOWN
Keywords: djangorestframework rest json
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
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.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: python-rapidjson (>=0.2.5)
Requires-Dist: djangorestframework (>=3.5.4)

djangorestframework-rapidjson
=============================

Provides rapidjson support with parser and renderer.

.. image:: https://travis-ci.org/allisson/django-rest-framework-rapidjson.svg?branch=master
    :target: https://travis-ci.org/allisson/django-rest-framework-rapidjson

.. image:: https://img.shields.io/pypi/v/djangorestframework-rapidjson.svg
        :target: https://pypi.python.org/pypi/djangorestframework-rapidjson
        :alt: Latest Version

.. image:: https://img.shields.io/pypi/pyversions/djangorestframework-rapidjson.svg
        :target: https://pypi.python.org/pypi/djangorestframework-rapidjson
        :alt: Supported Python versions


How to install
--------------

.. code:: shell

    pip install djangorestframework-rapidjson


How to use
----------

Update django rest framework config

.. code:: python

    REST_FRAMEWORK = {
        'DEFAULT_RENDERER_CLASSES': (
            'rest_framework_rapidjson.renderers.RapidJSONRenderer',
        ),
        'DEFAULT_PARSER_CLASSES': (
            'rest_framework_rapidjson.parsers.RapidJSONParser',
        )
    }


