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 (qualification and distributed PyTorch)

On a GPU Kubernetes cluster, start with a qualification audit. It checks the capabilities that matter for large training jobs: node and GPU readiness, the GPU Operator and RuntimeClass, RDMA/Network Operator, CNI, default and ReadWriteMany storage, LoadBalancer support, node-problem-detector, the monitoring stack, distributed-training and queue-scheduling APIs, and the RBAC needed to run and observe workloads:

sixtytwo k8s qualify --nodes 4 --gpus-per-node 8 --gpu-type H100_SXM \
  --output qualification.json

The default run is read-only and writes one machine-readable evidence report with a remediation per failing check. --full adds two functional probes: a cross-node ReadWriteMany write/read test and the multi-node collective test below. Checks that need a representative workload, such as training MFU and disaggregated-inference throughput, are reported as explicit not_run findings rather than being inferred from synthetic probes.

For the fabric itself, 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. sixtytwo k8s-dist still works as an alias of k8s dist.

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

Uploaded CPython 3.14Windows x86-64

sixtytwo_cli-0.3.42-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (9.7 MB view details)

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

sixtytwo_cli-0.3.42-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (9.0 MB view details)

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

sixtytwo_cli-0.3.42-cp314-cp314-macosx_11_0_arm64.whl (8.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

sixtytwo_cli-0.3.42-cp313-cp313-win_amd64.whl (7.0 MB view details)

Uploaded CPython 3.13Windows x86-64

sixtytwo_cli-0.3.42-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (9.6 MB view details)

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

sixtytwo_cli-0.3.42-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (8.8 MB view details)

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

sixtytwo_cli-0.3.42-cp313-cp313-macosx_11_0_arm64.whl (8.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sixtytwo_cli-0.3.42-cp312-cp312-win_amd64.whl (7.0 MB view details)

Uploaded CPython 3.12Windows x86-64

sixtytwo_cli-0.3.42-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (9.6 MB view details)

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

sixtytwo_cli-0.3.42-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (8.8 MB view details)

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

sixtytwo_cli-0.3.42-cp312-cp312-macosx_11_0_arm64.whl (8.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sixtytwo_cli-0.3.42-cp311-cp311-win_amd64.whl (7.2 MB view details)

Uploaded CPython 3.11Windows x86-64

sixtytwo_cli-0.3.42-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (10.2 MB view details)

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

sixtytwo_cli-0.3.42-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (9.4 MB view details)

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

sixtytwo_cli-0.3.42-cp311-cp311-macosx_11_0_arm64.whl (8.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sixtytwo_cli-0.3.42-cp310-cp310-win_amd64.whl (7.2 MB view details)

Uploaded CPython 3.10Windows x86-64

sixtytwo_cli-0.3.42-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (10.2 MB view details)

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

sixtytwo_cli-0.3.42-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (9.5 MB view details)

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

sixtytwo_cli-0.3.42-cp310-cp310-macosx_11_0_arm64.whl (8.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sixtytwo_cli-0.3.42-cp39-cp39-win_amd64.whl (7.2 MB view details)

Uploaded CPython 3.9Windows x86-64

sixtytwo_cli-0.3.42-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (10.3 MB view details)

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

sixtytwo_cli-0.3.42-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (9.5 MB view details)

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

sixtytwo_cli-0.3.42-cp39-cp39-macosx_11_0_arm64.whl (8.2 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.42-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f27961e4db379fdc2454c5a736628d9c08702ca45ff432a9eccc7d0b35116eef
MD5 04d2866f8088224c723ae06cb37cc9f0
BLAKE2b-256 555e2a2815739b614aed1ec7ab2503bd81b5dbd87f43c11187b4f5570064bc88

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.42-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.42-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.42-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 98e2a3207db19d43c517adb4fbfc5563303106158e4b3b791f43da3a996e0d4f
MD5 9c2a062858fe19b74db57632283ddb99
BLAKE2b-256 c1c3c2ef46e6423cf245a97e41123f0eac94ce3732af27b9accf9c3a5601ab54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.42-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 57c99a368e5aaff54f621b53b5c92f4c151e7273bf8f3f321f6f864c0999283b
MD5 9109946a1bf87ac7f36ed52466a40dec
BLAKE2b-256 7302224c746eb09698a6882623ccd022338592e392f1e9c76d1e1e39168ac29e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.42-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1d6ff5a61aacf371d803d0398b5e2391d93448291e5d31b50259c6fa7d870f7
MD5 1d7883b09c2bc40c84f1303e4f737fbf
BLAKE2b-256 7922b79055c2286ae7e62ced14032c3a4e1b97102380a223e1f93c952d6f7558

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.42-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5ac9163f6f55d46507c00172cf6b6aa5d32ef2b5f8e0e0eb8a2fc83187cf466e
MD5 93f0efa2098db6ba605443ad8a166421
BLAKE2b-256 37b395a56b1a1006f9604b3874fb62de11f9f229fc860bbe26eac19f810d02b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.42-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.42-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.42-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 78997cc58b4a47a85d63f8fb8ed06ce1a0320d536da263118abc78ab494bb71f
MD5 871940c9982edbc8e3d3046915844438
BLAKE2b-256 c05b1fc681a93ccac195dfbec85cae7cf38637ab71135aeb5ab0f64871ba8cc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.42-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e12835504091385d99fe39bc4d7cea0d3a8734a859d5bc7e237e04f3ac6b45fb
MD5 381c6d7b12d316625316e225a793e87f
BLAKE2b-256 6da62c69637713dfd4398e5026f4a13e9572d89ca6062a204b123e6a63de4f58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.42-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94d576f9be0122b42181675680ea947ce406a17d8b29a1e85afb68df7c6e7c8b
MD5 b5334166c9191facbf4f156834bbc58a
BLAKE2b-256 25e05b9a1017703c0d708e90c612e9d0ded30c337fa5b579af2805a792610c32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.42-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7db2159505be667c12fcbdbec68f58b2e4beab0b3c53b1cd3fd5e64630918841
MD5 80cbec1a29ea4aff173e86079bfb9085
BLAKE2b-256 abace9d217460515abe949563cf842a1087b058b6008381cc67f5b58ead4bbe2

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.42-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.42-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.42-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 749bf406bb6966018a96a1549aa52a30daa2fa7509b519bcf006483f88f14eda
MD5 a216151c9e42264a8a4f172808f3282c
BLAKE2b-256 fd232ee7c44e96d0509f20ce610e1c03bfa626445d7b75f168bc898a7b75485e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.42-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a41a9c1595f324583fab758b872bd2553f5986279a4f860617fb77823c495178
MD5 b4f4005fe39bbb539d5b7711c96c2843
BLAKE2b-256 2401a53414ad867409e2e5ef4328a7d7dfd29da89bb2cd74428ce23fc142f245

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.42-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 17c69fc72271d8d69d881eb502d5a5851e3a7dce34d7213fbafad7ffce9f449a
MD5 a29019d312a3bed613997914228ab78d
BLAKE2b-256 c7145472c10424debcdb0195cd35d65beb172a264c1ebf5b37dd931e4289560d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.42-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9f8d79dc4562e7479b35b49fe20c2fa4f949d834cc5e5400d089912ef4a03c6c
MD5 2134021300130288967e550f7348d36a
BLAKE2b-256 773431cacea865776ce6cfe29ff9659687c98743e90d10d7cdd4042e4920af5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.42-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.42-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.42-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d4aa676c8d2c7e5041a99d1f31915ad52c0d3ab1f4174019b3bdcf0b9e9e0a0f
MD5 b81ea71954e47b42f194397ade6f7074
BLAKE2b-256 1c98d3fbf703e982d65ce6d70b3bfa59ee85ff11297c11773644736503aa1383

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.42-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 444d034b7bd9a7eefe891000971df2af2a4c3e1afbed2ffbd4d90240ec4e4725
MD5 99b98a2625f02790d5fa0e026937f0b1
BLAKE2b-256 cd5f9025d825d44ac943f76f14e9c9c5b02cf5946fb417f6f943ff867198aeec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.42-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a296d4f590e49f384bc02396ea5df10a7747999d90e4909b62e3ff0b8bf8f98
MD5 3ca50a9d4607bfa32646782d8fa8e58b
BLAKE2b-256 5cef692e3be68e9793851df846d0de4133d1f9d651aa26508be1c0e42e84c73f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.42-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 32802041ac1c9f3bb6a3fb0c90b6ed8f61ff6cbddbefc91e0eb04cc38074f2c6
MD5 876b2e5429312cdb1915640bf2626840
BLAKE2b-256 6006fd862e6b5f91779f3e2f6f34778b394b8d763b26172a00d172d60843d1c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.42-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.42-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.42-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 72683c83a6bfe67c6e89d3a1bb77cb50c2c2d02c41727a8c8e756bd79da6818d
MD5 24a36c322ee9b619b70cc8045df01e83
BLAKE2b-256 b824670843db672f1e15412d8bc752333b801b7c9c6c3863cf0af699e523573e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.42-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 798aba8166fec55614fd824ce534a0480a6b81df46cfe7ee6a616d3d8165aa03
MD5 5a63edb41cae000aaf4d682ce94d2dac
BLAKE2b-256 99fa4f65e899ace0fde9570ee95034e1ce7167092e59b42d796f1bbd0b44359e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.42-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7344201ded8007a4911a727d4612147da0b97181b207f9439efc9a2d04f5cd38
MD5 5ad4db5d2e81552f83d528c256d03299
BLAKE2b-256 4bc741124d3284c02947d6d9347e7ab41e01d04c4a20b6f82ed846673e547e42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.42-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 450484282d1fc39d7f64c1d5746d087e04fba22b7b883d0b1b1a0f21ff907f4c
MD5 2a23eecfd0bcd774040f8fe7c1a1af42
BLAKE2b-256 7135962bfc960fd425eabedcfc8add4b9f2dc542538d5c6363fe58dc813736f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for sixtytwo_cli-0.3.42-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.42-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.42-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cae77b5450478c06627e51b7b0417c2a07c89e950acb6d02657ef62f141d69a3
MD5 1c243a34fc663ab2bd4ca3c7146afabd
BLAKE2b-256 051c622aac6a49b591102c3867bdfc5a5a43a16b8ca2b608b1bf259f5a997a90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.42-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1a6ab3e848c1f157680b3e7704a5ec51ce2fe0a4ec7a08060a11e4fba9909013
MD5 9178d2976f750b4ca64ea5e854a7c0e9
BLAKE2b-256 4e32a9705566b664ec03ce16aee443811fb26d99b3afeb853b18662bef91100a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for sixtytwo_cli-0.3.42-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a9da5d4ed976a348f920ff6e1a1c126706b6c6dc2f12507add702082aaeb59d
MD5 165166b955f1553fafb38ade094c4cc3
BLAKE2b-256 5436d56cee64fa8d03ddd118c0f468b33d445f9b6feeab1eb8a0fa48e9ca3af1

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

0.4.0

24 files

This release

0.3.42 This release

24 files

0.3.41

24 files

0.3.40

24 files

0.3.39

24 files

0.3.37

24 files

0.3.36

24 files

0.3.35

24 files

0.3.34

24 files

0.3.33

20 files

0.3.32

20 files

0.3.31

14 files

0.3.30

20 files

0.3.29

20 files

0.3.28

20 files

0.3.27

20 files

0.3.26

16 files

0.3.25

16 files

0.3.24

16 files

0.3.23

16 files

0.3.22

16 files

0.3.21

16 files

0.3.20

16 files

0.3.19

16 files

0.3.18

16 files

0.3.17

16 files

0.3.16

16 files

0.3.15

16 files

0.3.14

16 files

0.3.13

16 files

0.3.12

16 files

0.3.11

16 files

0.3.10

16 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page