Skip to main content

sixtytwo

sixtytwo-cli is the command-line client for sixtytwo, built for the terminal and for coding agents. It covers two jobs:

  • Rent reliability-backed GPUs. sixtytwo rent reserves GPUs that sixtytwo has already qualified, watches them while you run, and refunds the unused time if hardware goes bad.
  • Qualify and monitor your own clusters. sixtytwo runs hardware checks, NCCL benchmarks, straggler detection, and live fault monitoring on GPUs you already have, on both NVIDIA and AMD hardware, and keeps a per-node trust score from every test, fault, and recovery.

sixtytwo rent stays light (no torch), so it runs anywhere. The qualification and monitoring commands pull in the GPU stack only when you ask for it.

Quick start

pip install sixtytwo-cli

# Rent a qualified GPU
sixtytwo rent login                    # paste a token from sixtytwo.ai/account
sixtytwo rent catalog
sixtytwo rent A100_SXM --exec "nvidia-smi -L"  # bounded first test; auto-settles
sixtytwo rent H100_SXM -n 1 -H 2              # 1x H100 for 2 hours

# Or check the GPUs you already have
sixtytwo init
sixtytwo doctor

Install

Requirements: Python 3.11 or newer; macOS (Apple silicon), Linux x86_64/aarch64, or Windows.

Optional extras:

pip install 'sixtytwo-cli[gpu]'        # nvidia-ml-py + torch for local GPU checks
pip install 'sixtytwo-cli[skypilot]'   # SkyPilot cloud adapter (see below)
pip install 'sixtytwo-cli[server]'     # local dashboard + collector daemon

Rent GPUs

sixtytwo rent catalog                  # list SKUs and prices
sixtytwo rent H100_SXM -n 8 -H 4       # reserve 8x H100 for 4 hours, wait for READY
sixtytwo rent ls                       # list my reservations
sixtytwo rent status <reservation-id>
sixtytwo rent ssh <reservation-id>     # open a shell on a READY reservation

Every node is validated before you get it and monitored while you use it. Add --region us|eu|asia to pin a geography; billing follows actual usage. The storefront at sixtytwo.ai covers the same flow in the browser.

Team-funded research

Team admins can fund one shared wallet at sixtytwo.ai/team, bulk-invite researchers, and assign a one-time compute budget to each private workspace. Allocations never refresh automatically, and researchers can see only their own workspace and rentals.

sixtytwo rent teams                     # list teams available to this token
sixtytwo rent team-use <org-id>         # save the private team workspace
sixtytwo rent credits                   # show allocation and current availability
sixtytwo rent H100_SXM --exec "nvidia-smi -L"

Use --team <org-id> on rent, credits, or topup to override the saved team for one command. Team top-ups require an org admin.

Qualify and monitor your own GPUs

These commands read a sixtytwo.yaml, so run init once first. It detects this machine (and your scheduler, if any) and writes the config into the current directory; everything below loads it.

sixtytwo init                          # writes ./sixtytwo.yaml (run this first)
sixtytwo doctor                        # validate this box: drivers, GPUs, topology
sixtytwo doctor --all-nodes --json     # validate every node in the cluster
sixtytwo test --quick --all            # fast per-node qualification
sixtytwo test --full gpu-01,gpu-02     # full suite, including NCCL
sixtytwo launch --pre-check python train.py   # qualify, then run with live monitoring
sixtytwo nodes                         # trust scores and fault history

doctor --all-nodes reports each node's GPU inventory, not just the local host's. Results land in a local trust registry, so a node's history (tests, faults, recoveries) follows it over time.

Straggler detection runs at both stages. test --full flags a GPU that is slower than its node peers (an identical kernel timed per GPU) or below its model's reference baseline, before you commit a run to it. During a run, launch watches per-rank step times and flags a rank that falls behind the others, so a GPU that degrades into a straggler mid-job is caught too.

Slurm clusters

Run init on the login node (or inside an allocation). It detects Slurm, fills the node list from sinfo/scontrol, and sets remote.mode: slurm, so test and doctor --all-nodes dispatch each node's checks through srun. Confirm the GPU partition and per-node GPU count in sixtytwo.yaml (the per-node count can't be detected from a GPU-less login node):

cluster:
  slurm:
    partition: gpu        # your GPU partition
    gpus_per_node: 8

On a large or multi-partition cluster init lists every node it can see, so trim cluster.nodes to the GPU nodes you actually want to qualify before running doctor --all-nodes or test --all.

