Skip to content

kristianperkins/nbrequests

Repository files navigation

nbrequests: Display Python Requests in Notebook

Pretty printing the requests/responses from python requests. Check out the example notebook for usage.

Install

pip install nbrequests

Usage

Make a request using the python requests module and run display_request(). e.g.

r = requests.get('http://httpbin.org/get')
display_request(r)