Skip to main content

tool using Clouding.io API

Project description

tool using Clouding.io API

This is an unofficial CLI that interacts with Clouding.io's REST API. Its main goal is to provide a simple interface that can be used to create and destroy servers from shell scripts. It neither provides access to all API endpoints nor to all attributes and/or actions.

The project status is best described as "alpha" as things are still very much in motion.

Installation

tuca is on PyPi, you can use the package manager of your choice to set yourself up. Here is an example using uv:

uv tool install tuca

Usage

The basics

The CLI interface follows this pattern:

tuca <endpoint> <action> [options]
  • endpoint is the same as in https://api.clouding.io/docs/
    💁 Not all endpoints are supported!
  • action is one of create, list and delete
    💁 Supported actions depend on endpoint!
  • options depend on endpoint and action
    💁 Consult --help for details!

tuca writes pretty-printed JSON (no colors) to stdout. It's human-readable and can be piped into jq for non-interactive usage. The following example shows the output from listing the keypairs endpoint (values redacted):

{
    "keypairs": [
        {
            "fingerprint": "00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00",
            "id": "xxxxxxxxxxxxxxxx",
            "name": "default"
        }
    ]
}

The output is

  • always organized as list, even if the result count is 1 or 0
  • usually named after the endpoint
  • contains an opionated subset of the available attributes, but always id and name
  • limited to a maximum of 100 entries

Setup authentication

First order of business is setting up an API token. You can do that via environment variable:

export CLOUDINGIO_API_TOKEN=my_secret_token

Or, more securely, have tuca write it into your desktop's keyring. The following command will give you an interactive prompt to do that.

tuca auth create

And before you say anything, I'm aware that auth is not an endpoint.

If you provide both, the environment variable takes precendence.

Create a server

Pick one of the available images.

tuca images list
Output

(modified/shortened for brevity)

{
    "sizes/flavors": [
        ...
        {
            "accessMethods": {
                "password": "required",
                "sshKey": "not-supported"
            },
            "id": "jXEm7yK3MJ2VYkQ9",
            "minimumSizeGb": 25,
            "name": "Windows 11 (English 64Bit | Based on Windows Server 2025)"
        },
        ...
    ]
}

Now pick one of the available flavors (server sizes).

tuca flavors list
Output

(modified/shortened for brevity)

{
    "sizes/flavors": [
        ...
        {
            "id": "8x16",
            "pricePerHour": 0.05472,
            "pricePerMonthApprox": 39.9456,
            "ramGb": 16,
            "vCores": 8.0
        },
        ...
    ]
}

That's sufficient to create a server with minimal configuration.

# Windows 11 compatible image
# 8 cores, 16 GB RAM
# default firewall
# default image size
tuca servers create --image jXEm7yK3MJ2VYkQ9 --name MyWinServer --flavorid 8x16 --password start123
Output
{
    "servers": [
        {
            "createdAt": "2026-02-04T23:42:16",
            "id": "mJOZBKqGP702Xjax",
            "name": "MyWinServer",
            "publicIp": null,
            "status": "Pending"
        }
    ]
}

Spooling up the server can take some time and you can check how it's doing.

tuca servers list --name MyWinServer
Output
{
    "servers": [
        {
            "createdAt": "2026-02-04T23:42:16",
            "id": "mJOZBKqGP702Xjax",
            "name": "MyWinServer",
            "publicIp": "103.23.60.115",
            "status": "Creating"
        }
    ]
}

The server will be ready eventually.

Output
{
    "servers": [
        {
            "createdAt": "2026-02-04T23:42:16",
            "id": "mJOZBKqGP702Xjax",
            "name": "MyWinServer",
            "publicIp": "103.23.60.115",
            "status": "Active"
        }
    ]
}

License

GPL-2.0-or-later

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tuca-0.2.1.tar.gz (41.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tuca-0.2.1-py3-none-any.whl (29.7 kB view details)

Uploaded Python 3

File details

Details for the file tuca-0.2.1.tar.gz.

File metadata

  • Download URL: tuca-0.2.1.tar.gz
  • Upload date:
  • Size: 41.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tuca-0.2.1.tar.gz
Algorithm Hash digest
SHA256 d3d2b3e9d49d409d6336e3a872b86cdf5cb875151cc51454091888681ec2e538
MD5 a869fa4b2dc74fd80a741e6fd0f0b827
BLAKE2b-256 5982594e66371f751ed1849bf6ecb525d82c50711de877c75b7c6a4c5d3b454c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuca-0.2.1.tar.gz:

Publisher: build.yml on dehesselle/tuca

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tuca-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: tuca-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 29.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tuca-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 0f00485f3020028458e25f53643308bf8e55287824c62f426ab84ab860a95441
MD5 68fd17844db42a902274b507595cff09
BLAKE2b-256 a089fd9352d5a9cbf1ec2e830c146fac1d36b94bac80951434bff95e41176ee9

See more details on using hashes here.

Provenance

The following attestation bundles were made for tuca-0.2.1-py3-none-any.whl:

Publisher: build.yml on dehesselle/tuca

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page