django-requests-logger is a Django application used as a hook for Requests.
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.
pip install django-requests-logger
Add django_requests_logger
in INSTALLED_APPS.
Run python manage.py migrate
import requests
from django_requests_logger.callbacks import logger as requests_logger
from functools import partial
# If you want to capture only errors (HTTP 4XX client errors and 5XX server errors), then pass only_errors argument set to True.
hooks = {"response": partial(requests_logger, only_errors=True)}
requests.get('https://httpbin.org/', hooks=hooks)
Integrate this application in the Django logging as a handler.
- Fork it ( https://github.com/GearPlug/django-requests-logger )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Adds my new feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request