nteract/dx — efficient display and blob-store uploads from Python kernels
Project description
dx
Smart DataFrame display for Jupyter, built for nteract.
dx upgrades how pandas and polars DataFrames render in a notebook. Instead of serializing megabytes of HTML into your output cells, dx hands the data to nteract's content-addressed blob store and renders it through a fast Arrow/parquet grid. Your .ipynb stays tiny, the cell stays snappy, and AI agents reading the notebook get a compact per-column summary — dtypes, ranges, distinct/top values, null counts — instead of raw bytes.
Install
# pandas
pip install "dx[pandas]"
# polars
pip install "dx[polars]"
# both
pip install "dx[pandas,polars]"
Python 3.10+.
Use
import dx
dx.install()
import pandas as pd
df = pd.read_parquet("large-dataset.parquet")
df # rendered via nteract's sift grid — no base64 in your .ipynb
That's it. dx.install() is idempotent and automatically called by nteract's kernel bootstrap, so most nteract users never touch it directly. Calling it yourself is fine when you want the behavior in an environment nteract didn't configure for you (a standalone kernel, a test harness, etc.).
What you get
- Fast rendering. Large DataFrames stream through the blob store; the
.ipynbpayload stays small. - AI-friendly summaries. Every DataFrame ships a
text/llm+plaincolumn summary — dtypes, numeric ranges, string distinct/top values, null counts — so agents reason about the shape without materializing the whole table. - Visualization integration. Altair and Plotly are automatically switched to their nteract renderers for interactive output that works inside nteract's isolated iframe sandbox.
- Narwhals-aware. narwhals-wrapped DataFrames are unwrapped via
.to_native()and dispatched through the pandas/polars path. - Safe outside nteract. When no nteract runtime is reachable,
dx.install()is a no-op.import dxis safe from plain Python, vanilla Jupyter, scripts, CI.
Links
- Homepage: https://nteract.io
- Source & issues: https://github.com/nteract/desktop
- License: BSD-3-Clause
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dx-2.0.2a202604222137.tar.gz.
File metadata
- Download URL: dx-2.0.2a202604222137.tar.gz
- Upload date:
- Size: 23.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d0928e699cbb44c5701f2baddab50fd529a6ac07cfddaf267eda648a002b42c
|
|
| MD5 |
2ba343211d11064e3233937a416e2c8f
|
|
| BLAKE2b-256 |
4d0009ff0bd852a8a1615ebcfb1dc0267e3cf6beb4fc5db3ef577e1bdf634a6b
|
File details
Details for the file dx-2.0.2a202604222137-py3-none-any.whl.
File metadata
- Download URL: dx-2.0.2a202604222137-py3-none-any.whl
- Upload date:
- Size: 16.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d44f610d7b8b38e31a8421179b69aab68a391b61fc5b33af7f638916420da919
|
|
| MD5 |
fca149a0ab9293817a4fd9fddc673f30
|
|
| BLAKE2b-256 |
374aa9213a219951bd3d34b7f79eddc5ef385412af26736a789f16e48ea34993
|