7e57e07068
* example app now workw with Qt4 and Python2 again * Example App is now part of the test suite * Add initExample * No scary warning when launching examples * Fix scary examples.__main__ warning * Use courier new font as its on all platforms * Remove commented out code * Add newline * Updated docs, example app now tested * Non-relative import for example app * Proper importing now
16 lines
384 B
Python
16 lines
384 B
Python
import sys, os
|
|
import pyqtgraph as pg
|
|
from pyqtgraph.Qt import QtCore, QtGui
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
if __package__ is None or __package__ == "":
|
|
parent_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|
sys.path.insert(0, parent_dir)
|
|
import examples
|
|
__package__ = "examples"
|
|
|
|
from .ExampleApp import main as run
|
|
run()
|