nbconvertEasy Examples

Convert notebooks to HTML, PDF, slides, scripts, etc.

Getting started with nbconvert

Installation and basic usage of nbconvert.

python
# Install: pip install nbconvert
import nbconvert

# Basic nbconvert usage
print(f"Using nbconvert")
# See documentation for detailed examples
Expected Output
# Expected output shown below
# (Run locally with: nbconvert)

nbconvert is a third-party package. Convert notebooks to HTML, PDF, slides, scripts, etc.. Install with: pip install nbconvert

Common nbconvert operations

Frequently used features of nbconvert.

python
# Install: pip install nbconvert
import nbconvert

# Common nbconvert patterns
print(f"nbconvert version: {nbconvert.__version__}")

These are the most commonly used features of nbconvert in everyday development.

Want to try these examples interactively?

Open Easy Playground