Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 ?

share|improve this question

1 Answer

up vote 1 down vote accepted

I don't think there is a proper replacement but I would be happy to learn that I am wrong. You can use subprocess but that kind of defeats the purpose of having a nice module.

The most recent official word from paramiko is here:

No py3k news yet, it is still definitely planned (see my above comment), but other priorities have to come first :(

So no timeline but hope.

share|improve this answer
Thank You! I guess I will have to monitor the paramiko site for any news and be patient about porting my code. – woodleg.as Feb 5 at 16:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.