The Best solution?

Hernan M. Foffani hfoffani at yahoo.com
Sun Nov 11 07:23:49 EST 2001


"A" <export at bmatrading.com> escribió en el mensaje
news:mailman.1005420856.5731.python-list at python.org...
> Hello,
> I need from my program send an email and I would like to send it in
> a different thread or process.
> Can you please give me an example how I can start a new thread
> or process Under Win32 systems?
>

using processes:

>>> import os
>>> os.system("dir")

or os.spawnv(...), etc. see the os module in the Python Library Reference
chapter 6.1.5 Process Management

Regards,
-Hernan





More information about the Python-list mailing list