Metadata-Version: 2.1
Name: GnuplotPy3
Version: 0.0.2
Summary: A minimal Python wrapper for Gnuplot.
Home-page: https://github.com/carbonscott/GnuplotPy3
Author: Cong Wang
Author-email: wangimagine@gmail.com
License: UNKNOWN
Description: [`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 incoporate any Gnuplot command within a Python2 script.  However,
        Python2 has ended its update in the year of 2020.  A Python3 solution will
        be appreciated.  
        
        This module only does one job -- it allows calling any Gnuplot command 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)")
        ```
        
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
