Metadata-Version: 1.1
Name: dj-tiny-api
Version: 0.1.1
Summary: A tiny toolkit to implement HTTP APIs using Django.
Home-page: https://github.com/oeegor/dj-tiny-api
Author: Egor Orlov
Author-email: oeegor@gmail.com
License: MIT License
Description: # dj-tiny-api
        
        A tiny toolkit to implement HTTP APIs using Django.
        
        Basic Usage
        ===========
        
            # in views.py
            from dj_tiny_api import Endpoint
        
        
            @Endpoint(
                url=r'^api/v1/foo/?$',
                methods=['GET', 'POST'],
            )
            def foo_view()
                return {'foo': 'bar'}
        
            # this will return response with body
            {"data": {"foo": "bar"}, "error": null}
        
        
        
Platform: any
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 :: 2.7
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
