8 lines
156 B
Python
8 lines
156 B
Python
#!/usr/bin/python
|
|
class plo:
|
|
def __init__(self):
|
|
print "myGnuplot thread started"
|
|
import myGnuPlot
|
|
gplot = myGnuPlot.myGnuPlot()
|
|
gplot.plot_it()
|
|
|