Post-mortem debugging tools for Python
Project description
FrameDisplay: Enhanced DataFrame Display
FrameDisplay is a lightweight Python package for rendering Pandas DataFrames as interactive HTML tables within Jupyter Notebooks and JupyterLab. It improves the default DataFrame display by adding features such as resizable columns, client-side sorting, sticky headers and index for improved navigation, data type indicators in column headers, distinct styling for null values, and tooltips for viewing complete cell content.
I work extensively with Pandas in my personal projects and have always wanted something similar to Databricks' display function, but for Jupyter. The existing open-source alternatives were either too heavyweight, lacked the visual appeal or didn't check all the boxes I needed. So I built this package to bridge that gap. It's not perfect yet, but I like it more than the alternatives :)
Live demo: CodePen
Installation
pip install framedisplay
Features
- Resizable Columns: Drag column dividers to resize them.
- Sortable Columns: Click on column headers to sort the data.
- Sticky Header & Index: The header and index rows remain visible during vertical and horizontal scrolling.
- Column Type Icons: Icons in headers indicate data types (numeric, string, etc.).
- Null Value Styling:
nullvalues are visually distinct. - Tooltips: Hover over cell content to see the full value.
- No Size Limit: Display DataFrames of any size (be mindful of browser performance with very large tables).
Roadmap
- Virtual scrolling for improved performance with very large DataFrames.
- Additional customization options (e.g., theming).
Usage
To display a DataFrame, simply import framedisplay and use the frame_display function:
import pandas as pd
import numpy as np
import framedisplay as fd
df = pd.DataFrame({
'Name': ['Alice', 'Bob', np.nan],
'Age': [25, np.nan, 35],
'Score': [95.5, 87.2, np.nan]
})
fd.frame_display(df)
How it Works
FrameDisplay renders your Pandas DataFrame into an HTML table and injects custom CSS and JavaScript to enable interactive features directly in your Jupyter Notebook or browser.
Configuration (Optional)
You can customize the behavior and appearance by setting a global window.FrameDisplayConfig object in a Jupyter cell before displaying:
from IPython.display import display, HTML
display(HTML("""
<script>
window.FrameDisplayConfig = {
minColumnWidth: 30,
resizerWidth: 8,
resizerHoverColor: 'rgba(0,0,0,0.1)',
showHoverEffect: true,
autoInit: true,
allowReInit: true
};
</script>
"""))
Offline Mode
If you are working in an environment without internet access, you can inject the necessary JavaScript and CSS locally by calling initialize() at the start of your notebook. This bundles the required assets into the notebook itself.
import framedisplay as fd
fd.initialize()
# Now you can use fd.frame_display(df) without needing an internet connection
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
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 framedisplay-1.1.2.tar.gz.
File metadata
- Download URL: framedisplay-1.1.2.tar.gz
- Upload date:
- Size: 8.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d5f205ef797e59b030468d508a91741ddecdb21c579e9d4d9eb190f5708e7a91
|
|
| MD5 |
d59c1c310b8e6b3ae5ee39ca43086b34
|
|
| BLAKE2b-256 |
7563890c873468946ed7d6a0071626b4b93ba5fc6d0d25a91e6cc24bc9ff85c0
|
File details
Details for the file framedisplay-1.1.2-py3-none-any.whl.
File metadata
- Download URL: framedisplay-1.1.2-py3-none-any.whl
- Upload date:
- Size: 5.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
de75d19452d482aafaaaabee4f29b8b83dbac2ce4309b313f6911cc7ad63842e
|
|
| MD5 |
9c4ef7186ecde6ab6cd19f6c02b6a8b7
|
|
| BLAKE2b-256 |
da0923273b3733852f84102539ace2b2a09aeb03332ecfa79e8222764aa8a6f1
|