What is a good replacement for paramiko in python 3 ? Or is there a port of paramiko for python 3?

paramiko, python, python-3.x, ssh

Solution

I have a full port done that passes all tests on Py2.6, 2.7, 3.2 and 3.3. Needs testing. You can find it in pull request #236 on the main github repo.

Problem

I have python 2.7 code based on the paramiko module that I would like to port to python 3.3 but I cannot seem to find a version of paramiko that would work or a proper replacement. I need the module to work on Windows, Linux and Mac. Anyone got pointers on this ?

Original source