Metadata-Version: 2.4
Name: nbsee
Version: 0.1.2
Summary: Rich/Textual terminal viewer for Jupyter notebooks focused on copying code and text outputs
Author: Yoga Yudistira
License-Expression: MIT
Project-URL: Homepage, https://github.com/AnakTeka/nbsee
Project-URL: Repository, https://github.com/AnakTeka/nbsee
Project-URL: Issues, https://github.com/AnakTeka/nbsee/issues
Keywords: jupyter,notebook,cli,tui,rich,textual
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Environment :: Console
Classifier: Topic :: Utilities
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: rich>=13.7
Requires-Dist: textual>=0.58
Dynamic: license-file

nbsee
=====

[![PyPI version](https://img.shields.io/pypi/v/nbsee)](https://pypi.org/project/nbsee/)
[![Python versions](https://img.shields.io/pypi/pyversions/nbsee)](https://pypi.org/project/nbsee/)
[![License](https://img.shields.io/pypi/l/nbsee)](https://pypi.org/project/nbsee/)

Simple CLI viewer for Jupyter notebooks focused on fast reading and easy copying of code and text outputs from the terminal.

![nbsee screenshot](https://raw.githubusercontent.com/AnakTeka/nbsee/main/docs/screenshot.png)

Features
- Interactive terminal viewer for `.ipynb` files
- Vim-style navigation between cells
- Toggle focus between code/markdown and outputs
- Copy code or outputs directly to clipboard
- Visual selection mode to copy multiple cells
- Search through inputs and outputs
- Python syntax highlighting via Rich

Usage
- `nbsee notebook.ipynb` — open an interactive viewer.

Key bindings
- `j`/`k`: move to next/previous cell
- Arrow Up/Down: scroll the view line-by-line
- PageUp/PageDown: page scroll
- Ctrl+u / Ctrl+d: half-page scroll up/down
- `Tab`: toggle focus between input (code/markdown) and output (text/plain)
- If a cell has no text output, `Tab` does nothing and shows a brief message.
- `y`: copy the currently focused region to clipboard using `xclip -selection clipboard`
- `z`: hide/show all outputs (fold outputs)
- `Shift+V`: start/stop visual selection for inputs; use `j`/`k` to expand/shrink; `y` copies all selected code cells
- `/`: search (inputs+outputs). Enter to submit, `Esc` cancels
- `n` / `N`: next/prev match
- `gg` / `G`: jump to first / last cell
- `q`: quit

Notes
- Clipboard support requires `xclip` (Linux/X11)
- When no text output is available, copy shows an inline message

Install

**uv (recommended)**

[uv](https://docs.astral.sh/uv/) is a fast Python package manager. Install it from [here](https://docs.astral.sh/uv/getting-started/installation/).

```bash
# Run without installing
uvx nbsee notebook.ipynb

# Or install permanently
uv tool install nbsee
```

**pip**
```bash
pip install nbsee
```

Development (uv)
- Quick run without installing: `uv run -m nbsee path/to/notebook.ipynb`
- Run tests: `uv run pytest`
- Lint/format check: `uv run ruff check .` and `uv run ruff format --check .`
- Build distributions: `uv build`
- Release: push a tag like `v0.1.0` to trigger `.github/workflows/publish.yml` (requires PyPI trusted publishing setup).
- Install editable and use `nbsee` command:
  - Create venv: `uv venv`
  - Activate: `source .venv/bin/activate`
  - Install: `uv pip install -e .`
  - Run: `nbsee path/to/notebook.ipynb`
