没有实现错误 - PySftp

时间:2016-03-15 11:04:06

标签: python python-2.7 pysftp

我正在尝试使用以下代码通过 Pysftp 模块连接到SFTP服务器

a = pysftp.Connection('xx.yyy.zz.abc',username='abcd',password='xyz@123',log=True)

这会引发以下错误

 NotImplementedError                       Traceback (most recent call last)
<ipython-input-6-5d0f8343a8c2> in <module>()
----> 1 a = pysftp.Connection('xx.yyy.zz.abc',username='abcd',password='xyz@123',log=True)

C:\Python27\lib\site-packages\pysftp.pyc in __init__(self, host, username, private_key, password, port, private_key_pass, ciphers, log)
    160         if password is not None:
    161             # Using Password.
--> 162             self._transport.connect(username=username, password=password)
    163         else:
    164             # Use Private Key.

C:\Python27\lib\site-packages\paramiko-1.15.2-py2.7.egg\paramiko\transport.pyc in connect(self, hostkey, username, password, pkey, gss_host, gss_auth, gss_kex, gss_deleg_creds)
    976             self._preferred_keys = [hostkey.get_name()]
    977 
--> 978         self.start_client()
    979 
    980         # check host key if we were given one

C:\Python27\lib\site-packages\paramiko-1.15.2-py2.7.egg\paramiko\transport.pyc in start_client(self, event)
    404                 e = self.get_exception()
    405                 if e is not None:
--> 406                     raise e
    407                 raise SSHException('Negotiation failed.')
    408             if event.is_set():    
NotImplementedError: Use module Crypto.Signature.pkcs1_15 instead

我几个月来一直在使用这行代码,但这个错误最近才出现。

我现在可以使用WINSCP连接到端口。

感谢您的帮助

1 个答案:

答案 0 :(得分:0)

看起来你最好的方法是使用https://github.com/paramiko/paramiko lib本身。

库不像pysftp包装器那么简单,但有一些非常全面的例子可以基于:https://github.com/paramiko/paramiko/tree/master/demos