All Projects → ENERGYLINX → django-debug-toolbar-requests

ENERGYLINX / django-debug-toolbar-requests

Licence: BSD-3-Clause License
A Django Debug Toolbar panel for most popular http library requests.

Programming Languages

python
139335 projects - #7 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to django-debug-toolbar-requests

fastrates
💵 Free & open source API service for current and historical foreign exchange rates.
Stars: ✭ 26 (+62.5%)
Mutual labels:  requests
reqwasm
HTTP requests library for WASM Apps
Stars: ✭ 81 (+406.25%)
Mutual labels:  requests
rigor
HTTP-based DSL for for validating RESTful APIs
Stars: ✭ 65 (+306.25%)
Mutual labels:  requests
python-ogren-4-saatte-python-baslangic
(TR) 4 saatlik Python başlangıç atölyesinin içerik dokümanı. (EN version is in progress!)
Stars: ✭ 71 (+343.75%)
Mutual labels:  requests
Web-crawler-engineer-for-Python
Web-crawler-engineer-for-Python
Stars: ✭ 42 (+162.5%)
Mutual labels:  requests
YouTube-Tutorials--Italian
📂 Source Code for (some of) the Programming Tutorials from my Italian YouTube Channel and website ProgrammareInPython.it. This is just a small portion of the content: please visit the website for more.
Stars: ✭ 28 (+75%)
Mutual labels:  requests
image-crawler
An image scraper that scraps images from unsplash.com
Stars: ✭ 12 (-25%)
Mutual labels:  requests
wappdriver
Wondering how to send WhatsApp messages using Python using only 3 lines of code? You have come to the right place!
Stars: ✭ 40 (+150%)
Mutual labels:  requests
TwitterMediaDownloader
downloads photos and videos from twitter
Stars: ✭ 15 (-6.25%)
Mutual labels:  requests
get youtube subtitle
📺 Youtube字幕下载脚本
Stars: ✭ 56 (+250%)
Mutual labels:  requests
NodeKit
surfstudio.github.io/nodekit
Stars: ✭ 27 (+68.75%)
Mutual labels:  requests
pyscrapper
📷 web scrapping in python: multiple libraries -requests, beautifulsoup, mechanize, selenium
Stars: ✭ 50 (+212.5%)
Mutual labels:  requests
Git-API
Gets info from github and transfers into json styled data
Stars: ✭ 18 (+12.5%)
Mutual labels:  requests
curly.hpp
Simple cURL C++17 wrapper
Stars: ✭ 48 (+200%)
Mutual labels:  requests
Interface TestPlatform
python3+django+requests+ddt+unittest接口自动化测试平台
Stars: ✭ 52 (+225%)
Mutual labels:  requests
ProxyGrab
Asynchronous Library made using Python and aiohttp to get proxies from multiple services!
Stars: ✭ 17 (+6.25%)
Mutual labels:  requests
spreadsheets-to-dataframes
Pycon 2021 Tutorial to help Spreadsheet (Excel) Users learn Python
Stars: ✭ 30 (+87.5%)
Mutual labels:  requests
NetworkAgent
This package is meant to make http request of an easy way inspiren in the architecture of Moya package. This package is 100% free of dependencies and works with Combine api + Codable
Stars: ✭ 16 (+0%)
Mutual labels:  requests
opentracing-utils
Convenient utilities for adding OpenTracing support in your python projects
Stars: ✭ 20 (+25%)
Mutual labels:  requests
tiktok-downloader
Tiktok Downloader/Scraper using requests & bs4
Stars: ✭ 47 (+193.75%)
Mutual labels:  requests

django-debug-toolbar-requests

A Django Debug Toolbar panel for most popular http library requests.

About

This is a panel for Django Debug Toolbar that displays requests http queries, data headers and stack trace.

Installation

Install django-debug-toolbar-requests

$ pip install django-debug-toolbar-requests

Add library into your django settings.py

INSTALLED_APPS = (
   ...
   'requests_toolbar',
   ...
)

Add panel into DEBUG_TOOLBAR_PANELS

DEBUG_TOOLBAR_PANELS = (
   ...
   'requests_toolbar.panels.RequestsDebugPanel',
   ...
)

Example

Now always if you're will use requests then you will see debug information in your Django Debug Toolbar.

requests.get('https://httpbin.org/get', headers={'X-headers': 'value of x header'})

Screenshot

Screenshot

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].