Skip to main content

Write in Jupyter Notebooks. Publish anywhere.

Project description

nb2wb

Write in notebooks. Publish anywhere.

nb2wb converts Jupyter Notebooks and other notebook-style content into publishable HTML for Substack, Medium, and X Articles.

Supported inputs:

  • Jupyter notebooks (.ipynb)
  • Quarto documents (.qmd)
  • Markdown documents (.md)
  • in-memory Jupyter notebook payloads (dict / NotebookNode)

Documentation

  • Detailed docs (Read the Docs): https://nb2wb.readthedocs.io/
  • Docs source in this repo: docs/index.md

Brief Feature Tour

  1. Load notebook content from file or in-memory payload.
  2. Optionally execute code cells (--execute / execute=True).
  3. Render markdown, math, code, and outputs into platform-safe HTML fragments.
  4. Convert display math, code, and (optionally) tables to images for high-fidelity publishing.
  5. Sanitize rich HTML/SVG output and enforce server-side safety limits.
  6. Wrap output for your target platform (substack, medium, x).

Installation

pip install nb2wb

Development install:

git clone https://github.com/the-palindrome/nb2wb.git
cd nb2wb
pip install -e ".[dev]"

Quick Start (CLI)

nb2wb notebook.ipynb
nb2wb notebook.ipynb -t medium
nb2wb notebook.ipynb -t x
nb2wb notebook.ipynb -o article.html
nb2wb notebook.ipynb --open
nb2wb notebook.ipynb --serve
nb2wb report.qmd --execute

Quick Start (Python API)

import nb2wb

# Path input via loader helper
payload = nb2wb.load_input_payload("notebook.ipynb")
html = nb2wb.convert(
    payload,
    target="substack",
    config={"latex": {"try_usetex": True}},
)

# In-memory payload input (JSON / JSONB parsed notebook)
html = nb2wb.convert(
    notebook_payload,
    target="substack",
    execute=False,
)

nb2wb.convert() is content-only; use load_input_payload() (or typed loaders) for filesystem inputs.

Security at a Glance

nb2wb uses a mandatory server-safe conversion pipeline:

  • strict HTML/SVG sanitization
  • CSS URL sanitization
  • SSRF-safe image fetching
  • path traversal protection for local files
  • notebook size/resource safety limits
  • fail-closed behavior for unsafe/unresolvable image sources

Important: enabling execution runs notebook code. Treat execute=True workloads as untrusted code and isolate them appropriately.

Configuration

Use YAML file in CLI:

nb2wb notebook.ipynb -c config.yaml

Or pass dict/object/path in API:

html = nb2wb.convert(notebook_payload, config={"safety": {"max_cells": 1500}})

Read More

Development

Run tests:

pytest

Build docs locally:

pip install -e ".[docs]"
sphinx-build -b html docs docs/_build/html

License

MIT

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

nb2wb-0.2.0.tar.gz (49.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

nb2wb-0.2.0-py3-none-any.whl (57.1 kB view details)

Uploaded Python 3

File details

Details for the file nb2wb-0.2.0.tar.gz.

File metadata

  • Download URL: nb2wb-0.2.0.tar.gz
  • Upload date:
  • Size: 49.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for nb2wb-0.2.0.tar.gz
Algorithm Hash digest
SHA256 8583d7d797eed36ad9b2cd7b92b6c87a2990b2b92d5d02e34acaaa83a4c8f293
MD5 afddc0c5c6bfb5ef1088a655d2fcf7f5
BLAKE2b-256 2177be899b1e7d9b93b3df5c465d2aa02ad54e7cbadfb53490aa2f8734c2b6d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for nb2wb-0.2.0.tar.gz:

Publisher: publish.yml on the-palindrome/nb2wb

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nb2wb-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: nb2wb-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 57.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for nb2wb-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 6a81f7a7fd739fce0ba5fa8678ac4cf6d08c8ba8d8af90d245e28fd07fccbe90
MD5 ef0e867c01595310ab22cf8b140c86f0
BLAKE2b-256 aa3ad631719e5c1216222b2a395a39e6f452dda39051071777b5191bc19d21fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for nb2wb-0.2.0-py3-none-any.whl:

Publisher: publish.yml on the-palindrome/nb2wb

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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