Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 1 month 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 (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-06-09T21:49:09.000Z (over 7 years ago)
- Last Synced: 2024-10-01T16:18:54.186Z (about 2 months ago)
- Topics: client, http, json, jupyter, jupyter-notebook, requests, rest
- Language: Jupyter Notebook
- Homepage:
- Size: 27.3 KB
- Stars: 0
- Watchers: 2
- 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)