A tool that exports a Jupyter Notebook to HTML format using nbconvert’s HTMLExporter, enabling web-based presentation of notebooks.
Project description
Swarmauri Tool Jupyter Export HTML
Converts a Jupyter notebook (passed in as JSON) to HTML using nbconvert’s HTMLExporter with optional custom templates, CSS, and JavaScript.
Features
- Accepts notebook data as a JSON string (e.g., from
json.dumps(nbformat.read(...))). - Supports optional template, inline CSS, and inline JS injection.
- Returns a dict containing
exported_htmlorerrorwhen conversion fails.
Prerequisites
- Python 3.10 or newer.
nbconvert,nbformat, and Swarmauri base/core packages (installed automatically).
Installation
# pip
pip install swarmauri_tool_jupyterexporthtml
# poetry
poetry add swarmauri_tool_jupyterexporthtml
# uv (pyproject-based projects)
uv add swarmauri_tool_jupyterexporthtml
Quickstart
import json
import nbformat
from swarmauri_tool_jupyterexporthtml import JupyterExportHTMLTool
notebook = nbformat.read("notebooks/example.ipynb", as_version=4)
notebook_json = json.dumps(notebook)
exporter = JupyterExportHTMLTool()
response = exporter(
notebook_json=notebook_json,
template_file=None,
extra_css="body { font-family: Arial; }",
extra_js="console.log('Export complete');",
)
if "exported_html" in response:
Path("notebooks/example.html").write_text(response["exported_html"], encoding="utf-8")
else:
print("Error:", response["error"])
Tips
- nbconvert templates let you customize the layout; pass a
.tplfile totemplate_file. - Keep
extra_css/extra_jslightweight to avoid bloating the HTML output. - Combine with notebook execution tools (execute → export → publish) for end-to-end pipelines.
Want to help?
If you want to contribute to swarmauri-sdk, read up on our guidelines for contributing that will help you get started.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file swarmauri_tool_jupyterexporthtml-0.8.3.dev5.tar.gz.
File metadata
- Download URL: swarmauri_tool_jupyterexporthtml-0.8.3.dev5.tar.gz
- Upload date:
- Size: 8.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb5134337cd9ebdc49a28d640435783711edecf7769022315599f08eb7b4de0a
|
|
| MD5 |
61952be9ff7146cc06897353eab5bfb6
|
|
| BLAKE2b-256 |
ca0dfed222e14380ae78bb76329dd406cce48a5cf853f659baba72406276a917
|
File details
Details for the file swarmauri_tool_jupyterexporthtml-0.8.3.dev5-py3-none-any.whl.
File metadata
- Download URL: swarmauri_tool_jupyterexporthtml-0.8.3.dev5-py3-none-any.whl
- Upload date:
- Size: 9.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
45f15b2bbfdf32d72e60009dd41b82008f28cac3ae98ddb956af197ee6939e43
|
|
| MD5 |
c546ad2fe7579132c09de806f88359e8
|
|
| BLAKE2b-256 |
9621bdff41c0ffdafec4ed39574779290e4d814a8f41fa633d4a1fd23b560b45
|