how to control the mouse pointer with python?

2005-01-13 Thread oglycans
Hi. Anybody know a way to control the mouse pointer (move it around and click on things) using python? Thanks. -- http://mail.python.org/mailman/listinfo/python-list

Re: how to control the mouse pointer with python?

2005-01-13 Thread oglycans
Sorry, I should have mentioned it's linux (debian). Thanks. > It depends on your operating system. -- http://mail.python.org/mailman/listinfo/python-list

Re: how to control the mouse pointer with python?

2005-01-13 Thread oglycans
>What environment? It's X. -- http://mail.python.org/mailman/listinfo/python-list

Universal newline mode with cgi

2005-03-15 Thread oglycans
I know fs = open('file.txt','rU') for universal newlines. In a cgi script, I get files like this: fs = form['file'].file Is there a simple (simple!!! I don't want to do something like write to a local file and then reopen) way to set the mode of fs in this case so it does universal newlines? -