Run study-related tasks easily with this script and zero basic programming knowledge.
- Create a file with the
.study
extension
browser google.com
notepad test.txt
run echo Hello, World!
explorer .
python script.py
open document.pdf
delete old_file.txt
create new_file.txt
copy source.txt destination.txt
move old_location.txt new_location.txt
- Run
study.py
or the compiledstudy.exe
- This script will execute the commands in the
.study
file:- Open
google.com
in your default browser, - Open the
test.txt
file in Notepad, - Run the
echo Hello, World!
command in cmd, - Open the current directory in file explorer,
- Execute
script.py
with Python, - Open
document.pdf
with the default application, - Delete
old_file.txt
, - Create
new_file.txt
, - Copy
source.txt
todestination.txt
, - Move
old_location.txt
tonew_location.txt
.
- Open
-
browser <url>
browser google.com
-
notepad <filePath>
notepad test.txt
-
run <command>
run echo Hello, World!
-
explorer <path>
explorer .
-
python <filePath>
python script.py
-
open <filePath>
open document.pdf
-
delete <filePath>
delete old_file.txt
-
create <filePath>
create new_file.txt
-
copy <sourcePath> <destinationPath>
copy source.txt destination.txt
-
move <sourcePath> <destinationPath>
move old_location.txt new_location.txt
- Install PyInstaller
py -m pip install pyinstaller
- Compile
py -m PyInstaller --noconfirm --onefile --windowed --name "Study" "study.py"