SSH clusters (no scheduler)

Any set of boxes you can ssh into can be treated as a cluster: set remote.mode: ssh and list the nodes, where entries accept user@host:port so cloud pods with one public port per node (RunPod, Vast) work directly:

cluster:
  nodes:
    - root@203.0.113.7:45663
    - root@203.0.113.9:11542
remote:
  mode: ssh
  ssh_key_path: ~/.ssh/id_ed25519

doctor --all-nodes and test --all --parallel 8 then drive every node over ssh.

Kubernetes clusters (distributed PyTorch)

On a GPU Kubernetes cluster you can run a real multi-node torch.distributed test, a collective-bandwidth sweep plus a few DDP training steps, across nodes:

sixtytwo k8s-dist --nodes 2 --gpus-per-node 8 --gpu-type H100_SXM

It launches one pod per node as a Kubernetes Indexed Job, with ranks coordinated by torch's c10d rendezvous over a headless Service, so there is no Kubeflow or MPI operator to install and no SSH between pods. The result is scored against the same NCCL thresholds as the rest of the suite. Add --dry-run to print the manifests without touching the cluster, --json for the full report, or --no-cleanup to leave the Job up for inspection. The machine you run it from needs only kubectl access; torch runs in the pods.

Prerequisites: Kubernetes 1.24+, the NVIDIA device plugin and the nvidia RuntimeClass (the usual GPU-pod setup), at least two GPU nodes, and a sixtytwo namespace with a sixtytwo-agent service account:

kubectl create namespace sixtytwo
kubectl create serviceaccount sixtytwo-agent -n sixtytwo

SkyPilot

There are two ways to combine sixtytwo with SkyPilot:

# 1. Qualify a cluster you launched on any cloud SkyPilot supports
sixtytwo skypilot qualify my-cluster --mode quick

# 2. Provision sixtytwo's own GPUs through SkyPilot with `cloud: sixtytwo`
pip install 'sixtytwo-cli[skypilot]'
sixtytwo skypilot install              # register sixtytwo as a SkyPilot cloud
sky show-gpus --cloud sixtytwo

sixtytwo skypilot install is opt-in: it wires the adapter into the active virtualenv so sky launch can reserve reliability-backed GPUs with cloud: sixtytwo. Run sixtytwo skypilot --help for the full set of subcommands.

Topology and fabric health

The full test suite maps how a node is actually wired and checks the fabric it sits on:

  • GPU topology: the NVLink and XGMI link matrix on every node, with PCIe-only or mixed-link wiring flagged before it slows a collective.
  • InfiniBand fabric: the fabric is mapped to show which leaf switch each node hangs off (one sweep per cluster, reused across nodes), and port counters are classified so congestion reads as congestion rather than a cable fault.
  • GPU to NIC affinity: an NCCL probe across all GPUs verifies rail-optimized placement.
  • Diagnosis with opt-in repairs: failures map to a remediation plan (restart fabric manager, reset wedged GPUs, fix clock sync). Everything is off by default and dry-run first; fixes only execute when recovery.in_place_fixes.enabled is set, stop at the first verified repair, and never escalate to a disruptive action without a fresh diagnosis.

Hosted dashboards

Stream telemetry to sixtytwo.ai and watch the fleet from a browser:

sixtytwo connect --source ssh --name my-cluster   # register (token from the account page)
sixtytwo monitor                                  # stream per-GPU telemetry
sixtytwo install-agent                            # or install as a systemd service

The cluster page shows live per-node tiles, a node x GPU utilization heat map, and a 24h history; on Slurm clusters the agent also attributes GPU hours to users and accounts, feeding a chargeback report that exports to CSV.

Metrics for Grafana

sixtytwo metrics serve exposes a Prometheus /metrics endpoint backed by the local trust registry: trust scores, fault counters, recovery downtime, and per-check status. sixtytwo metrics export-grafana prints a curated dashboard you can import as is.

sixtytwo metrics serve --host 0.0.0.0 --port 9620
sixtytwo metrics export-grafana --output sixtytwo-overview.json

License

Commercial. The bundled LICENSE governs use. Learn more at sixtytwo.ai.

Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

sixtytwo_cli-0.3.37-cp314-cp314-win_amd64.whl (6.3 MB view details)

Uploaded CPython 3.14Windows x86-64

