https://github.com/kristianperkins/nbrequests
Display requests in Jupyter Notebook
https://github.com/kristianperkins/nbrequests
client http json jupyter jupyter-notebook requests rest
Last synced: 3 months ago
JSON representation
Display requests in Jupyter Notebook
- Host: GitHub
- URL: https://github.com/kristianperkins/nbrequests
- Owner: kristianperkins
- License: apache-2.0
- Created: 2017-05-22T11:38:52.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-09T21:49:09.000Z (about 9 years ago)
- Last Synced: 2025-09-20T06:21:30.892Z (10 months ago)
- Topics: client, http, json, jupyter, jupyter-notebook, requests, rest
- Language: Jupyter Notebook
- Homepage:
- Size: 27.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
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)