Metadata-Version: 1.1
Name: Django-api-base
Version: 0.2
Summary: A simple Django app to make the RESTFULL APIs
Home-page: http://www.maneeshvshaji.in/
Author: Maneesh
Author-email: maneeshvettukattil@gmail.com
License: Free
Description: =====
        django-api-base
        =====
        
        django-api-base is simple django package that can be used to build RESTFUL web api's with django
        
        Detailed documentation is in the "docs" directory.
        
        Quick start
        -----------
        
        1. Add "django_api_base" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'django_api_base',
            ]
        
        2. Run `python manage.py migrate` to create the UserProfile model which can be used as a user profile model in your django project.
        
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.10
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
