├── .gitignore ├── README.md ├── img └── info.png ├── main.py ├── package.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pkg 2 | *.xml 3 | .idea 4 | .DS_Store 5 | __pycache__ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-17/ps4_pkg_tool/HEAD/README.md -------------------------------------------------------------------------------- /img/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-17/ps4_pkg_tool/HEAD/img/info.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-17/ps4_pkg_tool/HEAD/main.py -------------------------------------------------------------------------------- /package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-17/ps4_pkg_tool/HEAD/package.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-17/ps4_pkg_tool/HEAD/utils.py --------------------------------------------------------------------------------