Metadata-Version: 2.1
Name: jupyter-requests
Version: 0.0.1
Summary: Send requests to a Jupyter server.
Home-page: https://github.com/Zsailer/jupyter_requests
Author: Zach Sailer
Author-email: zachsailer@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
Requires-Dist: requests


# Jupyter Requests

Send requests to a Jupyter server. Useful for testing/exploring the Jupyter RESTful API.

**Command Line**

Make a request to a jupyter server from the command line.
```
jupyter_requests get api/contents
```

**API**

```python
from jupyter_requests import JupyterRequester
import pprint 

# Port number of the server
port = 8888

# Get a requester object.
r = JupyterRequester(port=port)

endpoint = 'api/contents'
response = r.get(endpoint)

pprint(response)
```

