I am attempting to create a tree widget that will essentially allow the user to view various breakdowns of data and have the option to delete certain items. In order to do t
QTreeWidgetItem actually has a built in check box that you can use fairly easily.
QTreeWidgetItem
For example:
item = QTreeWidgetItem(self.treeWidget) item.setCheckState(0, QtCore.Qt.Unchecked)