Metadata-Version: 1.1
Name: django-requests-logger
Version: 0.1.3
Summary: A django integration for requests.
Home-page: https://github.com/GearPlug/django-requests-logger
Author: Miguel Ferrer
Author-email: ingferrermiguel@gmail.com
License: MIT
Description-Content-Type: text/markdown
Description: # django-requests-logger
        
        django-requests-logger is a Django application used as a hook for [Requests](http://docs.python-requests.org/en/master/).
        
        It logs every request made using the Requests library to the database and provides basic data masking for sensitive information.
        
        You can access the logs in the Django admin site.
        
        ## Installing
        ```
        pip install django-requests-logger
        ```
        
        Add `django_requests_logger` in INSTALLED_APPS.
        
        Run `python manage.py migrate`
        
        ## Usage
        ```
        import requests
        from django_requests_logger.callbacks import logger as requests_logger
        
        requests.get('https://httpbin.org/', hooks={'response': requests_logger})
        ```
        
        ## TODO
        Integrate this application in the Django logging as a handler.
        
        ## Requirements
        * [Django](https://github.com/django/django)
        * [requests](https://github.com/requests/requests)
        
        #### If you want to add yourself some functionality to the application:
        1. Fork it ( https://github.com/GearPlug/django-requests-logger )
        2. Create your feature branch (git checkout -b my-new-feature)
        3. Commit your changes (git commit -am 'Adds my new feature')
        4. Push to the branch (git push origin my-new-feature)
        5. Create a new Pull Request
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.0
Classifier: Framework :: Django :: 2.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT 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
