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 rentreserves 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.
sixtytworuns 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.enabledis 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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sixtytwo_cli-0.3.16-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: sixtytwo_cli-0.3.16-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 4.3 MB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
96dab4cc0949e9d64c1d0461484c4b498d5aef9733e0ce803bcdbdb04243668b
|
|
| MD5 |
9e77354ef2651719efa4f2d9dd6edcb7
|
|
| BLAKE2b-256 |
3548f6868525f3fe48ec48f21e2764f1abd9353af64f57b470c94e4770371caa
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sixtytwo_cli-0.3.16-cp314-cp314-win_amd64.whl -
Subject digest:
96dab4cc0949e9d64c1d0461484c4b498d5aef9733e0ce803bcdbdb04243668b - Sigstore transparency entry: 1805562505
- Sigstore integration time:
-
Permalink:
antaloaalonso/sixtytwo@79119d3d89800a1936c176b66d8558670a588d2a -
Branch / Tag:
refs/tags/v0.3.16 - Owner: https://github.com/antaloaalonso
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@79119d3d89800a1936c176b66d8558670a588d2a -
Trigger Event:
release
-
Statement type:
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
- Download URL: sixtytwo_cli-0.3.16-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 33.9 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f6ff3644501feb34a8119df75a4eb84e974d48336798e446d5f39dba1a09dd82
|
|
| MD5 |
25c202ba92e03e23b97228669613e852
|
|
| BLAKE2b-256 |
de3335cf47452682378101d8b887fd987004713ca5ad0142767f52aeeff4dbd8
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sixtytwo_cli-0.3.16-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
f6ff3644501feb34a8119df75a4eb84e974d48336798e446d5f39dba1a09dd82 - Sigstore transparency entry: 1805565118
- Sigstore integration time:
-
Permalink:
antaloaalonso/sixtytwo@79119d3d89800a1936c176b66d8558670a588d2a -
Branch / Tag:
refs/tags/v0.3.16 - Owner: https://github.com/antaloaalonso
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@79119d3d89800a1936c176b66d8558670a588d2a -
Trigger Event:
release
-
Statement type:
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
- Download URL: sixtytwo_cli-0.3.16-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 33.1 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
419e63cbe0271a7c8167a856a9f1e55fda5c15e6236ac7800d0bdf6a79c8865d
|
|
| MD5 |
b0b398c828de023b0e27e970562b2e6c
|
|
| BLAKE2b-256 |
93e3653009e5154a493c49667160a08c3528c6fe547a91d0419253d7e0a59435
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sixtytwo_cli-0.3.16-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
419e63cbe0271a7c8167a856a9f1e55fda5c15e6236ac7800d0bdf6a79c8865d - Sigstore transparency entry: 1805564069
- Sigstore integration time:
-
Permalink:
antaloaalonso/sixtytwo@79119d3d89800a1936c176b66d8558670a588d2a -
Branch / Tag:
refs/tags/v0.3.16 - Owner: https://github.com/antaloaalonso
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@79119d3d89800a1936c176b66d8558670a588d2a -
Trigger Event:
release
-
Statement type:
File details
Details for the file sixtytwo_cli-0.3.16-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: sixtytwo_cli-0.3.16-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
25809496e6bb7a42f4fb2d92a970c77b77a2f36f49dc8a08cffd1a0fb2b8ebfd
|
|
| MD5 |
6ae249b26fb4fa7e3dc961c11a5409d0
|
|
| BLAKE2b-256 |
7bc3f4880fdc4a02b63e408ab09e7577dde2c013e2476af1fcccb84d06a36b3d
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sixtytwo_cli-0.3.16-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
25809496e6bb7a42f4fb2d92a970c77b77a2f36f49dc8a08cffd1a0fb2b8ebfd - Sigstore transparency entry: 1805564282
- Sigstore integration time:
-
Permalink:
antaloaalonso/sixtytwo@79119d3d89800a1936c176b66d8558670a588d2a -
Branch / Tag:
refs/tags/v0.3.16 - Owner: https://github.com/antaloaalonso
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@79119d3d89800a1936c176b66d8558670a588d2a -
Trigger Event:
release
-
Statement type:
File details
Details for the file sixtytwo_cli-0.3.16-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: sixtytwo_cli-0.3.16-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
962746bf6ddcd369448466c2e218f9fbf025ed6250942b8df864f285d82fe209
|
|
| MD5 |
fe2612de8e2b10a4e1ba5d7911a87db8
|
|
| BLAKE2b-256 |
127e4a308edf7afaeb8d85f3e5eb4dda0d451a0b84deeae1cfbdd6789eef8dca
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sixtytwo_cli-0.3.16-cp313-cp313-win_amd64.whl -
Subject digest:
962746bf6ddcd369448466c2e218f9fbf025ed6250942b8df864f285d82fe209 - Sigstore transparency entry: 1805565403
- Sigstore integration time:
-
Permalink:
antaloaalonso/sixtytwo@79119d3d89800a1936c176b66d8558670a588d2a -
Branch / Tag:
refs/tags/v0.3.16 - Owner: https://github.com/antaloaalonso
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@79119d3d89800a1936c176b66d8558670a588d2a -
Trigger Event:
release
-
Statement type:
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
- Download URL: sixtytwo_cli-0.3.16-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 34.3 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
29d9fbd5410ad3cf44ba4f0201aafb43078bf7656cf69dd14057ffa8187f7187
|
|
| MD5 |
dbd5924a45417aa5d5f922098ce26019
|
|
| BLAKE2b-256 |
7649c45ed2e15381b5a27514e672bdccb605017bf931d12158815605dccd45ce
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sixtytwo_cli-0.3.16-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
29d9fbd5410ad3cf44ba4f0201aafb43078bf7656cf69dd14057ffa8187f7187 - Sigstore transparency entry: 1805562672
- Sigstore integration time:
-
Permalink:
antaloaalonso/sixtytwo@79119d3d89800a1936c176b66d8558670a588d2a -
Branch / Tag:
refs/tags/v0.3.16 - Owner: https://github.com/antaloaalonso
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@79119d3d89800a1936c176b66d8558670a588d2a -
Trigger Event:
release
-
Statement type:
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
- Download URL: sixtytwo_cli-0.3.16-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 33.1 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe1422a7ab8fe26106ad4d98b450f46bd59861b546d000b42faeb13e659a0bf1
|
|
| MD5 |
31b9602b3ca0a1ea05318f4cb5a1253c
|
|
| BLAKE2b-256 |
ca1695c83a1690a79942ff9157b4b5cca07bbbecb14de4b14296928ef03d3cd1
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sixtytwo_cli-0.3.16-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
fe1422a7ab8fe26106ad4d98b450f46bd59861b546d000b42faeb13e659a0bf1 - Sigstore transparency entry: 1805563703
- Sigstore integration time:
-
Permalink:
antaloaalonso/sixtytwo@79119d3d89800a1936c176b66d8558670a588d2a -
Branch / Tag:
refs/tags/v0.3.16 - Owner: https://github.com/antaloaalonso
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@79119d3d89800a1936c176b66d8558670a588d2a -
Trigger Event:
release
-
Statement type:
File details
Details for the file sixtytwo_cli-0.3.16-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: sixtytwo_cli-0.3.16-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3e607c13192b1d5ca8ef91d8c90aff808b3a07af8f53724e92c9ec0c2f698062
|
|
| MD5 |
d6e7060c0b139d12a6b66447a8aacd1d
|
|
| BLAKE2b-256 |
a3475c1623e3dd0077e2474a3a544799271d45cac5520c9cdce61bf722df8dd9
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sixtytwo_cli-0.3.16-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
3e607c13192b1d5ca8ef91d8c90aff808b3a07af8f53724e92c9ec0c2f698062 - Sigstore transparency entry: 1805564417
- Sigstore integration time:
-
Permalink:
antaloaalonso/sixtytwo@79119d3d89800a1936c176b66d8558670a588d2a -
Branch / Tag:
refs/tags/v0.3.16 - Owner: https://github.com/antaloaalonso
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@79119d3d89800a1936c176b66d8558670a588d2a -
Trigger Event:
release
-
Statement type:
File details
Details for the file sixtytwo_cli-0.3.16-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: sixtytwo_cli-0.3.16-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f2412742e02526eeed7646c3d96ef88df3aa97814aa38690c81857edbd1ee950
|
|
| MD5 |
b22406fe857258aa9b13770e94be579a
|
|
| BLAKE2b-256 |
7e5b2f03042bcef019cf397cc7c73f31b7f5ac205c3c31e748fe1228954e6281
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sixtytwo_cli-0.3.16-cp312-cp312-win_amd64.whl -
Subject digest:
f2412742e02526eeed7646c3d96ef88df3aa97814aa38690c81857edbd1ee950 - Sigstore transparency entry: 1805562963
- Sigstore integration time:
-
Permalink:
antaloaalonso/sixtytwo@79119d3d89800a1936c176b66d8558670a588d2a -
Branch / Tag:
refs/tags/v0.3.16 - Owner: https://github.com/antaloaalonso
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@79119d3d89800a1936c176b66d8558670a588d2a -
Trigger Event:
release
-
Statement type:
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
- Download URL: sixtytwo_cli-0.3.16-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 34.8 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
07c8115ce915d945134a701a990fa9f23af9bb9071362a3722f6a618e28b3c07
|
|
| MD5 |
50225af5d00a4b29c297f51518f400dd
|
|
| BLAKE2b-256 |
87016bc71340237432fc5d2d7a650e8092ad584873a4261e0896336b0fcc2557
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sixtytwo_cli-0.3.16-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
07c8115ce915d945134a701a990fa9f23af9bb9071362a3722f6a618e28b3c07 - Sigstore transparency entry: 1805565766
- Sigstore integration time:
-
Permalink:
antaloaalonso/sixtytwo@79119d3d89800a1936c176b66d8558670a588d2a -
Branch / Tag:
refs/tags/v0.3.16 - Owner: https://github.com/antaloaalonso
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@79119d3d89800a1936c176b66d8558670a588d2a -
Trigger Event:
release
-
Statement type:
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
- Download URL: sixtytwo_cli-0.3.16-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 33.6 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
03a622bcaa542a7d5e419bbda38a6b7b16af3faf5dd11478b13490149a70e0a0
|
|
| MD5 |
fbf6a3441af24171077d46e94895b565
|
|
| BLAKE2b-256 |
ce3a53c90cc55e8a7cc27642c7f8e8d317aa7197290ad496ab781d1d680d23ee
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sixtytwo_cli-0.3.16-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
03a622bcaa542a7d5e419bbda38a6b7b16af3faf5dd11478b13490149a70e0a0 - Sigstore transparency entry: 1805566248
- Sigstore integration time:
-
Permalink:
antaloaalonso/sixtytwo@79119d3d89800a1936c176b66d8558670a588d2a -
Branch / Tag:
refs/tags/v0.3.16 - Owner: https://github.com/antaloaalonso
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@79119d3d89800a1936c176b66d8558670a588d2a -
Trigger Event:
release
-
Statement type:
File details
Details for the file sixtytwo_cli-0.3.16-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: sixtytwo_cli-0.3.16-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab3d1f08cd42f2d7045340c38418a880cfb648243e6dafb7efec7d116b670996
|
|
| MD5 |
7b5a173e296039726833b359114edf11
|
|
| BLAKE2b-256 |
bfe4827f4a77684c969235e27745b1b5b740feaa01b5faff1509672c3c0ad12e
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sixtytwo_cli-0.3.16-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
ab3d1f08cd42f2d7045340c38418a880cfb648243e6dafb7efec7d116b670996 - Sigstore transparency entry: 1805562346
- Sigstore integration time:
-
Permalink:
antaloaalonso/sixtytwo@79119d3d89800a1936c176b66d8558670a588d2a -
Branch / Tag:
refs/tags/v0.3.16 - Owner: https://github.com/antaloaalonso
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@79119d3d89800a1936c176b66d8558670a588d2a -
Trigger Event:
release
-
Statement type:
File details
Details for the file sixtytwo_cli-0.3.16-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: sixtytwo_cli-0.3.16-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 4.3 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b7da84157738876a45bfb752e5f3e83ed6381a0de89a988df443e01997f8a4a
|
|
| MD5 |
96cdc197e50af3b4cbc1ee6444dfc8bb
|
|
| BLAKE2b-256 |
3e2cbca41add61613dd1d369dde680775d334c5b08447c6feec9bfc7e1eeb517
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sixtytwo_cli-0.3.16-cp311-cp311-win_amd64.whl -
Subject digest:
0b7da84157738876a45bfb752e5f3e83ed6381a0de89a988df443e01997f8a4a - Sigstore transparency entry: 1805564740
- Sigstore integration time:
-
Permalink:
antaloaalonso/sixtytwo@79119d3d89800a1936c176b66d8558670a588d2a -
Branch / Tag:
refs/tags/v0.3.16 - Owner: https://github.com/antaloaalonso
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@79119d3d89800a1936c176b66d8558670a588d2a -
Trigger Event:
release
-
Statement type:
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
- Download URL: sixtytwo_cli-0.3.16-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 34.8 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2a9d143deff848baafefb4cfed1d55192e81cfa8a4cebf275745730bfaccb53c
|
|
| MD5 |
93fe01df9206daace84df44adada47ed
|
|
| BLAKE2b-256 |
481284d1e0f5a877ddcfea287a582347a9c0ebf92c4d19a6a72401246e2a5952
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sixtytwo_cli-0.3.16-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
2a9d143deff848baafefb4cfed1d55192e81cfa8a4cebf275745730bfaccb53c - Sigstore transparency entry: 1805563426
- Sigstore integration time:
-
Permalink:
antaloaalonso/sixtytwo@79119d3d89800a1936c176b66d8558670a588d2a -
Branch / Tag:
refs/tags/v0.3.16 - Owner: https://github.com/antaloaalonso
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@79119d3d89800a1936c176b66d8558670a588d2a -
Trigger Event:
release
-
Statement type:
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
- Download URL: sixtytwo_cli-0.3.16-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 34.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ce6c423e16d75241b539bb1a143e51eacc2bdd5aa4a99682d1582fde2c23291a
|
|
| MD5 |
8e2c16dc93201571967d059389e844ef
|
|
| BLAKE2b-256 |
bc455c4a6107ccdbc08a503a9c039fcb06854d15b98b62fdd9d968b8adc663e0
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sixtytwo_cli-0.3.16-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
ce6c423e16d75241b539bb1a143e51eacc2bdd5aa4a99682d1582fde2c23291a - Sigstore transparency entry: 1805563161
- Sigstore integration time:
-
Permalink:
antaloaalonso/sixtytwo@79119d3d89800a1936c176b66d8558670a588d2a -
Branch / Tag:
refs/tags/v0.3.16 - Owner: https://github.com/antaloaalonso
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@79119d3d89800a1936c176b66d8558670a588d2a -
Trigger Event:
release
-
Statement type:
File details
Details for the file sixtytwo_cli-0.3.16-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: sixtytwo_cli-0.3.16-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 4.8 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e2c5f71e29d12e9e3a8aef82f1fb5d5b954175697afb969d0c7bc5961e39828
|
|
| MD5 |
e3e088f50ae1a91383a60dabbecee34b
|
|
| BLAKE2b-256 |
a2c6e3abde9bfde6322723aa330370dd252ed600a515d5b84a0ca5fc7451f768
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
sixtytwo_cli-0.3.16-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
1e2c5f71e29d12e9e3a8aef82f1fb5d5b954175697afb969d0c7bc5961e39828 - Sigstore transparency entry: 1805565917
- Sigstore integration time:
-
Permalink:
antaloaalonso/sixtytwo@79119d3d89800a1936c176b66d8558670a588d2a -
Branch / Tag:
refs/tags/v0.3.16 - Owner: https://github.com/antaloaalonso
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@79119d3d89800a1936c176b66d8558670a588d2a -
Trigger Event:
release
-
Statement type: