Metadata-Version: 2.1
Name: django-thaad
Version: 1.0.5
Summary: Provide utils to intercept and save/redirect requests
Home-page: UNKNOWN
Author: Luis Moncaris
Author-email: lmoncarisg@gmail.com
License: UNKNOWN
Description: # Django Thaad (interceptor)
        
        
        Django thaad is a library that allows project to intercept all request in and endpoint
        and save crutial information to inspect the payload in request, also you can create
        mock responses to send back to the requester and create Fake APIs.
        
        ### How to use
        
        Add interceptor app in your settings:
        
            INSTALLED_APPS = (
                #...
                'interceptor',
                #...
              )
        
        Add interceptor urls in your main urls.py:
        
            urlpatterns = [
                #...
                path('', include('interceptor.urls', namespace='interceptor'))
                #...
            ]
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Framework :: Django :: 3.0
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Framework :: Django
Description-Content-Type: text/markdown
