I have a simple python scripts which imports some functions and performs simple tasks based on user inputs via the python shell.
I would like to distribute this to users who do not have python installed or the same modules I have on my local machine.
I've looked at py2app but this seems to require a GUI or similar and I do not need this, only command line arguments etc.. My script used raw_import for receiving commands as below...
import time, sys, os
def main():
name = raw_input("Enter name: ")
print name
time.sleep(60)
print 'bye'
if __name__=="__main__":
main()
would anyone know the correct way to do this..