Skip to main content

A simple, (almost) dependency free array visualiser for the terminal

Project description

numpix

An almost dependency free (as far as I'm concerned, numpy is part of the stdlib of Python haha) array visualizer for the terminal. Inspect numpy, PyTorch, and JAX arrays as colored pixel grids — right in your shell. Think treescope but without the jupyter part.

Features

  • Works with numpy, PyTorch, and JAX — pass any array-like, no conversion needed
  • 1D, 2D, and 3D arrays — 1D arrays render as a row, 3D arrays render slices side-by-side
  • Kitty graphics protocol — crisp, high-resolution rendering in Kitty, Ghostty, and WezTerm; graceful Unicode fallback everywhere else
  • Stats header — shape, min, max, mean, and variance printed above every visualization
  • Multiple colormapscividis, magma, inferno, plasma, hot, coolwarm, grey
  • Large array truncation — big arrays are intelligently truncated with a grey separator so you always see both ends
  • Zero dependencies — pure Python stdlib + numpy only

Examples

numpix demo numpix demo

Fallback for terminals that don't support the kitty protocol: numpix demo

Installation

pip install numpix

Usage

from numpix import pix
import numpy as np

# 2D array
pix(np.random.rand(28, 28))

# 1D array — rendered as a single row
pix(np.sin(np.linspace(0, 2 * np.pi, 100)))

# 3D array — slices shown side by side
batch = np.stack([
    np.random.rand(28, 28),
    np.eye(28),
    np.outer(np.sin(np.linspace(0, np.pi, 28)), np.ones(28)),
])
pix(batch)

Works with PyTorch and JAX tensors too — no .numpy() needed:

import torch, jax.numpy as jnp

pix(torch.randn(3, 28, 28))
pix(jnp.array(batch))

API

numpix.pix(
    array,
    max_show: int = 40,
    color_scheme: str = "cividis",
    max_slices: int = 3,
    layout: Literal["horizontal", "vertical"] = "horizontal",
    use_kitty_protocol: bool = True,
)
Parameter Description
array numpy ndarray, PyTorch tensor, or JAX array. Up to 3 dimensions.
max_show Max rows/cols shown before truncating (Unicode fallback mode). Default 20.
color_scheme One of cividis, magma, inferno, plasma, hot, coolwarm, grey. Default cividis.
max_slices Max number of 2D slices shown for 3D arrays. Default 4.
layout Arrange slices "horizontal" (side by side) or "vertical" (stacked). Default "horizontal".
use_kitty_protocol Use the Kitty graphics protocol if supported. Default True.

Terminal support

Terminal Rendering
Kitty High-resolution pixel graphics
Ghostty High-resolution pixel graphics
WezTerm High-resolution pixel graphics
Everything else Unicode half-block characters (▄▀)

numpix auto-detects support at import time — no configuration required.

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

numpix-0.9.11.tar.gz (13.1 kB view details)

Uploaded Source

Built Distribution

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

numpix-0.9.11-py3-none-any.whl (12.3 kB view details)

Uploaded Python 3

File details

Details for the file numpix-0.9.11.tar.gz.

File metadata

  • Download URL: numpix-0.9.11.tar.gz
  • Upload date:
  • Size: 13.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for numpix-0.9.11.tar.gz
Algorithm Hash digest
SHA256 f75d4bf34f84804cd3cdd45005a14e59cf4f9f6179fe4947e0f9ac7d3f9fb527
MD5 80bf4b62cf6c9ac209656ad7ca0fcd5a
BLAKE2b-256 f0b3ea939a6fc7b2177cff6f2e49d113783b9573469d18a73e5cf318ffee87b4

See more details on using hashes here.

File details

Details for the file numpix-0.9.11-py3-none-any.whl.

File metadata

  • Download URL: numpix-0.9.11-py3-none-any.whl
  • Upload date:
  • Size: 12.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for numpix-0.9.11-py3-none-any.whl
Algorithm Hash digest
SHA256 aaddda7280483fbbb7f077021a6f65daaaea27c4e641c6e1d397a2bad900910a
MD5 6562a33cf3b95b153abf5ddf183c0e6b
BLAKE2b-256 029657d491dff6941990bb1518ffc8b163f7777ceb401e6fe32ca24fbf8c57dd

See more details on using hashes here.

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