We have a Cisco CSR 1000V appliance in AWS that only has SSH key authentication enabled (we disabled logins using username / password). How can we use SSH keys with ncclient in python? I didn't see this in the documentation.
from ncclient import manager
m = manager.connect(host='host', username='username', password='password')
What is the equivalent for logging in with an SSH key?