Re: [Tutor] Authen::ACE

2006-03-26 Thread Tim Golden
[Asif Iqbal] | Does anyone know if there is any python module similar to Authen::ACE | available that I can use to authenticate against a RSA SecurID server? I don't believe there is, I'm afraid. Certainly, if a Google for python securid doesn't turn anything up, it's not likely. However, it's a

Re: [Tutor] How do I monitor running processes?

2006-03-26 Thread Tim Golden
[Ars] | Is there a command that will monitor all running | processes/programs(on Windows ME)? I'd like to make a | program that makes a beep when an unrecognized process, such | as an adware program, is running. That way I'd know | immediately when one of these stealth programs not on my saf

Re: [Tutor] compilte python to an executable file.

2006-03-26 Thread Keo Sophon
On Monday 27 March 2006 10:38, Ars wrote: > > On 27/03/06, Keo Sophon <[EMAIL PROTECTED]> wrote: > > > hi all, > > > > > > Does anyone know how to compile a python filename.py to an executable > > file? > I don't know how python creates executable file. The purpose is to have the program written

Re: [Tutor] compilte python to an executable file.

2006-03-26 Thread Ars
> On 27/03/06, Keo Sophon <[EMAIL PROTECTED]> wrote: > > hi all, > > > > Does anyone know how to compile a python filename.py to an executable file? > > Google for py2exe. > > Note, though, it doesn't really "compile" your script. Rather, it > bundles up the interpreter and all the flies needed

Re: [Tutor] compilte python to an executable file.

2006-03-26 Thread John Fouhy
On 27/03/06, Keo Sophon <[EMAIL PROTECTED]> wrote: > hi all, > > Does anyone know how to compile a python filename.py to an executable file? Google for py2exe. Note, though, it doesn't really "compile" your script. Rather, it bundles up the interpreter and all the flies needed to make it go. It

[Tutor] compilte python to an executable file.

2006-03-26 Thread Keo Sophon
hi all, Does anyone know how to compile a python filename.py to an executable file? thanks, phon ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

[Tutor] How do I monitor running processes?

2006-03-26 Thread Ars
Is there a command that will monitor all running processes/programs(on Windows ME)?  I'd like to make a program that makes a beep when an unrecognized process, such as an adware program, is running.  That way I'd know immediately when one of these stealth programs not on my safe list has ins

Re: [Tutor] Dynamically naming functions

2006-03-26 Thread Kent Johnson
Ed Singleton wrote: > How does one go about creating functions, classes, or callable objects > when you don't know their name in advance? (For example you want to > read their names in from a text file or database). > > I want to use this in a few different places. For example Faces, the > Python