Re: [PythonCE] PyCrypto binaries -- nearly there..

2007-08-04 Thread Marc Horst
Hi, I have it almost working, but need some help... Can someone help me please? What I did: 1) made ssh connection with my laptop work: - install pycrypto 2.0.1 - placed paramiko directory in \python25\Lib\site-packets - adapted demo.py so it automatically connects to my laptop => works fine (I

[PythonCE] PyCrypto binaries -- nearly there..

2007-08-04 Thread alexandre . delattre
I will try to run paramiko+pycrypto myself, i strongly suspect paramiko to call sys.exit on some condition, so in the meantime you can try to insert this in the beginning of your code (before any other import): import sys class ExitError(Exception): pass def dummy_exit(code=0): r

Re: [PythonCE] PyCrypto binaries -- nearly there..

2007-08-04 Thread Marc Horst
Hi Alexandre, That is a good hint! I tried it and here is the result: Python 2.5 (release25-maint, Dec 19 2006, 23:22:00) [MSC v.1201 32 bit (ARM)] on win32 >>> execfile('\\Flash Disk\\Programmabestanden\\Python25\\Lib\\demo_pda.py') *** Unable to open host keys file *** WARNING: Unknown host

Re: [PythonCE] PyCrypto binaries -- nearly there..

2007-08-04 Thread alexandre . delattre
Marc Horst <[EMAIL PROTECTED]> a écrit : > Hi Alexandre, > > That is a good hint! I tried it and here is the result: > > Python 2.5 (release25-maint, Dec 19 2006, 23:22:00) [MSC v.1201 32 bit > (ARM)] on win32 execfile('\\Flash Disk\\Programmabestanden\\Python25\\Lib\\demo_pda.py') > *** Unab