Toolbox for analyzing and editing pkg application files for psp,ps3, ps4 and ps5, includes the most useful functions you might need.
| 1 | from PyQt5.QtWidgets import QTreeWidgetItem |
| 2 | |
| 3 | class TreeView: |
| 4 | @staticmethod |
| 5 | def get_all_nodes(node): |
| 6 | list_nodes = [node] |
| 7 | for i in range(node.childCount()): |
| 8 | list_nodes.extend(TreeView.get_all_nodes(node.child(i))) |
| 9 | return list_nodes |