sixtytwo_cli-0.3.37-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

sixtytwo_cli-0.3.37-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (8.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

sixtytwo_cli-0.3.37-cp314-cp314-macosx_11_0_arm64.whl (7.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

sixtytwo_cli-0.3.37-cp313-cp313-win_amd64.whl (6.2 MB view details)

Uploaded CPython 3.13Windows x86-64

sixtytwo_cli-0.3.37-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

sixtytwo_cli-0.3.37-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (7.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

sixtytwo_cli-0.3.37-cp313-cp313-macosx_11_0_arm64.whl (7.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sixtytwo_cli-0.3.37-cp312-cp312-win_amd64.whl (6.2 MB view details)

Uploaded CPython 3.12Windows x86-64

sixtytwo_cli-0.3.37-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

sixtytwo_cli-0.3.37-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (7.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

sixtytwo_cli-0.3.37-cp312-cp312-macosx_11_0_arm64.whl (7.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sixtytwo_cli-0.3.37-cp311-cp311-win_amd64.whl (6.4 MB view details)

Uploaded CPython 3.11Windows x86-64

sixtytwo_cli-0.3.37-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (9.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

sixtytwo_cli-0.3.37-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (8.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

sixtytwo_cli-0.3.37-cp311-cp311-macosx_11_0_arm64.whl (7.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sixtytwo_cli-0.3.37-cp310-cp310-win_amd64.whl (6.4 MB view details)

Uploaded CPython 3.10Windows x86-64

sixtytwo_cli-0.3.37-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (9.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

sixtytwo_cli-0.3.37-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (8.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

sixtytwo_cli-0.3.37-cp310-cp310-macosx_11_0_arm64.whl (7.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sixtytwo_cli-0.3.37-cp39-cp39-win_amd64.whl (6.4 MB view details)

Uploaded CPython 3.9Windows x86-64

sixtytwo_cli-0.3.37-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (9.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

sixtytwo_cli-0.3.37-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (8.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

sixtytwo_cli-0.3.37-cp39-cp39-macosx_11_0_arm64.whl (7.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file sixtytwo_cli-0.3.37-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.37-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8636e60983568290150b366f4f8917b208d2cd3ccca0c247b62bda3042956e50
MD5 da0bf9808eaf67999770ee604a2f5476
BLAKE2b-256 f47b302e6ef88611084a8286bcf4f390341c492671e132bbcfd8be5a0dd767d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.37-cp314-cp314-win_amd64.whl:

Publisher: publish-pypi.yml on antaloaalonso/sixtytwo

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

File details

Details for the file sixtytwo_cli-0.3.37-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.37-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 86f10b11fd5b9ebeb85a145fab45d99eb63abbcc9b745b5b36f7159c8a2fcfe9
MD5 d7fbc4f1b5975bd4cfc1647a7248e0e3
BLAKE2b-256 0cd06c683f8b8753f9cfc8eb2af0cede2a7e01fe52fd5884be3a181b5280fae3

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.37-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-pypi.yml on antaloaalonso/sixtytwo

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

File details

Details for the file sixtytwo_cli-0.3.37-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.37-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3cfb284f1c5d815b1e414a2bcc6bdd910ae2dc91bf0d71492ab12f8d1cadf4ae
MD5 976d63d57795192b3956b61667f06f3e
BLAKE2b-256 669bbca32790ae7576ae1ba49483df9f08611875f4ea56da72e8dbd2feaed135

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.37-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-pypi.yml on antaloaalonso/sixtytwo

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

File details

Details for the file sixtytwo_cli-0.3.37-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.37-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d8ba47b7a5d74dfe8dc07a51eca58284dc863ea3d38878f35bdeae83bbab9c9
MD5 2b353481a7a54fc6832b4f8312b7c4be
BLAKE2b-256 de4be3bd055a7ef20d0cfb695f53aa3a7aae1e2effa1c7757732573f0f74cdbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.37-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on antaloaalonso/sixtytwo

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

File details

Details for the file sixtytwo_cli-0.3.37-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.37-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8db1294a50bfd8e727cb460ac603292373da309dd0ca7ef5d51027d44878a37c
MD5 0cea877018ad30a2f2abd07291f46295
BLAKE2b-256 90dd75102e6a437d461bf3deed02230c8be764f8ab8072b2b71feb4aa6bab6c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.37-cp313-cp313-win_amd64.whl:

Publisher: publish-pypi.yml on antaloaalonso/sixtytwo

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

File details

Details for the file sixtytwo_cli-0.3.37-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.37-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cf6b55097040b25d8139a4992895409621e2f67535c9999fb4e6eef6415abf0d
MD5 f5813269881dab258d4643599dc19d9b
BLAKE2b-256 004ee0d60a65f76267683092a6335c67909aebf501e0cc6341d4a1aaf513b700

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.37-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-pypi.yml on antaloaalonso/sixtytwo

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

File details

Details for the file sixtytwo_cli-0.3.37-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.37-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b08005c733ee83fe7c943a12b5e9ed6780888c4fb2dc8da4315513ffddf93ec8
MD5 562b507484a1491f302e7801016e2481
BLAKE2b-256 15459e5bcc13e74854ec991c3c6e2b426d081d183d8479b1ae4aefbe46097f54

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.37-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-pypi.yml on antaloaalonso/sixtytwo

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

File details

Details for the file sixtytwo_cli-0.3.37-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.37-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dcb43688ebe08a527a2eddfdbf1a3a627e66e4761718d08e8187e7932f6e16e5
MD5 71fa982d119fc34621e9916ce038aa40
BLAKE2b-256 341aeaa4aa226cc5b078b6f475d4990b63c7a9e1438aba95e2782c39fe6aba8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.37-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on antaloaalonso/sixtytwo

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

File details

Details for the file sixtytwo_cli-0.3.37-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.37-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5efa4dc7546c0b708a75d57256f004c91a60b139770e5c4e3610cd7bd8eaf33d
MD5 a39965d7ea6006aa8d9760848621416a
BLAKE2b-256 c6e3ac1b55de3428d27ca5bd02369eb4120971cf569a0933062361d7a14de65c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.37-cp312-cp312-win_amd64.whl:

Publisher: publish-pypi.yml on antaloaalonso/sixtytwo

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

File details

Details for the file sixtytwo_cli-0.3.37-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.37-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 532cf7d1b0b20c440179d44b00186cab1f4ea0f08a9f9e1d2296cd3ad11994d0
MD5 608f9f37339214679267ce2662422f1a
BLAKE2b-256 2e67397c66b855a8d2f6f75c3d5d2596bc920e56f682655c9e69f85ec5adbdde

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.37-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-pypi.yml on antaloaalonso/sixtytwo

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

File details

Details for the file sixtytwo_cli-0.3.37-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.37-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7f8af08218f911f28c1fca899e38b9eaf006a302cf58e04066dc831d09106ead
MD5 869f6f77cff5c638938f61ff55e5e67a
BLAKE2b-256 b6a66e92187d678cc1aa778ae4b8d86e921023651164f3e9f778549785e84214

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.37-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-pypi.yml on antaloaalonso/sixtytwo

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

File details

Details for the file sixtytwo_cli-0.3.37-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.37-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8eaa7321764bd78a65fcd1f489eb632c56c8ff3c15b770a2bbf3db867fcf6436
MD5 5a8141c3b6854a52a15feb7ddeb70bb3
BLAKE2b-256 14e91db295dbf0ee51a5a17feeed93c22f6752663d497fb42a39525212146b79

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.37-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on antaloaalonso/sixtytwo

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

File details

Details for the file sixtytwo_cli-0.3.37-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.37-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5be59a4b3918943d8eae70fe88e6839b3012aa7197a9c17662533f155ac21fe5
MD5 8e232af4368bd643949814868c435877
BLAKE2b-256 fb81bb245a4748c6220f6cc92be7ca76b210258fe119c101827b543aebc9c84f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.37-cp311-cp311-win_amd64.whl:

Publisher: publish-pypi.yml on antaloaalonso/sixtytwo

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

File details

Details for the file sixtytwo_cli-0.3.37-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.37-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0d3145a52e17dc811a3bfba1e4ca556c5b8bc362abeb3dc3cdb863bb113122b4
MD5 62375893dff4c5e749be176abdb40876
BLAKE2b-256 dbb7390b483bd0c8bb65ab0098e28bb1574a294423f98bac9502c1bf759a1e15

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.37-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-pypi.yml on antaloaalonso/sixtytwo

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

File details

Details for the file sixtytwo_cli-0.3.37-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.37-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 15dee95007ceb2215a196cbfd6078e53346d13bb2b472e5fc1ce75d864689ff6
MD5 2b55020e0c406e71c28f95872ad8f9b9
BLAKE2b-256 0397c436792022a07df7ae0af9e53f7a789d8a3a93260d1dd35fa58561fee4be

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.37-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-pypi.yml on antaloaalonso/sixtytwo

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

File details

Details for the file sixtytwo_cli-0.3.37-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.37-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86d51890065e1543833fccfffaade781695c2264e3c1dcf36cccb31563a1e9fe
MD5 7ed587147d0400a05f93db96e0cd20d4
BLAKE2b-256 f4bb330d0d1d570ae463e124d1c7463844b25489a6354101ea3fa20b8a8587c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.37-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on antaloaalonso/sixtytwo

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

File details

Details for the file sixtytwo_cli-0.3.37-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.37-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d08961578ae03cc874131450f79ec87048a26c25c68fc1618cc378695e6c5daf
MD5 0950b019c1886d1e6f24630fb832c240
BLAKE2b-256 42bd04cc036a2b5b556f26b5f83ddd1eb49ea07c5c2ff240897bf3e7fed35352

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.37-cp310-cp310-win_amd64.whl:

Publisher: publish-pypi.yml on antaloaalonso/sixtytwo

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

File details

Details for the file sixtytwo_cli-0.3.37-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.37-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1c079409e894fc869dfe699e0529c4c264dc7db23702e093859c075798c6ce57
MD5 4022e90a7725154aa2e36317b3c7241e
BLAKE2b-256 4a2133d67e47d9e2bad583ef4188f0d9d5b9d2564034881fb7412cfaaf9fd60d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.37-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-pypi.yml on antaloaalonso/sixtytwo

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

File details

Details for the file sixtytwo_cli-0.3.37-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.37-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 753748a761aa2130d54de7ebbcb70da440f0677891d10c98f90ee68c96e54389
MD5 52b24019ff7dd490668df19c8d1de343
BLAKE2b-256 2e6d9e166151eada2b6c007d8ca11948fc3ece03378c5b9b2b14e5565dc15c95

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.37-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-pypi.yml on antaloaalonso/sixtytwo

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

File details

Details for the file sixtytwo_cli-0.3.37-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.37-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5502f3d998e17b1bc04f7e85558b8903bbcc5acc87f478090f80136bd6756c58
MD5 56dab21fc6635570c167deb7d50cb44d
BLAKE2b-256 5e0055cca6415caddff9a75304902a50df08ea6d787054db197c3d2f34565bc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.37-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on antaloaalonso/sixtytwo

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

File details

Details for the file sixtytwo_cli-0.3.37-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.37-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 58aff80ee5eb8a10771f337062a8709ce9b30e1fbcb5b01b3b73da0bbc0ed248
MD5 519e16df8229ef68c6b8f5143203e3f8
BLAKE2b-256 1fc1b9179b8154f0a3661083747c1cc57eec75582ebc997805d17f009511ab59

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.37-cp39-cp39-win_amd64.whl:

Publisher: publish-pypi.yml on antaloaalonso/sixtytwo

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

File details

Details for the file sixtytwo_cli-0.3.37-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.37-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f24b47190e2f1d618a98fd2d348f49cc2f2fd064872878e8e17a2c14013e6bf6
MD5 a1e9209a593a48fb8bfe60e53dae65f5
BLAKE2b-256 cebf28dd5d95c9ecf6c450784b81b12a2eb8db21da16a4b5708ed3641e09d6b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.37-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-pypi.yml on antaloaalonso/sixtytwo

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

File details

Details for the file sixtytwo_cli-0.3.37-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.37-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9a2fd9ecd599d9af2fe75896274a0786aed3b51c91e8b82022f4802a22182e70
MD5 ae59325e2bba0486fd9e8be2911e7dd5
BLAKE2b-256 4900556ce8d5250b8a6497767a6c1a1a41cf97ac9616e9a199cdb769f7b1cfc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.37-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-pypi.yml on antaloaalonso/sixtytwo

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

File details

Details for the file sixtytwo_cli-0.3.37-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.37-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eddb87ec2d715d3e1ee888e2d2ab6ad7ee473a7e0a979145fc4bc5c23c500483
MD5 5a6490f981e8aad8e5a2e3d6bee7eee2
BLAKE2b-256 a8759d8fbc89b2aa65d19ad425c51153e1f56199618fa624d02defcec38891a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.37-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on antaloaalonso/sixtytwo

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