Seregon/PkgToolBox

Toolbox for analyzing and editing pkg application files for psp,ps3, ps4 and ps5, includes the most useful functions you might need.

Python/57.3 KB/No license
Utilities/GlobalUsing.py
PkgToolBox / Utilities / GlobalUsing.py
1# This file is not necessary in Python as imports are handled differently.
2# However, we can use it to define some common global imports.
3
4from PyQt5.QtWidgets import QMessageBox
5from PyQt5.QtGui import QColor
6import os
7import json
8import struct
9import io
10import zipfile
11from typing import List, Optional
12
13# Imports from custom utilities
14from Utilities.PS4PKGToolHelper.Helper import Helper
15from Utilities.PS4PKGToolHelper.MessageBoxHelper import MessageBoxHelper
16from Utilities.Settings.AppSettings import AppSettings
17from Utilities.Settings.SettingsManager import SettingsManager
18
19# Other common imports can be added here
20