Skip to main content

Helper functions and context manager to make it easier to save matplotlib plots as images.

Project description

Intro

A library of functions (just one at the moment) to streamline the saving and exporting of matplotlib plots as images and whatnot.

I wrote it because I was spending a lot of time creating and saving plots in another project of mine and wanted to automate it.

Usage

from matplotsave import pltsave

xs = list(range(10))
ys = [i**2 for i in xs]
with pltsave("myplot.png") as (fig,ax):
    ax.plot(xs,ys)

This will export the plot to myplot.png painlessly after you are given the chance to actually plot some data.

Because the pltsave context manager returns the fig and ax objects the entire matplotlib api is still accessible.

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

matplotsave-0.1.3.tar.gz (1.9 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page