To get information about your container registry, send a GET request to /v2/registry
.
import os
from pydo import Client
client = Client(token=os.environ.get("DIGITALOCEAN_TOKEN"))
resp = client.registry.get()
See the API spec for this endpoint to view additional detail on responses, headers, parameters, and more.