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
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
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
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 ?
>
&
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
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
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
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
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