Ipyplot
IPyPlot is a small python package offering fast and efficient plotting of images inside Python Notebooks. It's using IPython with HTML for faster, richer and more interactive way of displaying big numbers of images.
Install / Use
/learn @karolzak/IpyplotREADME
IPyPlot is a small python package offering fast and efficient plotting of images inside Python Notebooks cells. It's using IPython with HTML for faster, richer and more interactive way of displaying big numbers of images.

Displaying big numbers of images with Python in Notebooks always was a big pain for me as I always used matplotlib for that task and never have I even considered if it can be done faster, easier or more efficiently.
Especially in one of my recent projects I had to work with a vast number of document images in a very interactive way which led me to forever rerunning notebook cells and waiting for countless seconds for matplotlib to do it's thing..
My frustration grew up to the point were I couldn't stand it anymore and started to look for other options..
Best solution I found involved using IPython package in connection with simple HTML. Using that approach I built this simple python package called IPyPlot which finally helped me cure my frustration and saved a lot of my time.
Features:
- [x] Easy, fast and efficient plotting of images in python within notebooks
- [x] Plotting functions (see examples section to learn more):
- [x]
plot_images- simply plots all the images in a grid-like layout - [x]
plot_class_representations- similar toplot_imagesbut displays only the first image for each label/class (based on provided labels collection) - [x]
plot_class_tabs- plots images in a grid-like manner in a separate tab for each label/class based on provided labels
- [x]
- [x] Supported image formats:
- [x] Sequence of local storage URLs, e.g.
[your/dir/img1.jpg] - [x] Sequence of remote URLs, e.g.
[http://yourimages.com/img1.jpg] - [x] Sequence of
PIL.Imageobjects - [x] Sequence of images as
numpy.ndarrayobjects - [x] Supported sequence types:
list,numpy.ndarray,pandas.Series
- [x] Sequence of local storage URLs, e.g.
- [x] Misc features:
- [x]
custom_textsparam to display additional texts like confidence score or some other information for each image - [x]
force_b64flag to force conversion of images from URLs to base64 format - [x] click on image to enlarge
- [x] control number of displayed images and their width through
max_imagesandimg_widthparams - [x] "show html" button which reveals the HTML code used to generate plots
- [x] option to set specific order of labels/tabs, filter them or ignore some of the labels
- [x]
- [x] Supported notebook platforms:
- [x] Jupyter
- [x] Google Colab
- [x] Azure Notebooks
- [x] Kaggle Notebooks
Getting Started
To start using IPyPlot, see examples below or go to gear-images-examples.ipynb notebook which takes you through most of the scenarios and options possible with IPyPlot.
Installation
IPyPlot can be installed through PyPI:
pip install ipyplot
or directly from this repo using pip:
pip install git+https://github.com/karolzak/ipyplot
Usage examples
IPyPlot offers 3 main functions which can be used for displaying images in notebooks:
To start working with IPyPlot you need to simply import it like this:
import ipyplot
and use any of the available plotting functions shown below (notice execution times).
- images - should be a sequence of either
string(local or remote image file URLs),PIL.Imageobjects ornumpy.ndarrayobjects representing images - labels - should be a sequence of
stringorint
Display a collection of images
images = [
"docs/example1-tabs.jpg",
"docs/example2-images.jpg",
"docs/example3-classes.jpg",
]
ipyplot.plot_images(images, max_images=30, img_width=150)

Display class representations (first image for each unique label)
images = [
"docs/example1-tabs.jpg",
"docs/example2-images.jpg",
"docs/example3-classes.jpg",
]
labels = ['label1', 'label2', 'label3']
ipyplot.plot_class_representations(images, labels, img_width=150)

Display images in separate, interactive tabs for each unique class
images = [
"docs/example1-tabs.jpg",
"docs/example2-images.jpg",
"docs/example3-classes.jpg",
]
labels = ['class1', 'class2', 'class3']
ipyplot.plot_class_tabs(images, labels, max_imgs_per_tab=10, img_width=150)

To learn more about what you can do with IPyPlot go to gear-images-examples.ipynb notebook for more complex examples.
Related Skills
claude-opus-4-5-migration
83.8kMigrate prompts and code from Claude Sonnet 4.0, Sonnet 4.5, or Opus 4.1 to Opus 4.5
model-usage
339.1kUse CodexBar CLI local cost usage to summarize per-model usage for Codex or Claude, including the current (most recent) model or a full model breakdown. Trigger when asked for model-level usage/cost data from codexbar, or when you need a scriptable per-model summary from codexbar cost JSON.
TrendRadar
49.9k⭐AI-driven public opinion & trend monitor with multi-platform aggregation, RSS, and smart alerts.🎯 告别信息过载,你的 AI 舆情监控助手与热点筛选工具!聚合多平台热点 + RSS 订阅,支持关键词精准筛选。AI 智能筛选新闻 + AI 翻译 + AI 分析简报直推手机,也支持接入 MCP 架构,赋能 AI 自然语言对话分析、情感洞察与趋势预测等。支持 Docker ,数据本地/云端自持。集成微信/飞书/钉钉/Telegram/邮件/ntfy/bark/slack 等渠道智能推送。
mcp-for-beginners
15.7kThis open-source curriculum introduces the fundamentals of Model Context Protocol (MCP) through real-world, cross-language examples in .NET, Java, TypeScript, JavaScript, Rust and Python. Designed for developers, it focuses on practical techniques for building modular, scalable, and secure AI workflows from session setup to service orchestration.

