ipynb-image-extractor is a Python package that allows you to easily extract images from IPython Notebooks and save them to a specified output folder.
You can install ipynb-image-extractor via pip:
pip install ipynb-image-extractorOnce installed, you can use the extract-images command to extract images from an IPython Notebook file and save them to an output folder. Here's the basic usage:
extract-images input.ipynb output_folderinput.ipynb: The path to the IPython Notebook file from which you want to extract images.
output_folder: The folder where the extracted images will be saved.
The package utilizes the nbformat and Pillow libraries to parse the IPython Notebook and extract image data from 'image/png' outputs. The images are saved in PNG format.
Built with