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

Uploaded CPython 3.14Windows x86-64

sixtytwo_cli-0.3.34-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (8.3 MB view details)

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

sixtytwo_cli-0.3.34-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (7.7 MB view details)

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

sixtytwo_cli-0.3.34-cp314-cp314-macosx_11_0_arm64.whl (6.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

sixtytwo_cli-0.3.34-cp313-cp313-win_amd64.whl (5.9 MB view details)

Uploaded CPython 3.13Windows x86-64

sixtytwo_cli-0.3.34-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (8.2 MB view details)

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

sixtytwo_cli-0.3.34-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (7.5 MB view details)

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

sixtytwo_cli-0.3.34-cp313-cp313-macosx_11_0_arm64.whl (6.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sixtytwo_cli-0.3.34-cp312-cp312-win_amd64.whl (6.0 MB view details)

Uploaded CPython 3.12Windows x86-64

sixtytwo_cli-0.3.34-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (8.2 MB view details)

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

sixtytwo_cli-0.3.34-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (7.5 MB view details)

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

sixtytwo_cli-0.3.34-cp312-cp312-macosx_11_0_arm64.whl (6.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sixtytwo_cli-0.3.34-cp311-cp311-win_amd64.whl (6.1 MB view details)

Uploaded CPython 3.11Windows x86-64

sixtytwo_cli-0.3.34-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (8.7 MB view details)

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

sixtytwo_cli-0.3.34-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (8.0 MB view details)

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

sixtytwo_cli-0.3.34-cp311-cp311-macosx_11_0_arm64.whl (6.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sixtytwo_cli-0.3.34-cp310-cp310-win_amd64.whl (6.1 MB view details)

Uploaded CPython 3.10Windows x86-64

sixtytwo_cli-0.3.34-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (8.7 MB view details)

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

sixtytwo_cli-0.3.34-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (8.0 MB view details)

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

sixtytwo_cli-0.3.34-cp310-cp310-macosx_11_0_arm64.whl (6.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sixtytwo_cli-0.3.34-cp39-cp39-win_amd64.whl (6.2 MB view details)

Uploaded CPython 3.9Windows x86-64

sixtytwo_cli-0.3.34-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (8.7 MB view details)

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

sixtytwo_cli-0.3.34-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (8.1 MB view details)

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

sixtytwo_cli-0.3.34-cp39-cp39-macosx_11_0_arm64.whl (7.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.34-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 dfe5219f99226fe407d0c51e321ef81ead05d7897f1298cd5d2aee07d38738bd
MD5 cf2cbd8d912c2cee1cd9d1bde96d031c
BLAKE2b-256 2c79c4648310d9f666157acc3bc62294cd9d94c2b418618554d69d085c4d9723

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.34-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.34-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.34-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bd2748f2eb2c8a5eb0f17c31bfc41f31f10bf964a42a4d207c43b9af9d5ab120
MD5 4c9865dbf2db73ac2475153241111709
BLAKE2b-256 86b927428190fe2b31f211ad4bed40bd1d8c02ae0389e605969d975e88490343

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.34-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3a0b973a2ebeca4b8315b76aba4b56ff14a551e3bac6ca6b2cbb967786a22db1
MD5 b7c82cfac5054bdd5173edb792902749
BLAKE2b-256 a8b06cb61a840c820ae8caa37aae41e9fec4596b35bdc238f9e80b0fe185024e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.34-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 736bc34ae45a219619a8548023e9136b38d44a8164f359d245987819de089d69
MD5 c6083ec18ff84083c1d3e18635b73956
BLAKE2b-256 cbcbd24f78a08d485d05bff06f4d9a88fb975f9ff9b32760d004ca65a34b5552

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.34-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 baaa7671f22e8ca9dc7faa56aa9aec9fa28770c8fd988689cfca13c74563fad2
MD5 2d5f0fa0be5b0a2663797cf1e25a7603
BLAKE2b-256 dcf1176281c244992f88f7ab3ee7852d8adcc7a6f4e32c7afb4e072046803c46

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.34-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.34-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.34-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 06265cc9899aeea20278e88c08f37f9287776862f6b412acb37eb2baca53c71c
MD5 1597b44889e5c01374c30d89dafbf8a4
BLAKE2b-256 929dcdf7f568d72ea6ba791776daade304b91b73e62678c156d48fc762bb8bf4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.34-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f4b850b64aae4df8855baebaf46b4febe22cfe9025945b51063c7860cb5b452a
MD5 dee6ec42ec442c55a5d3a788dd3726c7
BLAKE2b-256 23d6899ca7c2d56d9d06743b3792d4d0382a29e660955b17ba861176af5afa6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.34-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a902a81c87759b5522a040bed30b2581a19229b489e3da3ac3a915de89cdd05d
MD5 33447332b8c0b8059b7289545b683af2
BLAKE2b-256 c07b9f660e0a032c2c8a645a1b4f5f6dd029a6c1be7846cfa3514c761a889171

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.34-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b68e00375bf56327eda4f2269cb62a3c6d482d198de98b5b3503412e4db1f0fd
MD5 5a308ba79298634db8edc1eff089ef7d
BLAKE2b-256 d58c59c1c0ec6c106b5dc3be0d091f11989592ad7a1f7eabddb59a03c195d16d

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.34-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.34-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.34-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f35c03108e4056189026e3d0c5a351559ee39d3748848d8663a263e96078f7d8
MD5 20bd81fb95ccc15b9d323f385e182e74
BLAKE2b-256 645be155e9a703d9f96081e699449c141404e92ca65217e8361344200a6ee6e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.34-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 84ffe28c4145911e16f3eea9a2fa37d03a47f3d09364c9f59385a72142d8f153
MD5 d9e21ffbe6350a8b96a46010fdd24169
BLAKE2b-256 65a75dfa19e0ded7b220a7acaeb1b1a4acf9d04f6b63c077dc149c83d18321c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.34-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 88b75e57c51a3a2bbcd9d511d4952bb4f212ae9addb24e17e099e279f9731fbc
MD5 257a9ad02c7aff68c242568e3317b751
BLAKE2b-256 119e82f15a1daffa5c482caaace94f5fc1d53506980b3ca9ecf702bf5508afc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.34-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7480b95dff4324726a836ec65108aae5e7aaf4fa9fe4e83defda40da21bd5758
MD5 8cfbd0b5fa59e54a4debdcb465abef92
BLAKE2b-256 41ea64e386f80e8b10e18b21cb2d0c4a9a7f28bef03030c2953939e646b03354

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.34-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.34-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.34-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7af6cae509726c8f529396e53b1c11a91e436e401bebf761fd5f35769c1340b9
MD5 c3ba45021898b4a15ec375d4388b1363
BLAKE2b-256 192363d04fe59d1fb749067b093d45a5431c35002b1d997765acca0b46b76bbf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.34-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 199312e7a8a44ed93de409ab47134dd23d3b63cc165ab1c1f29633b02b5e1289
MD5 34d5b2f5475d0234b8e21a43c85db8bd
BLAKE2b-256 ad4acee0a8d5b2fb57e8c892df6d0b4c4a16b2c4bd9e460b5b622927a80627c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.34-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 129ae44a9038c31a8ecacdc1071a6b1d0f42473c77121212b39ecd4c900c6d65
MD5 c9bf7bb78a11e0a68c09a9b3956edeb3
BLAKE2b-256 182c3e398e8d72a64eb74ff82253e1554eb8d43c4757fb10c7c02fa77974c3a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.34-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2adef68f549ffbf5c33dff9f9feb718d2104d749b4e1527ef41905ac6eee342c
MD5 fbd8d5859f3c518ebf3e564d325118e5
BLAKE2b-256 9c5533eb2c141c21e6d866aa1615dc3529837a95e3a808fe40c1321106617d12

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.34-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.34-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.34-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fe32d91b8d9c934e0fbe634edef5235ab28d4e803132f60caf8a12487da98154
MD5 291c4a70bf6cadeb8e6a72311ce58370
BLAKE2b-256 637cf491a759860453c52d9902f4c8a24ef61041a2645bb9a64be61e672ed7f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.34-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eba6ca172a86c54c0630797dc91073471948052dbed61da712ce0d3a0e4b0a46
MD5 d271b6a5fcaeeb4869f75cb2d0bbb306
BLAKE2b-256 2f3151c74533f5aa6d3ce71ef7855c6b66cc275637dc5bd9390212d80d544b74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.34-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7aaa649e8ed7b2a78baedc9f38f749e8ae2245fce00db7691e9a8c5d071ab11
MD5 58a502067b3c965659e67e9c4e47f188
BLAKE2b-256 b5665784194df53d6840a791157e0dbf9f4fcd1d9daa19852d68d17b6ca80c0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.34-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9680d6af5c3b440c9aaffafee05f0ee555b8f9f23827bc74dd5d5c4029b15396
MD5 c029707fa44ed8f6421c4f3a9bbe149a
BLAKE2b-256 221ea0794e7fdd83765488ca5a48f0caf693914068c7645ccbb848633c59650e

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.34-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.34-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.34-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 914c743e6116b44863d2f57ee8869b6cca93715167b3ae0983f4caef9dd236c6
MD5 66fa22f7b7a1bff25cc371587e54acb4
BLAKE2b-256 cbeb2267388583ede970a2e5836c91285bcaa3addf590d59f35c3635b78c771e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.34-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2f5777fdf1c1e4a4a1f187331d16f67efe9e76f13ab6f4f63fb8d788a72b5b1f
MD5 e8ce2c71a40752a45606b353a8246831
BLAKE2b-256 28c91509e4da3e3e7c507ae630134edaefb057a8f26b6b7be6d5c8fa825e416a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.34-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c24af83bf97a124a81a802822eb5118ade219e100cc35b391fa0f8eec7f6aad3
MD5 c3970e5fe76483e277139120c6fb5ac8
BLAKE2b-256 b2dcb8fb75344ecec130873ca669fe5f285830c1d8c418bad9bfa240eb87ec2f

See more details on using hashes here.

Provenance

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