Will Paramiko port to Python 3.x?

It seems that PyCrypt needs to be ported for this to happen. Is it hard to do it yourself?

+5
source share
1 answer

You can use 2to3 , which comes with Python 2.7, to convert your project source code into Python-compatible code. Then, just run a few tests on the packages you converted and see if they work.

Most of the main work will be done using 2to3, and after that you can make fine adjustments if you need to do everything well.

Pariko PyCrypt, Py3K, , . PyCrypt 2007 , Paramiko 2009 . , (, , !).

+3

All Articles