# List all ssh keys
from oneandone.client import OneAndOneService

client = OneAndOneService('<API-TOKEN>')

response = client.list_ssh_keys()

# Retrieve a single ssh key
from oneandone.client import OneAndOneService

client = OneAndOneService('<API-TOKEN>')

response = client.get_ssh_key(ssh_key_id='')

# Modify an ssh key
from oneandone.client import OneAndOneService

client = OneAndOneService('<API-TOKEN>')

response = client.modify_ssh_key(ssh_key_id='',
                                 name='New Name',
                                 description='New Description')

# Delete an ssh key
from oneandone.client import OneAndOneService

client = OneAndOneService('<API-TOKEN>')

response = client.delete_ssh_key(ssh_key_id='')