Re: Whither paramiko?

2012-04-19 Thread Richard Shea
On Apr 19, 8:28 pm, Richard Shea wrote: > On Apr 16, 1:42 am, Bryan wrote:> > Paramiko is a Python library for SSH (Secure Shell). Over about the > > last year, I've grown dependent upon it. Its home page is still easy > > to search up, but the links to its mailing

Re: Whither paramiko?

2012-04-19 Thread Richard Shea
On Apr 16, 1:42 am, Bryan wrote: > Paramiko is a Python library for SSH (Secure Shell). Over about the > last year, I've grown dependent upon it. Its home page is still easy > to search up, but the links to its mailing list and repository don't > work. > > Paramiko depends on PyCrypto, and not so

Re: Suggest design to accomodate non-unix platforms ?

2012-04-18 Thread Richard Shea
On Apr 19, 2:28 am, tinn...@isbd.co.uk wrote: > Richard Shea wrote: > > On a *nix box this is a reasonable bit of Python : > > > cmd = "ssh -o StrictHostKeyChecking=no -i %s %s@%s '%s' > %s" % (key, > > user, dns, "echo CONNECTION READY&qu

Re: Suggest design to accomodate non-unix platforms ?

2012-04-18 Thread Richard Shea
On Apr 19, 1:56 am, Irmen de Jong wrote: > On 18-4-2012 15:35, Richard Shea wrote: > > > ... which I think would work and be sufficiently flexible to deal with > > alternatives to putty.exe but is there a more established (... > > better !) way of doing this stuff ? > &

Suggest design to accomodate non-unix platforms ?

2012-04-18 Thread Richard Shea
On a *nix box this is a reasonable bit of Python : cmd = "ssh -o StrictHostKeyChecking=no -i %s %s@%s '%s' > %s" % (key, user, dns, "echo CONNECTION READY", tmp_file) result = os.system(cmd) ... on a Windows box it will fail because 'ssh' isn't part of Windows. There *are* ways of achieving the

Re: understanding a program project

2012-01-14 Thread Richard Shea
On Jan 14, 9:29 am, Tracubik wrote: > Hi all, > i hope not to be too much OT with this request. > I'ld like to modify/contribute some open source in python, but first i've > to read and understand the code. > So, is there some guide lines / procedure to follow to help me in this > process. > I rem

Interpreting Surface Weather Stations reports (FM 12–XIV SYNOP)

2012-01-13 Thread Richard Shea
Does anyone have some code which interprets Surface Weather Stations reports (formally termed 'FM 12–XIV SYNOP' reports) ? I've tried the cheese shop but no joy. I've seen PyMetar (http://schwarzvogel.de/software-pymetar.shtml) but I don't believe it covers this format. I can't believe I'm the fi

wxPython/IEHtmlWindow documentation (what events are available ?)

2005-02-27 Thread Richard Shea
Hi - I've got a script which is making use of ... import wx.lib.iewinas iewin ... and so ... self.ie = iewin.IEHtmlWindow(self, -1, style = wx.NO_FULL_REPAINT_ON_RESIZE) ... but I can't find any documentation about what a IEHtmlWindow object might do - in particular what I might do with t

setup.py - just what is it for ?

2004-12-17 Thread Richard Shea
Hi - This is probably quite a stupid question but I've never understood what setup.py does. I've got a situation at the moment where I would like to use a script (which someone else has written and made available) to do CGI on a shared webserver to which I do not have shell access. The install ins