I tried to connect my server using pysftp
. But getting this error
No hostkey for host 192.168.50.35 found
:
*.py
import pysftp
srv = pysftp.Connection(host='192.168.50.35',username='myname',password='mypassword')
srv.close()
How can i resolve this?