Skip to main content

Expose matplotlib figures over http

Project description

plotserver
=======

Expose your matplotlib figures over http with 1 line of code


Installation
------------

.. code-block:: shell

pip install plotserver


Example usage
-------------


plotting a pylab environment

.. code-block:: python

import plotserver as pls
import pylab
pylab.plot([1,2,3,4,1,2,3,4])
pylab.xlabel("numbers")
pylab.ylabel("values")

# display plot using webserver at http://0.0.0.0:8080/
pls.show(pylab)


plotting a matplotlib figure

.. code-block:: python

import plotserver as pls
from matplotlib import pyplot

fig = pyplot.figure()
axes = fig.gca()
axes.plot([1,2,3,4,1,2,3,4])

# display plot using webserver at http://127.0.0.1:9999/
pls.show(fig, host="127.0.0.1", port=9999)

Project details


Release history Release notifications | RSS feed

This version

0.5

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

plotserver-0.5.tar.gz (1.7 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