httpdbg - notebook

You can use httpdbg to trace the HTTP requests in your notebook.

installation

notebook-httpdbg is available on pip.

pip install notebook-httpdbg

usage

To trace the HTTP requests in your notebook, load the notebook-httpdbg extension.

%load_ext notebook_httpdbg

notebook load extension

To trace the HTTP requests in a cell, just add the line %%httpdbg

%%httpdbg
_ = requests.get("https://www.example.com")

run request

configuration

You can choose the number of character to print for each request.

%%httpdbg --header 500 --body 10000