FigureOut is a Python package for handling figures in a convenient and efficient manner. It provides classes and functions for saving, loading, and displaying Matplotlib figures.
You can install FigureOut using pip:
pip install figureout
import matplotlib.pyplot as plt
from figureout.figure_handler import FigureHandler
# Create a figure
fig, ax = plt.subplots()
ax.plot([1, 2, 3], [4, 5, 6])
# Save the figure
handler = FigureHandler()
handler.save_fig_pickle(fig, "example_figure")
# Load and display a saved figure
handler.show_fig_pickle("example_figure.mpl")
# Open GUI for browsing and opening saved figures
handler.open_gui()
- Python (>=3.8,<3.9)
- Matplotlib (>=3.0.0)
This project is licensed under the MIT License