pyqtgraph/examples/template.py

20 lines
339 B
Python
Raw Normal View History

2012-03-17 11:47:20 -04:00
# -*- coding: utf-8 -*-
2013-02-24 23:09:03 -05:00
"""
Description of example
"""
2012-03-17 11:47:20 -04: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 11:47:20 -04:00
import numpy as np
app = mkQApp()
2015-01-17 00:21:33 +08:00
2013-02-24 23:09:03 -05:00
# win.setWindowTitle('pyqtgraph example: ____')
if __name__ == '__main__':
2021-05-14 05:28:22 +08:00
pg.exec()