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 (qualification and distributed PyTorch)

On a GPU Kubernetes cluster, start with a qualification audit. It checks the capabilities that matter for large training jobs: node and GPU readiness, the GPU Operator and RuntimeClass, RDMA/Network Operator, CNI, default and ReadWriteMany storage, LoadBalancer support, node-problem-detector, the monitoring stack, distributed-training and queue-scheduling APIs, and the RBAC needed to run and observe workloads:

sixtytwo k8s qualify --nodes 4 --gpus-per-node 8 --gpu-type H100_SXM \
  --output qualification.json

The default run is read-only and writes one machine-readable evidence report with a remediation per failing check. --full adds two functional probes: a cross-node ReadWriteMany write/read test and the multi-node collective test below. Checks that need a representative workload, such as training MFU and disaggregated-inference throughput, are reported as explicit not_run findings rather than being inferred from synthetic probes.

For the fabric itself, 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. sixtytwo k8s-dist still works as an alias of k8s dist.

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.40-cp314-cp314-win_amd64.whl (7.1 MB view details)

Uploaded CPython 3.14Windows x86-64

sixtytwo_cli-0.3.40-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (9.7 MB view details)

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

sixtytwo_cli-0.3.40-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (9.0 MB view details)

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

sixtytwo_cli-0.3.40-cp314-cp314-macosx_11_0_arm64.whl (8.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

sixtytwo_cli-0.3.40-cp313-cp313-win_amd64.whl (6.9 MB view details)

Uploaded CPython 3.13Windows x86-64

sixtytwo_cli-0.3.40-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (9.6 MB view details)

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

sixtytwo_cli-0.3.40-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (8.8 MB view details)

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

sixtytwo_cli-0.3.40-cp313-cp313-macosx_11_0_arm64.whl (7.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sixtytwo_cli-0.3.40-cp312-cp312-win_amd64.whl (7.0 MB view details)

Uploaded CPython 3.12Windows x86-64

sixtytwo_cli-0.3.40-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (9.6 MB view details)

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

sixtytwo_cli-0.3.40-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (8.8 MB view details)

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

sixtytwo_cli-0.3.40-cp312-cp312-macosx_11_0_arm64.whl (8.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sixtytwo_cli-0.3.40-cp311-cp311-win_amd64.whl (7.2 MB view details)

Uploaded CPython 3.11Windows x86-64

sixtytwo_cli-0.3.40-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (10.2 MB view details)

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

sixtytwo_cli-0.3.40-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (9.4 MB view details)

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

sixtytwo_cli-0.3.40-cp311-cp311-macosx_11_0_arm64.whl (8.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sixtytwo_cli-0.3.40-cp310-cp310-win_amd64.whl (7.2 MB view details)

Uploaded CPython 3.10Windows x86-64

sixtytwo_cli-0.3.40-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (10.2 MB view details)

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

sixtytwo_cli-0.3.40-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (9.4 MB view details)

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

sixtytwo_cli-0.3.40-cp310-cp310-macosx_11_0_arm64.whl (8.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sixtytwo_cli-0.3.40-cp39-cp39-win_amd64.whl (7.2 MB view details)

Uploaded CPython 3.9Windows x86-64

sixtytwo_cli-0.3.40-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (10.3 MB view details)

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

sixtytwo_cli-0.3.40-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (9.5 MB view details)

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

sixtytwo_cli-0.3.40-cp39-cp39-macosx_11_0_arm64.whl (8.2 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.40-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 428746bec4e0601a6e433713632819ec95eda38ce83644affbf631a2421f5fce
MD5 f527d7690e1c8e7b3d253c8c2ce88447
BLAKE2b-256 311a4c428142da0a6df1e9c234027e4041761563f5450aa3b8e70acd9e4291e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.40-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.40-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.40-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7a13b6ee94d3131807996b1a927b0a74e6ea15f069b3cb1b00288b67a649b3c8
MD5 a3ec233207357af0d0c176d0d522dcc7
BLAKE2b-256 f5217976aadd701e76af57b42c26e3219ec817ae3891294495b095ce9dc08747

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.40-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.40-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.40-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 82bdd51df90f583cbbd6444f8a93b70a877ba85577dedfc46fd0e15de6cec983
MD5 903c6b0f63e36584186d174b564c2c4d
BLAKE2b-256 b56fac50bf3793525afbf0ce2b9668527abf2846f45a170c4f1e114da360bf15

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.40-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.40-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.40-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 38a085d3ce8cde20300bd8a413aa999671b0b195b2a6203911c34f8d7494bfc1
MD5 8420abde0468716f974d34702e83a645
BLAKE2b-256 022dac40e355bea028f601f03a963635f27a3e0a217c8653b27ead3d32c071cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.40-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.40-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.40-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 97ad11162599779285aa84fff85f9d57995bf61a822cb3ae50f1e8d80ba4347c
MD5 0f5c0ce9a83227b63930e68eca5f13b7
BLAKE2b-256 cf60697527ce617d3a61c917d5b124da6d9173feab653a93ab1e4a3c261eaf69

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.40-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.40-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.40-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6bf478a1528250451821940bf955beef98f733455f894100c99e447d14ffada0
MD5 f6c31ee284caf6e4b0b29a865deba751
BLAKE2b-256 348fe622c17b96b0b513e4176d42465b1b176dc5da58e93fde434fbfc0c33237

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.40-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.40-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.40-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 26bc4a6cc1e6032211fb481292ac73977863ed1b639772c80aef39f271d927dd
MD5 6ff88c6b9516dfa8407dc8a37b053db3
BLAKE2b-256 8db1b4ce17f1aabbe91541e7a47bb6b4654cc18e802b1927551f9500174a4b3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.40-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.40-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.40-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3557795653b352514967fa7bebfdc015399dff53a954b8a9069039861077f1a3
MD5 bfd53ee7176b86ae2f9396e26e8f6738
BLAKE2b-256 46eb7cd434acc595f7a750b6833fe9f1527d98354a4582e385938b27df464793

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.40-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.40-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.40-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 33e1db183d90e7dca6a8681070672c63027bd92460cabe76de0cac16331fd7df
MD5 f8ab7223d4bad5110943c23fc60db618
BLAKE2b-256 6c9a47aceed16960e5cbe45682c221755eaddc1cd21950285845d23117ad9cf5

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.40-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.40-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.40-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3ccaefb97747a6f50447d31737f195fa6f6b335b66d86df4ab60b2a501e9cca5
MD5 0eefab812c3a3fd3360ce32286ad234e
BLAKE2b-256 2dc7927d91ee3c6eb57417afbd5c61bff6eac330626e838fe7c462e69d2f272f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.40-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.40-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.40-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 af09d0c7875becb24088da47f5630943a78729cebe1b5c0c6d1f1be3c0d07ba1
MD5 2959c6236746266622e63f06313eb898
BLAKE2b-256 c76938231c32dcb4cc11199c91cb227d9d1c8750d26d4fcd53960c114c01aa77

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.40-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.40-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.40-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98724ed0be316b769f92f8cba43451ed682004f9e08c5c3669faaa8700e0b963
MD5 54a4f9cec5de630de4da0966683f6bb6
BLAKE2b-256 dba048cf21b117c2ae75d127375f4118c006831c93fa201abf12de17f07b6609

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.40-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.40-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.40-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6356b9092268fe9b9c2ecedce7c10df8e12b6e85b6347be2fe5a4ef64d84d48f
MD5 575473a4f042c07a5c7b0e3f65d85bdc
BLAKE2b-256 37330891771776b9fc2cb0fe405edab28ea7e64cf4d8bd6cb3cff573470af66b

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.40-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.40-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.40-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a8b64011d8e5d793338421637dc0899d98260debe0bee050944480d2158df0c3
MD5 39a344da58898767e33e733dee04a21a
BLAKE2b-256 efe094f82cd37cc84f00753bb921cfb39a4b38d831332d5bc1c7274e1bcdf240

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.40-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.40-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.40-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5db1d88cc483694383c19288e9002125b92d26a5c94446ebe4781d060cd63526
MD5 a909cc8d59c7fd4f78e4889299da81ba
BLAKE2b-256 431ea549d1e1d91c20a456ba3850a9525869309dadcaee4dbbcab9014244677f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.40-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.40-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.40-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07df3ec7ec25a4047b99a57554283cda1f8c70e624ff5e11241d08db89ba005d
MD5 fa330624389c57a516d78b51ab153b05
BLAKE2b-256 13bd33dace628cad8a171c3c249acc49a90a860c8a697828ad73795fc9940603

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.40-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.40-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.40-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3df91141f7208eb3e1e9ba885940511a0b1a0208cd071eb1c9f9f55172239b2a
MD5 619489e1eef9f2801eee75a2f525f3b5
BLAKE2b-256 414c999e8a08d65782cc2784acaecd0d35eda1d16293c52efa04417a135e5a7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.40-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.40-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.40-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 886f4579dff4d41d20349d9103011969d51e7f4d059c467aaab5a3224ded18e3
MD5 a5f4fc79732b5210d080af2e29f3893b
BLAKE2b-256 9ca613b58d96968236841348c21ebc0910236fe51e1c4fce7428678b1a31d191

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.40-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.40-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.40-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f5086a6dcb3e88032770076df695e7414b1b509a63c995a9f6ff726f8f94452a
MD5 a75be591cceac48e0708947fc66f2c48
BLAKE2b-256 e1fb8675e9ab5334f533c5b0df38cc16a586c30c8d8336e91595c02e59c35cd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.40-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.40-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.40-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61a0a30b2368f2a7b1f9f41cb5a3bfad5e117114e99b69d504623a8c8b256f47
MD5 0ea31115f4f003cc8e42be5bbb5356e4
BLAKE2b-256 07cffe1750885e3680fbc7f584df7d8700be5e3ddab7093ec2d8e8415593a123

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.40-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.40-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.40-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d17f9825b66f001c4a618204455c08151ab1a5da6024b8c7cdfdcf7074f9419f
MD5 88600e4c57c985189eea3457b584f6a7
BLAKE2b-256 bc00ddc166dfa8dd8fec6f6a91d8a78c327f843f7c7e5a91010a1b1356266aad

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.40-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.40-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.40-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6888929e18d3ce60409923dbc605f4b5746aa9f81d7f5a20aac3b01a8898b51d
MD5 ec2eee42987ab88d7b01f5e98ce9dba8
BLAKE2b-256 fe601210b753aac6de60af143b1283d6a50a7c796ae9bc0ceb5d0e2e3056b70f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.40-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.40-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.40-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 83951a8f01820a7119f56d052cbc2ce87a014662a32c166cfac640ae9f3961d7
MD5 156fa9569c860dc75a97f6a34ff5b05c
BLAKE2b-256 919b3630877e182f37bd40cd8f6b08c879a65c5c5df1e20ad8418bc00863759e

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.40-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.40-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.40-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 267e2092101505001a47e94d4b374e0ba23ec0c75f7f04622ce889364741071e
MD5 355d7d63779ccf465b85e44dfe065dae
BLAKE2b-256 7e3240f0c748a0a402b427f10b21a65f1c489f7fed465f1e5bdcd37ab591eb36

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.40-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