Making Python scripts more user friendly?

Posted by Michael Morisy on Server Fault See other posts from Server Fault or by Michael Morisy
Published on 2010-04-13T14:56:17Z Indexed on 2010/04/13 15:03 UTC
Read the original article Hit count: 336

Filed under:
|
|

I have a bunch of python scripts I've put together that cut down on busy work, but I'd like to be able to share them in an easier-to-use format for others to be used internally. The scripts aren't accessing anything local, just open API's across a couple web apps.

Ideally:

a) Users wouldn't have to have a python compiler installed

b) They can be using Windows when running it.

c) It's simple enough they can just click something, and it will work.

I've tried some of the Windows Python executable compilers, but none have really worked well and I was considering just uploading it to a webserver and putting up some basic password access protection around it

Any suggestions for sharing scripts?

© Server Fault or respective owner

Related posts about python

Related posts about scripting