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

Uploaded CPython 3.14Windows x86-64

sixtytwo_cli-0.3.35-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.35-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.35-cp314-cp314-macosx_11_0_arm64.whl (6.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

sixtytwo_cli-0.3.35-cp313-cp313-win_amd64.whl (6.0 MB view details)

Uploaded CPython 3.13Windows x86-64

sixtytwo_cli-0.3.35-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.35-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.35-cp313-cp313-macosx_11_0_arm64.whl (6.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

sixtytwo_cli-0.3.35-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (8.3 MB view details)

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

sixtytwo_cli-0.3.35-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (7.6 MB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

sixtytwo_cli-0.3.35-cp311-cp311-win_amd64.whl (6.2 MB view details)

Uploaded CPython 3.11Windows x86-64

sixtytwo_cli-0.3.35-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.35-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (8.1 MB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

sixtytwo_cli-0.3.35-cp310-cp310-win_amd64.whl (6.2 MB view details)

Uploaded CPython 3.10Windows x86-64

sixtytwo_cli-0.3.35-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (8.8 MB view details)

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

sixtytwo_cli-0.3.35-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (8.1 MB view details)

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

sixtytwo_cli-0.3.35-cp310-cp310-macosx_11_0_arm64.whl (7.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

sixtytwo_cli-0.3.35-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (8.8 MB view details)

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

sixtytwo_cli-0.3.35-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.35-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.35-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.35-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3ac715b93b65e71eb4318daad62633593a9b323604a5245f8fde35aba04f354f
MD5 24a995297dc620145a1eba3d268a9a89
BLAKE2b-256 0168111ac5739b94f3fe672d8bb475289f059b585de9c22154240b961df6085e

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.35-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.35-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.35-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4b39f6f738a88a10912d4e58092a94c02892253237217e2b22f316adca12de59
MD5 8b007fc94373293ecc9bc5d6e12355e6
BLAKE2b-256 c17dc62a2e842c47796685bdf25b7de8b27cfc9196dc56278addaf743ed8ca44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.35-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 463f7d80cb4136b7786b95584811b0d792cee3c51e78fe116631609355b78d48
MD5 f1bad1d875c35b22db5c8144bb720088
BLAKE2b-256 0d3c21989d24436b7c1454f27ff414457ac9bd1c043ee8cb14683610ac100cea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.35-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20d2866d1d39da08a6d7c36b72c34c93a9dfd641b18623a2da09a484f9047883
MD5 eea196d36a42a15dd1c242ffdbc30e27
BLAKE2b-256 296b0ae40ce552032ae052ccb631d914df62be824e411ab58159e747e0af0a3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.35-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b2c5271af0943da9cbfeb1dfa24a1f0a5529427a5cc5826d2059706b98410b86
MD5 e32f5820f7246a52b8e38a891af1f514
BLAKE2b-256 3e5de1e24ceac349eae3d57fc135d6fa90fe1de383c55ccd68a7d10d5e5b24ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.35-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.35-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.35-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c0e92ed1de773f3e1bebcd0619159a6ac240cea6a4b56672a37365dc3fc9361a
MD5 00c57e58fc7a27150e6147fee7b98174
BLAKE2b-256 4d3260a4a02cae949acf452fb0ff437b812622530482e4ccfa0d4bb198588253

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.35-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5447a6528065e5277674b05e064c114e1020168da4feacd65f6474647921c24f
MD5 e1600df9f1c6d6a2a33aa515b34bd951
BLAKE2b-256 84c450d04346a00b3f9517595f52900616d27f9fa46588795927739b4d52d2d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.35-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6968878f5bb4cef3a27382f76783b1c96a5edf77ec8f65c57f4a178037c09ee
MD5 fcd8e05116f15132c682f10f5e05a7f5
BLAKE2b-256 2def3624f3581efb2aec02a554f9324670ee8deecce6a8c6251ec6b3a742f868

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.35-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9bde0125dc455e9a1476fcb7eba54d7fa6fd8fd660757cf39797a29333f39569
MD5 20073951dd63ae516696514b3aa7b17f
BLAKE2b-256 a66b985c909b96a612b3574cf6ffea4f37bd1efcb00625ac7c92fc965f3c9216

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.35-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.35-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.35-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1c9fbff1bff3a83d3b04fe8ea7775047364b9195ee0beab5fcfe72f79ec03f6d
MD5 eb9aba7a38352fb6c8ef9f161f635a54
BLAKE2b-256 d335a5966f5f51d01e883ed6b3350a48d6e17cce84788d3176c50656aadcb1c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.35-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2bbf8033eb0f63386afffa4a1d06aa8b9c940ffd1d895750c1ca732d4a78b7ad
MD5 e51b6eea1e0a0a4000f09757036e260f
BLAKE2b-256 0805eee3169fa67b2c80f89d5605245458621431579270baac73c65cb4cd39e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.35-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 286bbb87fdbf2ab425210e60e28d791ebef6b3a0dcd6c2172edea82602bd6b9d
MD5 444efcf7af60e5157e0c56a36ac44705
BLAKE2b-256 fc1bab5d55d4a7c2917c9d3c48b541f32bafc1fda989e2a2e798b658acefeeb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.35-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3fa321f779d0cc6f3b3d33230860886fb02d8115e6ce4632ad1e0edd6840008e
MD5 efdad8cfa1f1d0e87a297a4c0b254500
BLAKE2b-256 df1898720a9adfb1330f72991702177e3d95f2cc2be3c2801b3d10b5226d9045

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.35-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.35-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.35-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e6f6f2ed017bdbb45067b35232ce460011248b8948ee17a5096f46bd62548200
MD5 f8c8362892a5fe4ab58e255f02c0eac7
BLAKE2b-256 fc087effdb9fed83942fdadd873335119e140b41bd479b94e25714fd6449040a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.35-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e2fe03428fd5c5c112f0c83d56a82a4380138d0aa36bfcfe32f4666e4b26794b
MD5 8d5df7709fedf6aab36427df81836698
BLAKE2b-256 720d079b5e8df48401ae0436638958822016264bd4b3c103036d8f4863a0e4c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.35-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e3fcbd244d765bd087d5df4e574f83acae897f0cb99adc7cd2dfba804d8d2167
MD5 f0c46a6e42a4400fdd2703ef7bc2aff8
BLAKE2b-256 309e600cae47da91e93308d810829ab66dbb206e2b1541809a06f8b09e0ad782

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.35-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6f99d3ce47205a89a37796239327727c8d37256d63cd98950fae371236d0a0c4
MD5 84ef6f7401496650e564610af2b90700
BLAKE2b-256 d632d05c6ed96b11901b660c1a91fd636701525b96d741839f87a2a219f08b33

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.35-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.35-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.35-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a66e62416cd8bba6a7bb753f32e92e2dc5072213b7ba1be7df8ad1e0cb07c272
MD5 3fee3a647c61a7e64f34049604b0c672
BLAKE2b-256 48d553b83151888168fd3e28655fb8ca5042c3b403d6e1477fb03e8926b149e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.35-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5aefe80571212ddb53f6c26ce6367b31da41170c4ca498a4fdfcb786935472b2
MD5 5c8ebb7664e1da673b7092e175cb0db3
BLAKE2b-256 67d8883383a9caf961db369f2b8511ac7c3d9e5903a5171f45f9662da077024b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.35-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8101bdef3ebbe6f2f00eb050374b83717d391a6862559b887f4dc17c0d6f8462
MD5 f1162a9cc42a5443fd1188d8b173b6b9
BLAKE2b-256 9b7b352129b651acf132a23dcabb7f3e0399b371958a8b6a65042442d8d1cc19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.35-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b2fc2a9a2b331a49e18d8295d7060695d190a7b01269682a7655f7f968ae66ad
MD5 a91d735c711cdd8f5be1815c1f0906d0
BLAKE2b-256 e5da8f375718212014fcd56d7a21f721c41ff59a9b473b1bb7caaf44c1b6f599

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.35-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.35-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.35-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8e61d91cca386416c57bc8deb813755ce769936493deca101df8fec56c0a0cfd
MD5 07e95025bbab39de169c6715b901cd0d
BLAKE2b-256 03bd0534d63e6d1444d31972b060e205c3f7845b581b318a1b37590b5952d161

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.35-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 af08f400b677341fe7964bd348da729844994ed0cf0cff08c763687f633f339d
MD5 e4a931f55e988820c20a8a1bc2c07ba4
BLAKE2b-256 9877969fcc628d52bada97e974bb3d4789f75f925d8dbc4071ddbd357222e15c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.35-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 665a143b4c42986f6bdb26771f025eccb3ae4fadedd841ee81385358a362c2c9
MD5 018570386f9a6dbe0c84e6276f7ddbfe
BLAKE2b-256 c31ff0079fc04d5ea6dc28c521975abd71e5e5775708ddd74c7381a7386ede58

See more details on using hashes here.

Provenance

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