Re: Reading a subprocesses stdout on Windows

2005-11-21 Thread brolewis
commands is Unix only. This is Windows specific -- http://mail.python.org/mailman/listinfo/python-list

Reading a subprocesses stdout on Windows

2005-11-21 Thread brolewis
I have been trying for several weeks now to write a program that allows me to read the stdout of a process that I spawn and once I receive feedback, act appropriately. More specifically, I need to create an SSH tunnel using plink on Windows XP. Once the tunnel is successfully created, then I need

Spawning, and Killing, a Process

2005-01-31 Thread brolewis
I am writing a program on Windows (XP Pro) that as part of the application takes advantage of rsync's ability to synchronize a client and server computer. However, because of the nature of our company's policies and our proxy, I must connect using SSH and use it as a tunnel to get to the location I

MSI Difficulties

2005-01-26 Thread brolewis
I am trying to deploy Python onto a number of laptops, all running Windows XP, and have been trying to take advantage of Python 2.4's MSI installer. I have tried using the following commands to install, but to no avail: msiexec /i python-2.4.msi /qb ALLUSERS=1 -- and -- msiexec /i python-2.4.msi /

MSI Difficulties

2005-01-26 Thread brolewis
I am trying to deploy Python onto a number of laptops and have been trying to take advantage of Python 2.4's MSI installer. I have tried using the following commands to install, but to no avail: msiexec /i python-2.4.msi /qb ALLUSERS=1 -- and -- msiexec /i python-2.4.msi /qb ALLUSERS=1 ADDLOCAL=AL

Re: Importing Problem on Windows

2005-01-11 Thread brolewis
I launched the interpreter shell from the same directory in both Windows and Linux before posting. That's what sent the red flag up for me. -- http://mail.python.org/mailman/listinfo/python-list

Re: Importing Problem on Windows

2005-01-10 Thread brolewis
Sorry. 2.4 in both locations -- http://mail.python.org/mailman/listinfo/python-list

Importing Problem on Windows

2005-01-10 Thread brolewis
I have a directory that has two files in it: parse.py parser.py parse.py imports a function from parser.py and uses it to parse out the needed information. On Linux, the following code works without a problem: parse.py, line 1: from parser import regexsearch However, when I run the same command

Re: Python Installation

2005-01-08 Thread brolewis
For what its worth, I am running Windows XP Pro on all of these machines. -- http://mail.python.org/mailman/listinfo/python-list

Python Installation

2005-01-08 Thread brolewis
I need to install Python on a number of laptop computers (at least a dozen). I am needing to install Python 2.4, pycrypto, win32all, wxPython, and pyCurl. Can anyone tell me an easy way to install these onto the laptops? Ideally I would like to have a single executable to handle everything for me.