pyqtgraph/examples/template.py

20 lines
339 B
Python
Raw Normal View History

2012-03-17 15:47:20 +00:00
# -*- coding: utf-8 -*-
2013-02-25 04:09:03 +00:00
"""
Description of example
"""
2012-03-17 15:47:20 +00:00
import initExample ## Add path to library (just for examples; you do not need this)
import pyqtgraph as pg
from pyqtgraph.Qt import QtCore, QtGui, mkQApp
2012-03-17 15:47:20 +00:00
import numpy as np
app = mkQApp()
2015-01-16 16:21:33 +00:00
2013-02-25 04:09:03 +00:00
# win.setWindowTitle('pyqtgraph example: ____')
if __name__ == '__main__':
2021-05-13 21:28:22 +00:00
pg.exec()