Web front-end for python scripts
I've written some python scripts to handle different tasks on my Windows network. I would like to have them accessible via a single web page (kind of like a dashboard) and have the scripts run on the server on which the web server resides (also a Windows box) This is an internal server only, but the scripts need to be secure since the server will have administrative rights on the network. Can anyone recommend a way of doing this? Security is important since this page will be accessible inside the company, but only people with the appropriate user name / password will be able to run the scripts. -- http://mail.python.org/mailman/listinfo/python-list
Using python to deploy software
Has anyone used python to deploy (non-python) software on a Windows network? -- http://mail.python.org/mailman/listinfo/python-list
Re: Using python to deploy software
Sounds interesting. Do you know if he/she would be willing to share the code? Anand wrote: > I haven't but one of my friends have used Pyro (Python Remote Objects) > to do so. > > You basically need to write a custom Pyro server and run it on a > central machine. Your pyro clients can be installed on the machines > where the software need to be installed. > > For more details and similar ideas refer the project page of pyro at > http://pyro.sourceforge.net/projects.html . > > -Anand -- http://mail.python.org/mailman/listinfo/python-list
Re: Using python to deploy software
Would the pyro client need to be installed as a service on the machine so it could run the installer as the system acct? Otherwise, it would run with the current user's credentials. Anand wrote: > I haven't but one of my friends have used Pyro (Python Remote Objects) > to do so. > > You basically need to write a custom Pyro server and run it on a > central machine. Your pyro clients can be installed on the machines > where the software need to be installed. > > For more details and similar ideas refer the project page of pyro at > http://pyro.sourceforge.net/projects.html . > > -Anand -- http://mail.python.org/mailman/listinfo/python-list
