2012-05-31 20:05:19 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
|
|
|
Simple use of DataTreeWidget to display a structure of nested dicts, lists, and arrays
|
|
|
|
"""
|
|
|
|
|
|
|
|
import initExample ## Add path to library (just for examples; you do not need this)
|
|
|
|
|
|
|
|
import pyqtgraph as pg
|
|
|
|
from pyqtgraph.Qt import QtCore, QtGui
|
|
|
|
import numpy as np
|
|
|
|
|
|
|
|
|
2014-09-25 19:21:28 +00:00
|
|
|
# for generating a traceback object to display
|
|
|
|
def some_func1():
|
|
|
|
return some_func2()
|
|
|
|
def some_func2():
|
|
|
|
try:
|
|
|
|
raise Exception()
|
|
|
|
except:
|
|
|
|
import sys
|
|
|
|
return sys.exc_info()[2]
|
|
|
|
|
|
|
|
|
2021-01-27 18:59:07 +00:00
|
|
|
app = pg.mkQApp("DataTreeWidget Example")
|
2012-05-31 20:05:19 +00:00
|
|
|
d = {
|
2014-09-25 19:21:28 +00:00
|
|
|
'a list': [1,2,3,4,5,6, {'nested1': 'aaaaa', 'nested2': 'bbbbb'}, "seven"],
|
|
|
|
'a dict': {
|
2012-05-31 20:05:19 +00:00
|
|
|
'x': 1,
|
|
|
|
'y': 2,
|
|
|
|
'z': 'three'
|
|
|
|
},
|
2014-09-25 19:21:28 +00:00
|
|
|
'an array': np.random.randint(10, size=(40,10)),
|
|
|
|
'a traceback': some_func1(),
|
|
|
|
'a function': some_func1,
|
|
|
|
'a class': pg.DataTreeWidget,
|
2012-05-31 20:05:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
tree = pg.DataTreeWidget(data=d)
|
|
|
|
tree.show()
|
2013-02-25 04:09:03 +00:00
|
|
|
tree.setWindowTitle('pyqtgraph example: DataTreeWidget')
|
2012-05-31 20:05:19 +00:00
|
|
|
tree.resize(600,600)
|
|
|
|
|
|
|
|
|
2012-12-05 05:25:45 +00:00
|
|
|
if __name__ == '__main__':
|
2021-05-13 21:28:22 +00:00
|
|
|
pg.exec()
|