Metadata-Version: 1.1
Name: smart-queries
Version: 0.4
Summary: A simple Django app to store N+1 Queries on django views.
Home-page: https://www.example.com/
Author: Siddhesh Suthar
Author-email: siddhesh.it@gmail.com
License: BSD License
Description: =====
        Repeat Queries
        =====
        
        Smart Queries is a django package which helps django developer to avoid the N+1 queries issue by recording it and keeping a track of it per request.
        
        Detailed documentation is in the "docs" directory.
        
        Quick start
        -----------
        
        1. Add "repeat_queries" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'repeat_queries',
            ]
        
        2. Add 'repeat_queries.middleware.DuplicateQueryMiddleware', to your MIDDLEWARE settings like this : 
            MIDDLEWARE = [
                ...,
                'repeat_queries.middleware.DuplicateQueryMiddleware',
            ]
        
        
        2. Include the repeat_queries URLconf in your project urls.py like this::
        
            path('repeat_queries/', include('repeat_queries.urls')),
        
        3. Run `python manage.py migrate` to create the repeat_queries models.
        
        4. Start the development server, Hit any endpoint/view and visit http://127.0.0.1:8000/admin/ to see your data.
        
        
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.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
