Re: Open file on remote linux server

2009-10-02 Thread Martien Verbruggen
On Wed, 23 Sep 2009 23:41:35 +0200, Diez B. Roggisch wrote: > The Bear schrieb: >> Hi I'm looking to do something like this >> >> f = f.openfileobj(remotefileloc, localfilelikeobj) >> >> my remote files are on a solaris box that i can access using ssh (could >> prehap request othe protoc

Re: Open file on remote linux server

2009-09-23 Thread Neil Hodgson
The Bear: > Hi I'm looking to do something like this > > f = f.openfileobj(remotefileloc, localfilelikeobj) > > my remote files are on a solaris box that i can access using ssh (could > prehap request othe protocols if necessary) You could look into GIO which is a virtual file system API used

Re: Open file on remote linux server

2009-09-23 Thread Diez B. Roggisch
The Bear schrieb: Hi I'm looking to do something like this f = f.openfileobj(remotefileloc, localfilelikeobj) my remote files are on a solaris box that i can access using ssh (could prehap request othe protocols if necessary) anyone got any ideas? try paramiko. Or just use subprocess to scp

Re: Open file on remote linux server

2009-09-23 Thread Sean DiZazzo
On Sep 23, 12:04 pm, The Bear wrote: > Hi I'm looking to do something like this > > f = f.openfileobj(remotefileloc, localfilelikeobj) > > my remote files are on a solaris box that i can access using ssh (could > prehap request othe protocols if necessary) > > anyone got any ideas? > > many thanks