Re: How to open a remote file using python.

2009-02-22 Thread Chris Rebert
On Sun, Feb 22, 2009 at 9:02 PM, venutaurus...@gmail.com wrote: > On Feb 23, 9:25 am, MRAB wrote: >> venutaurus...@gmail.com wrote: >> > Hello all, >> >I am writing an application where I need to open a shared >> > file on a remote machine using python script. I tried using the >> > f

Re: How to open a remote file using python.

2009-02-22 Thread odeits
On Feb 22, 9:02 pm, "venutaurus...@gmail.com" wrote: > On Feb 23, 9:25 am, MRAB wrote: > > > > > venutaurus...@gmail.com wrote: > > > Hello all, > > >            I am writing an application where I need to open a shared > > > file on a remote machine using python script. I tried using the > > > f

Re: How to open a remote file using python.

2009-02-22 Thread venutaurus...@gmail.com
On Feb 23, 9:25 am, MRAB wrote: > venutaurus...@gmail.com wrote: > > Hello all, > >            I am writing an application where I need to open a shared > > file on a remote machine using python script. I tried using the > > following function: > > > f = urllib.open("\\remote_machine\\folder1\\fil

Re: How to open a remote file using python.

2009-02-22 Thread MRAB
venutaurus...@gmail.com wrote: Hello all, I am writing an application where I need to open a shared file on a remote machine using python script. I tried using the following function: f = urllib.open("\\remote_machine\\folder1\\file1.doc") I also tried using class urllib.Fa

Re: How to open a remote file using python.

2009-02-22 Thread Chris Rebert
On Sun, Feb 22, 2009 at 8:13 PM, venutaurus...@gmail.com wrote: > Hello all, > I am writing an application where I need to open a shared > file on a remote machine using python script. I tried using the > following function: > > f = urllib.open("\\remote_machine\\folder1\\file1.doc") > >