#!/usr/bin/python3

import sys
import Gnuplot
import Gnuplot.PlotItems
import Gnuplot.funcutils

def main():
    Gnuplot.Func('sin(x)')
    g = Gnuplot.Gnuplot(debug=1)
    g.title('Title')
    g.xlabel('x')
    g.ylabel('y')

sys.exit(main())
