Metadata-Version: 1.1
Name: django-adhara
Version: 0.1
Summary: A foundation for Django REST API with many other functionalities.
Home-page: UNKNOWN
Author: Rohit Reddy Abbadi
Author-email: rohit@documerge.io
License: BSD License
Description-Content-Type: UNKNOWN
Description: =====
        Adhara
        =====
        
        Adhara in sanskrit meaning base/foundation, is a foundation for using Django as a Rest API provider.
        Not just as a rest API provider, but much more.
        Adhara handles sessions over Django sessions, events to fire to Android, Web, IOS, etc.
        Also Adhara provides abstract models that can be extended to implementing apps to provide full REST API support.
        
        Detailed documentation is in the "docs" directory.
        
        Quick start
        -----------
        
        1. Add "adhara" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'adhara',
            ]
        
        2. Include the polls URLconf in your project urls.py like this::
        
            url(r'^adhara/', include('adhara.urls')),
        
        3. Run the following command to create the adhara Event models.::
        
            python manage.py migrate
        
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.11
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD 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: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
