Metadata-Version: 1.1
Name: django-rest-camel
Version: 0.3.3
Summary: Camel case support for Django REST Framework.
Home-page: https://github.com/dekoza/djangorestframework-camel-case
Author: Dominik Kozaczko
Author-email: dominik@kozaczko.info
License: BSD
Description: =====================================
        Django REST Framework CamelCase magic
        =====================================
        
        .. image:: https://badge.fury.io/py/django-rest-camel.png
            :target: http://badge.fury.io/py/django-rest-camel
            
        .. image:: https://img.shields.io/pypi/v/django-rest-camel.svg
            :target: https://img.shields.io/pypi/v/django-rest-camel.svg
        
        
        Camel case support for Django REST framework - right now only JSON is supported.
        
        This project is a "resurrection fork" of djangorestframework-camel-case_ by Vitaly Babiy
        
        .. _djangorestframework-camel-case https://github.com/vbabiy/djangorestframework-camel-case
        
        ============
        Installation
        ============
        
        At the command line::
        
            $ pip install django-rest-camel
        
        Add the render and parser to your django settings file.
        
        .. code-block:: python
        
            # ...
            REST_FRAMEWORK = {
        
                'DEFAULT_RENDERER_CLASSES': (
                    'rest_camel.render.CamelCaseJSONRenderer',
                    # Any other renders
                ),
        
                'DEFAULT_PARSER_CLASSES': (
                    'rest_camel.parser.CamelCaseJSONParser',
                    # Any other parsers
                ),
            }
            # ...
        
        =============
        Running Tests
        =============
        
        To run the current test suite, execute the following from the root of he project::
        
            $ tox
        
        =======
        License
        =======
        
        * Free software: BSD license
        
        
        
        
        History
        -------
        
        0.3.0 (2017-05-26)
        ++++++++++++++++++
        
        * Fork of the project to maintain development
        * Drop Py26, Py33 and Py34 support
        * Drop DRF<3.0 support
        
        0.1.0 (2013-12-20)
        ++++++++++++++++++
        
        * First release on PyPI.
        
Keywords: djangorestframework_camel django rest camelcase camel
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
