开发者

pure python ssh

开发者 https://www.devze.com 2023-01-26 17:29 出处:网络
Are there any implementations of SSH in pure python? Pref开发者_运维知识库erably open source?

Are there any implementations of SSH in pure python? Pref开发者_运维知识库erably open source?

I'm specifically looking for a client, not server.


Try paramiko.


There is no pure Python library for SSH. paramiko is not pure python, because it doesn't work without pyCrypto dongle. It may carry a pure Python implementation of SSH protocol, but it is not usable as a pure Python library - you still need to install binary pyCrypto extension compiled for your platform, and there is no replacement.

0

精彩评论

暂无评论...
验证码 换一张
取 消