You can use these shell applications to host and run your script as if it where native application.
Allows you to easily distribute your code to novice users and eliminates the need for the user to make the script execuatble in order to run.
Distribute your Python script as an application accepting files. Works only when files are dropped on the application
- Change the icon cmd.icns (/Contents/Resources/cmd.icns)
- Edit the plist (/Contents/info.plist)
- Edit the code (Contents/Resources/Scripts/main.py)
- Ensure main.py is executable
chmod a+x main.py
- Send
Distribute your Python script as an application
- Change the icon cmd.icns (/Contents/Resources/cmd.icns)
- Edit the plist (/Contents/info.plist)
- Edit the code (Contents/MacOS/main.py)
- Ensure main.py is executable
chmod a+x main.py
- Send
Distribute your Shell script as an application
- Change the icon (/Contents/Resources/cmd.icns)
- Edit the plist (/Contents/info.plist)
- Edit the code (/Contents/MacOS/main.command)
- Ensure main.command is executable
chmod a+x main.command
- Send