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.

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

Uploaded CPython 3.14Windows x86-64

sixtytwo_cli-0.3.16-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (33.9 MB view details)

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

sixtytwo_cli-0.3.16-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (33.1 MB view details)

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

sixtytwo_cli-0.3.16-cp314-cp314-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

sixtytwo_cli-0.3.16-cp313-cp313-win_amd64.whl (4.2 MB view details)

Uploaded CPython 3.13Windows x86-64

sixtytwo_cli-0.3.16-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (34.3 MB view details)

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

sixtytwo_cli-0.3.16-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (33.1 MB view details)

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

sixtytwo_cli-0.3.16-cp313-cp313-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sixtytwo_cli-0.3.16-cp312-cp312-win_amd64.whl (4.2 MB view details)

Uploaded CPython 3.12Windows x86-64

sixtytwo_cli-0.3.16-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (34.8 MB view details)

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

sixtytwo_cli-0.3.16-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (33.6 MB view details)

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

sixtytwo_cli-0.3.16-cp312-cp312-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sixtytwo_cli-0.3.16-cp311-cp311-win_amd64.whl (4.3 MB view details)

Uploaded CPython 3.11Windows x86-64

sixtytwo_cli-0.3.16-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (34.8 MB view details)

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

sixtytwo_cli-0.3.16-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (34.1 MB view details)

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

sixtytwo_cli-0.3.16-cp311-cp311-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.16-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 96dab4cc0949e9d64c1d0461484c4b498d5aef9733e0ce803bcdbdb04243668b
MD5 9e77354ef2651719efa4f2d9dd6edcb7
BLAKE2b-256 3548f6868525f3fe48ec48f21e2764f1abd9353af64f57b470c94e4770371caa

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.16-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.16-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.16-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f6ff3644501feb34a8119df75a4eb84e974d48336798e446d5f39dba1a09dd82
MD5 25c202ba92e03e23b97228669613e852
BLAKE2b-256 de3335cf47452682378101d8b887fd987004713ca5ad0142767f52aeeff4dbd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.16-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 419e63cbe0271a7c8167a856a9f1e55fda5c15e6236ac7800d0bdf6a79c8865d
MD5 b0b398c828de023b0e27e970562b2e6c
BLAKE2b-256 93e3653009e5154a493c49667160a08c3528c6fe547a91d0419253d7e0a59435

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.16-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 25809496e6bb7a42f4fb2d92a970c77b77a2f36f49dc8a08cffd1a0fb2b8ebfd
MD5 6ae249b26fb4fa7e3dc961c11a5409d0
BLAKE2b-256 7bc3f4880fdc4a02b63e408ab09e7577dde2c013e2476af1fcccb84d06a36b3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.16-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 962746bf6ddcd369448466c2e218f9fbf025ed6250942b8df864f285d82fe209
MD5 fe2612de8e2b10a4e1ba5d7911a87db8
BLAKE2b-256 127e4a308edf7afaeb8d85f3e5eb4dda0d451a0b84deeae1cfbdd6789eef8dca

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.16-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.16-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.16-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 29d9fbd5410ad3cf44ba4f0201aafb43078bf7656cf69dd14057ffa8187f7187
MD5 dbd5924a45417aa5d5f922098ce26019
BLAKE2b-256 7649c45ed2e15381b5a27514e672bdccb605017bf931d12158815605dccd45ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.16-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fe1422a7ab8fe26106ad4d98b450f46bd59861b546d000b42faeb13e659a0bf1
MD5 31b9602b3ca0a1ea05318f4cb5a1253c
BLAKE2b-256 ca1695c83a1690a79942ff9157b4b5cca07bbbecb14de4b14296928ef03d3cd1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.16-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e607c13192b1d5ca8ef91d8c90aff808b3a07af8f53724e92c9ec0c2f698062
MD5 d6e7060c0b139d12a6b66447a8aacd1d
BLAKE2b-256 a3475c1623e3dd0077e2474a3a544799271d45cac5520c9cdce61bf722df8dd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.16-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f2412742e02526eeed7646c3d96ef88df3aa97814aa38690c81857edbd1ee950
MD5 b22406fe857258aa9b13770e94be579a
BLAKE2b-256 7e5b2f03042bcef019cf397cc7c73f31b7f5ac205c3c31e748fe1228954e6281

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.16-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.16-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.16-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 07c8115ce915d945134a701a990fa9f23af9bb9071362a3722f6a618e28b3c07
MD5 50225af5d00a4b29c297f51518f400dd
BLAKE2b-256 87016bc71340237432fc5d2d7a650e8092ad584873a4261e0896336b0fcc2557

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.16-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 03a622bcaa542a7d5e419bbda38a6b7b16af3faf5dd11478b13490149a70e0a0
MD5 fbf6a3441af24171077d46e94895b565
BLAKE2b-256 ce3a53c90cc55e8a7cc27642c7f8e8d317aa7197290ad496ab781d1d680d23ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.16-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab3d1f08cd42f2d7045340c38418a880cfb648243e6dafb7efec7d116b670996
MD5 7b5a173e296039726833b359114edf11
BLAKE2b-256 bfe4827f4a77684c969235e27745b1b5b740feaa01b5faff1509672c3c0ad12e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.16-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0b7da84157738876a45bfb752e5f3e83ed6381a0de89a988df443e01997f8a4a
MD5 96cdc197e50af3b4cbc1ee6444dfc8bb
BLAKE2b-256 3e2cbca41add61613dd1d369dde680775d334c5b08447c6feec9bfc7e1eeb517

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.16-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.16-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.16-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2a9d143deff848baafefb4cfed1d55192e81cfa8a4cebf275745730bfaccb53c
MD5 93fe01df9206daace84df44adada47ed
BLAKE2b-256 481284d1e0f5a877ddcfea287a582347a9c0ebf92c4d19a6a72401246e2a5952

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.16-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ce6c423e16d75241b539bb1a143e51eacc2bdd5aa4a99682d1582fde2c23291a
MD5 8e2c16dc93201571967d059389e844ef
BLAKE2b-256 bc455c4a6107ccdbc08a503a9c039fcb06854d15b98b62fdd9d968b8adc663e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.16-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e2c5f71e29d12e9e3a8aef82f1fb5d5b954175697afb969d0c7bc5961e39828
MD5 e3e088f50ae1a91383a60dabbecee34b
BLAKE2b-256 a2c6e3abde9bfde6322723aa330370dd252ed600a515d5b84a0ca5fc7451f768

See more details on using hashes here.

Provenance

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