Skip to main content

Sixtytwo CLI: `sixtytwo rent` reserves reliability-backed GPUs; `sixtytwo` qualifies, monitors, and NCCL-benchmarks your own GPU clusters, with Slurm/SkyPilot integration.

Project description

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 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.

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.

Project details


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

Uploaded CPython 3.14Windows x86-64

sixtytwo_cli-0.3.21-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (43.2 MB view details)

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

sixtytwo_cli-0.3.21-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (42.3 MB view details)

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

sixtytwo_cli-0.3.21-cp314-cp314-macosx_11_0_arm64.whl (6.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

sixtytwo_cli-0.3.21-cp313-cp313-win_amd64.whl (5.4 MB view details)

Uploaded CPython 3.13Windows x86-64

sixtytwo_cli-0.3.21-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (43.7 MB view details)

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

sixtytwo_cli-0.3.21-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (42.3 MB view details)

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

sixtytwo_cli-0.3.21-cp313-cp313-macosx_11_0_arm64.whl (6.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sixtytwo_cli-0.3.21-cp312-cp312-win_amd64.whl (5.4 MB view details)

Uploaded CPython 3.12Windows x86-64

sixtytwo_cli-0.3.21-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (44.4 MB view details)

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

sixtytwo_cli-0.3.21-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (43.0 MB view details)

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

sixtytwo_cli-0.3.21-cp312-cp312-macosx_11_0_arm64.whl (6.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sixtytwo_cli-0.3.21-cp311-cp311-win_amd64.whl (5.6 MB view details)

Uploaded CPython 3.11Windows x86-64

sixtytwo_cli-0.3.21-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (44.4 MB view details)

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

sixtytwo_cli-0.3.21-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (43.6 MB view details)

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

sixtytwo_cli-0.3.21-cp311-cp311-macosx_11_0_arm64.whl (6.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.21-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5283c1fcf4d0ba7d92b5a6cb74b2e509d0a63e57a53bdb2a1d6cac64e160f882
MD5 c1119fd5a7017c4e77fecabe7e5f831a
BLAKE2b-256 215096402b0d5152d6450f5945b7e37f894fb714a129ca3d0576d8549aea5b70

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.21-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.21-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.21-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6d9fd24be4393ce65da834307da76c85343931d578fde940c2a0c1a6198945f6
MD5 c556e0e931e7288744b07a0765cf9f8e
BLAKE2b-256 036dd50b94eb185f1691614d27651e7afe3362d7cfe4c1a05b262dffaf828b10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.21-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4bb6e4fbf17eda0ec3a18df5204528f1800356ae0baf8941693f4c9fb103f1b0
MD5 a9ff5535a7f128043b8f7d73914fe827
BLAKE2b-256 ea8358212eb14bd360ce9a8f254da0762bd0b4de9cc6c13eabc820a6d437b38d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.21-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f2c131ac62299f22e6bec2b09da7dcb20d439cc4ccb8fd7153c6a04caa2f439
MD5 fba3c76cc330bfdcb4a894d240df7173
BLAKE2b-256 fd97671fb511e7269f3a0ffec5b2052c2cad86b70693c92331b0d02850a3975e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.21-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a41f1f7c923ce6ad827cfbb36bc9d93bbcc3277dedabfb013532416ae5a59428
MD5 d88d69c08d0d3d40da82ad9e1f1cfa93
BLAKE2b-256 2dd5a2b39afbc965b1afeefff79f31ff89a3c0a1345bbdba57416af253683e40

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.21-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.21-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.21-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9176cad8d33661cdb99696a41d0fa519ad761e2f11bb11bba372063e1827e521
MD5 cf6120caa736bd15161287f11fe674eb
BLAKE2b-256 1734e7afe3cac41a1341e424abe883e40c68250e8a3df7746fc870f32566beaf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.21-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b1b0f20e1321fd12a2c27f13f4cf125b9c700dcbdb8c95dc3070239b4e215730
MD5 46bc1f9987d6de98e682093c478159b2
BLAKE2b-256 c91a525a2420abbb2cdd5c6c65f9d197c525991a639159af078113bbb15344fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.21-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7040e8709ecee22de99c52263e0d6fc96ea1b4383065f7afd0dbf3594875b26e
MD5 ae12808c79db88fb5ab278da58af8e37
BLAKE2b-256 4cba85d1874caa6382200dad33153150e87f3cebba67f54e1957f53026268d7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.21-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cc6768aeb8c1d78f8d6d0b947aa9a47874cb63dc0277aff4af1e409ece6115f4
MD5 f76c9b2f4d181e79133f023c522aa1d6
BLAKE2b-256 8d03200f45897c0c59c4f1af6e0479438dcb86a9909749503d4fe9797dd66f41

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.21-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.21-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.21-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ac7ab8bac2a197a5629c03a5dea9ae8f0eab247ebbba5d9c249267ccfeb931a9
MD5 4dcc71eaf6480f0f9cff6e19f81a706a
BLAKE2b-256 86f94dbacb0adfbc966842c982ac547263989fba8db7ee2854f3ce32a23e05a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.21-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f4c10e3968681fa6824f2cde38d395f9637185beac099f3c62aaf9622e1fc791
MD5 9a811f68d35552c41cddbed73ce52343
BLAKE2b-256 0feb8e94b06fe198ce450213f087dcd847080b5eb25a37db5e9dbfbf85da7446

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.21-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e122e75cfd988b49a471ac753ed2d9c83f4f3504c2671c2a01dc9795701609c0
MD5 3df3fc2fdc0009442cb25d30111ef6e1
BLAKE2b-256 e05ffd32922a93dad96d9ab280a30e76e5691dc19aee6cb83262a469b704fa7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.21-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 02c547c2cf4c41b6a93995784db1f8a84b8f06107507fcffa5bdb1c23a29837f
MD5 6f383de68eced412c2d1289fffc41f53
BLAKE2b-256 9bfa0aca14cce70511adbf79279786b8c8675c0ca3c47db9c56e51584ccd6a66

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.21-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.21-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.21-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 80fb235d754fc1245be45f4cbe8e09805a9f44c9474480d296e5d0fa74236a54
MD5 c4819137c3a53dbbe989703c2c79fb45
BLAKE2b-256 c064262fd6cd059fe049e785f7eee145a88072752c19ed1f34ee6bf1a0e2c664

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.21-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d7ef18ea1bf23da25668d483b77411bf8cc4913cb1770d7efd37e813635f87f0
MD5 2264514774873a3292db4b3425687ddb
BLAKE2b-256 66e46e0201461f2cd4c697aaac047a10f71aa69a5e2b89df93f929072527d794

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.21-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b1f22a9eba67532253e41747f51efc28c2470045308e91a7403365d299313a0
MD5 1287167f76cdbd05c729b97112ee60cd
BLAKE2b-256 f81d65fe1a253e6f2eddfd6e09c7dd5cfa648a42fa97f1ab37494437af5707f0

See more details on using hashes here.

Provenance

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

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