Metadata-Version: 2.1
Name: GnuplotPy3
Version: 0.0.3
Summary: A minimal Python wrapper for Gnuplot.
Home-page: https://github.com/carbonscott/GnuplotPy3
Author: Cong Wang
Author-email: wangimagine@gmail.com
License: UNKNOWN
Keywords: Gnuplot,wrapper
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

[`Gnuplot-py`](http://gnuplot-py.sourceforge.net/) written by Michael Haggerty
`<mhagger@alum.mit.edu>` is an amazing Python2 package which allows a Python
user to incorporate any Gnuplot command within a Python2 script.  However,
Python2 has ended its update in the year of 2020.  I need a minimal replacement
of Michael’s module for Python3.  

This module only does one job, which is integrating Gnuplot commands in a
Python3 script.  Please refer to the example below for a quick start.

```
import GnuplotPy3
gp = GnuplotPy3.GnuplotPy3()
gp('set terminal postscript eps size 3.5, 2.62 \\'     )
gp('                            enhanced color \\'     )
gp("                            font 'Helvetica,14' \\")
gp('                            linewidth 2'           )
gp("set output 'sinx.eps'")
gp("unset key")
gp("plot sin(x)")

input("Press enter to exit...")
```


