rsdo 0.1.20260901

A Rust client library for the DigitalOcean API v2
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
lang: Python
source: |-
  import os
  from pydo import Client

  client = Client(token=os.environ.get("DIGITALOCEAN_TOKEN"))

  req = {
    "name": "My SSH Public Key"
  }

  resp = client.ssh_keys.update(ssh_key_identifier=512190, body=req)