Skip to content

Commit

Permalink
updated readme, added requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
cmclark00 committed Nov 7, 2023
1 parent b3d1ea3 commit 5308ec8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Make sure you have some kind of unarchiving program that can handle Rar files.

Instructions for use:

In the command line install patool using "pip install patool", and .then install alive_progress with "pip install alive_progress". If you want to use the GUI based version also install PySimpleGui using "pip install pysimplegui".
In the command line install the required python modules using "pip install -r requirements.txt".

Download the zipped project file and extract all of its contents.

Expand Down
2 changes: 1 addition & 1 deletion extractGUI.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def unpack_xbla(xbla_dir, xbla_unpacked_dir):
for subdir, dirs, files in os.walk(xbla_unpacked_dir):
for file in files:
src = file
dst = file.replace(".pirs", "")
dst = file.replace(".pirs", " (XBLA)")
os.rename(os.path.join(xbla_unpacked_dir, src), (os.path.join(xbla_unpacked_dir, dst)))

print(file)
Expand Down
3 changes: 3 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
patool
alive-progress
PySimpleGui

0 comments on commit 5308ec8

Please sign in to comment.