Capture output from JupyterLab
Project description
jupyter-caputure-output
A cell magic that captures jupyter cell output
Install
Requires Python >=3.8
pip install jupyter_capture_output
Example
import jupyter_capture_output
%%capture_text --path "foo.txt"
print("Hello World")
import matplotlib.pyplot as plt
%%capture_img --path "foo.png bar.png"
plt.plot([1,2],[10,20])
plt.show()
plt.plot([3,4],[-10,-20])
plt.show()
%%capture_img --path "foo.jpg bar.jpg" --compression 50
plt.plot([1,2],[10,20], color = "r")
plt.show()
plt.plot([3,4],[-10,-20],color = "r")
plt.show()
Implemented
%%capture_text
-> to .txt file with text output%%capture_code
-> to .py file with cell content%%capture_img
-> to .png or .jpg with image output%%capture_video
-> to .mp4 file with the video output
Use cases
-
matplotlib, scipy, PIL , cv2, manim etc. have their own APIs to save images. With this package, one just have to learn one line of code and can use it to save all kind of image outputs made by different packages.
-
When tweaking plots, one can use this cell magic to track the process, so to say a visual version control system.
-
In context of Science, one can generate log files of experiments with this package. As the cell magic is always on the top of the cell, it's easy to see in which cells log files are generated and in which not.
-
This can be used to create sheet cheats, e.g. this math-functions-cheat-sheet website was generated from a jupyter notebook using a derivative of this capture package.
-
This package will also auto-generate the folder-tree of subdirectories for you.
Changelog
0.0.11
- add support for embedded videos.
0.0.10
- use importlib.metadata
0.0.9
- support python 3.11
0.0.8
- Add
capture_code
magic. Because this is not cell output but cell content, it might be worth to think about renaming this project fromcapture-output
to onlycapture
or evencapture-content
. remove experimental_capture_video_first_last
andexperimental_video_thumbnail
again. This package is not the right place for that.
0.0.7
- Add relative path support and automatically create paths if they don't exist yet.
Add some experimental magic, but this will likely be removed in future versions:
-
experimental_capture_video_first_last
captures video and extracts first and last frame from it. Useful for post-processing of videos in other video editors. Needs ffmpeg installed
-
experimental_video_thumbnail
extracts video from the Jupyter cell output, and replaces it with an image thumbnail of the video -> useful for Version control. Needs matplotlib and ffmpeg installed
0.0.6
better regex in capture video change example images to dogs
0.0.5
Remove debugging code Add JupyterLiteDemo
0.0.4
Add Text and Video capture cell magic update example
0.0.3
Setup automatic release action.
0.0.2
Update example
0.0.1
Initial release
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
Hashes for jupyter_capture_output-0.0.11.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | d087b77e17606aa978745b7f4e1f2d1cdfad81ae7784bbbfd0a9e0b0f6073831 |
|
MD5 | 45d2c7b67d6af0b02a61d5cb8536511b |
|
BLAKE2b-256 | 308353e580804f18143d4da96439116e01cac0c737944d62acd0eb3b6cb21ad7 |
Hashes for jupyter_capture_output-0.0.11-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2d219295d2397e6ab6bc524de67ce14a30328c08d77449ef854577c36fb9493f |
|
MD5 | 1232d574bb927dbbbe7abaad787d7a93 |
|
BLAKE2b-256 | 08d59eeb49a20d78b77afccc3d7d310114bb7890572d8265381c4ccef0ed57e4 |