Re: Regular Expression tools?

2005-05-04 Thread Terje Johan Abrahamsen
This is what you are looking for. http://kodos.sourceforge.net/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Creating Files

2005-05-04 Thread Terje Johan Abrahamsen
Dan wrote: > On Wed, 04 May 2005 10:24:23 +0200, bruno modulix <[EMAIL PROTECTED]> > wrote: > > >As in any other language I know : just open it in write mode !-) > > Easy when you know how. > > Thanks e = file('c:/file.txt', 'w') By the way, check out the Python tutor service... http://mail.pyth

Re: Py2Exe security

2005-05-03 Thread Terje Johan Abrahamsen
Simon Brunning wrote: > On 3 May 2005 05:03:00 -0700, Terje Johan Abrahamsen <[EMAIL PROTECTED]> wrote: > > We have created some programs in Python that are to be distributed > > around. The programs will be made into .exe files by py2exe. However, > > in the source th

Py2Exe security

2005-05-03 Thread Terje Johan Abrahamsen
Hello. We have created some programs in Python that are to be distributed around. The programs will be made into .exe files by py2exe. However, in the source there are certain webadresses, logins and passwords that the programs use, that we would like to keep away from the end users. They will use

Mouseclick

2005-05-02 Thread Terje Johan Abrahamsen
Hello. I have been trying desperately for a while to make Python push the left mousebutton. I have been able to let Python push a button in a box: def click(hwnd): win32gui.SendMessage(hwnd, win32con.WM_LBUTTONDOWN, 0, 0) win32gui.SendMessage(hwnd, win32con.WM_LBUTTONUP, 0, 0) optDialog