Skip to main content

Unofficial Python API client for Jupyter

Project description

Jupyter API Client

Setup

pip install jupyter-api-client

example

  • initialize client
from jupyter_api import JupyterClient

TOKEN = os.getenv("JUPYTER_TOKEN")
client = JupyterClient(host="localhost:8888", schema="http", token=TOKEN)
  • create kernel
kernel_id = client.create_kernel(language="python3")
  • run linux command or code
print(client.execute_code(f"!ls -l", kernel_id, cell=False))
print(client.execute_code(f"print('hello world')", kernel_id))
  • delete kernel
client.delete_kernel(kernel_id)
  • upload file
client.upload_file("README.md", "README.md")

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jupyter-api-client-0.0.3.tar.gz (4.8 kB view hashes)

Uploaded Source

Built Distribution

jupyter_api_client-0.0.3-py3-none-any.whl (5.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page