Part of libcloud.compute.base View Source View In Hierarchy
An SSH key to be installed for authentication to a node.
This is the actual contents of the users ssh public key which will normally be installed as root's public key on the node.
>>> pubkey = '...' # read from file >>> from libcloud.compute.base import NodeAuthSSHKey >>> k = NodeAuthSSHKey(pubkey) >>> k <NodeAuthSSHKey>