Metadata-Version: 2.4
Name: run-ipynb
Version: 0.1.2
Summary: A tool to run Jupyter notebooks as Python scripts
Author-email: Darius Schaub <schaub.darius@gmail.com>
Requires-Python: >=3.7
Requires-Dist: jupyter==1.1.1
Requires-Dist: rich>=13.8.1
Description-Content-Type: text/markdown

## run-ipynb

Run Jupyter notebooks as plain Python scripts from the command line.

This tool converts a `.ipynb` to `.py`, removes IPython-only lines, ensures a non-interactive Matplotlib backend, optionally adjusts `sys.path` when `os.chdir(...)` is used, executes the script, and cleans up the generated file by default.

## Usage

You can directly use the tool with `uv`:
```bash
uvx run-ipynb path/to/notebook.ipynb [--keep] [--yes]
```

Optionally specify a Python interpreter:

```bash
uvx run-ipynb path/to/notebook.ipynb --python /path/to/python
```

You can also rely on your current shell's interpreter by setting `RUN_IPYNB_PYTHON`:

```bash
export RUN_IPYNB_PYTHON=$(which python)
uvx run-ipynb path/to/notebook.ipynb
```

Otherwise run:
```bash
pip install run-ipynb
```
and then:
```bash
run-ipynb path/to/notebook.ipynb [--keep] [--yes]
```

- **notebook_path**: Path to the `.ipynb` notebook to run
- **-k, --keep**: Keep the generated `.py` file after execution
- **-y, --yes**: Automatically overwrite an existing `.py` file without prompting
- **-p, --python**: Python interpreter to execute the generated script (defaults to the current interpreter)

If `--python` is not provided, `run-ipynb` checks in order:

- `RUN_IPYNB_PYTHON`
- `RUN_IPYNB_ENV_PYTHON`
- active virtual environments (`VIRTUAL_ENV`, `CONDA_PREFIX`, `MAMBA_PREFIX`, Pipenv, Poetry, etc.)
- `which python`
- the interpreter running the CLI

### Examples

```bash
# Basic: convert, run, and remove the temporary .py file
uvx run-ipynb notebooks/analysis.ipynb

# Keep the .py file for inspection and overwrite if it already exists
uvx run-ipynb notebooks/analysis.ipynb --keep --yes
```

### What it does

- Converts the notebook with `jupyter nbconvert --to script`
- Removes `get_ipython().run_line_magic` lines
- Sets Matplotlib backend to `Agg` for headless environments
- If `os.chdir(...)` is detected, appends `os.getcwd()` to `sys.path` right after the change
- Executes the resulting script with your current Python interpreter
- Deletes the generated `.py` file unless `--keep` is passed