Skip to main content

ultrafast-pycocotools

Library CI

COCO evaluation in Rust, with a Python API compatible with pycocotools.

Use it to reduce evaluation time while keeping the reference metrics. The test suite compares the complete precision, recall, and scores arrays and the summary statistics byte for byte, including score ties, crowd annotations, custom evaluation parameters, and real COCO fixtures.

Benchmarks cover public pretrained detector outputs on COCO and a separate synthetic scalability workload on the public Objects365 dataset. Both compare complete evaluation arrays against pycocotools.

Status: alpha. Validate your application's parameters and subclass behavior before replacing its reference evaluator.

Installation

Install from PyPI:

python -m pip install ultrafast-pycocotools

Prebuilt wheels cover CPython 3.8–3.14 on Linux x86-64/ARM64 (glibc 2.17+), Windows x86-64, and macOS Intel/Apple Silicon. Compatible wheels require no Rust compiler. Apple Silicon wheels include Python 3.8. NumPy is installed automatically. Other platforms build from source.

The release workflow and maintainer guide describe wheel testing and Trusted Publishing.

Build from source

Requirements: Python 3.8+, a recent stable Rust toolchain, and a working native compiler toolchain. NumPy is installed as a dependency.

Clone the repository and build the package:

git clone https://github.com/developer0hye/ultrafast-pycocotools.git
cd ultrafast-pycocotools
python -m venv .venv
source .venv/bin/activate
python -m pip install --upgrade pip
python -m pip install .

On Windows PowerShell, activate with .\.venv\Scripts\Activate.ps1 instead. The source build uses Maturin and compiles the Rust extension; Rust is needed at build time, not when importing an already built wheel.

Reproduce without downloads

After installing the test/reference dependencies, run the complete synthetic check with one command:

python -m pip install ".[test]"
python bench/reproduce.py quick --out bench/out/quick --verify-published quick

It generates data, runs both scorers, and verifies input hashes and every evaluation-array byte. No images, model weights, or GPU are needed. See the reproduction guide for Objects365 and public detector predictions, expected hashes, resource requirements, and output files.

Apple M2 desktop and i5-10400 / RTX 3070 server measurements use the same 5,000-image synthetic inputs, with repeated runs and CPU/memory telemetry. The server report includes both machines and their different background loads.

Quick start

This example uses the small COCO fixture included in the repository. Replace the two paths with your annotation and prediction JSON files for a real run.

from ultrafast_pycocotools import COCO, COCOeval

gt = COCO("tests/data/coco_subset_gt.json")
dt = gt.loadRes("tests/data/coco_subset_dt.json")
evaluator = COCOeval(gt, dt, "bbox")

evaluator.evaluate()
evaluator.accumulate()
evaluator.summarize()

print("AP:", evaluator.stats[0])

evaluator.run() is a convenience method for the last three calls. Standard COCO evaluation modes are "bbox", "segm", and "keypoints".

Faster loading and lower memory by default

Version 0.1.1 avoids allocating and retaining redundant polygons for box-only predictions. Ordinary gt.loadRes(predictions) gets both improvements; no performance flag is needed. Bbox/segmentation metrics and public mask/plot helpers remain covered by reference comparisons. Direct annotation dictionaries omit the derived segmentation field unless derive_segmentation=True is requested. Measurements against 0.1.0.

Version 0.1.2 further improves the COCO case by 8.9% in time and 1.9% in peak RSS relative to 0.1.1, using native index/metadata loops and releasing completed category buffers earlier. Repeated measurements and limits.

Version 0.1.3 adds compact bbox file loading: 2.6–2.9× faster and 56–62% less peak RSS than 0.1.2 on three tested workloads, including JSON parsing in both versions. Annotation dictionaries materialize only when accessed; evaluation shares immutable bbox coordinates. Existing dict/list inputs retain their previous representation and show no demonstrated speed/memory improvement. Measurements, API behavior and lower bounds.

YOLO26n file evaluation time and peak memory versus pycocotools and faster-coco-eval

Version 0.1.4 further reduces Rust allocations with borrowed index/coordinate slices, smaller detection records and a smaller recall workspace. Repeated measurements and implementation details.

LVIS and metric names

gt = COCO("lvis_val.json")
dt = gt.loadRes("predictions.json")
evaluator = COCOeval(gt, dt, "bbox", lvis_style=True)  # also supports "segm"
evaluator.run()
print(evaluator.stats_as_dict["APr"])

LVIS uses its federated annotation protocol, global 300-detection image limit, and rare/common/frequent category metrics. Dictionary names follow the official LVIS API (AP, AP50, APr, AR@300, etc.); framework aliases such as AP_all and AP_50 are also available. Standard COCO stats positions are unchanged. LVIS verification and integration guide.

Use with an existing framework

Prefer direct imports when you own the evaluation code. If a framework imports pycocotools internally, register the replacement before importing that framework:

from ultrafast_pycocotools import init_as_pycocotools

init_as_pycocotools()

from pycocotools.coco import COCO
from pycocotools.cocoeval import COCOeval

This changes the import mapping for the entire Python process. Use separate processes when comparing the reference package and the replacement.

Scaling with input size (0.1.0 measurements)

41.9× faster evaluation · 89.5% lower peak memory than pycocotools at the largest measured input (80,000 images). Also 8.1× faster with 92.2% lower peak memory than faster-coco-eval. These callouts use the recorded 0.1.0 runs below.

Evaluation time and peak memory versus GT plus prediction count

Measured on nested Objects365 subsets with identical inputs for both scorers. Ultrafast matches pycocotools byte for byte at every point. Faster-coco-eval passes a separate numerical tolerance check; its arrays are not byte-identical. Method, counts and reproduction · SVG · PDF · Raw measurements.

RF-DETR integration

The optional adapter connects ultrafast to RF-DETR's actual one-pass training metric, which otherwise uses faster-coco-eval. Tests cover bbox/segmentation, per-class metrics, reset/pickle and two-rank CPU state merging. A separate RF-DETR Nano benchmark uses all 5,000 COCO validation images and 1.5 million real predictions. In the actual RF-DETR metric replay, it is 2.09× faster with 37.2% less peak RSS than the existing faster-coco-eval backend, with identical aggregate and per-class metric tensors. Measurements and opt-in integration.

RF-DETR metric replay speed and memory

D-FINE-seg integration

A tested D-FINE-seg integration patch adds an optional ultrafast backend to its TorchMetrics bbox and instance-segmentation mAP paths. It includes full-array parity, Validator lifecycle and pretrained-model checks. With the 0.1.7 mask-encoder optimization, actual COCO500 bbox + segmentation validation is 17.8% faster on M2 and 23.4% faster on the i5-10400 server than faster-coco-eval. All outputs are unchanged. Published release and measurements. The published-0.1.6 baseline retains the original measurements, including its mask-encoding regression.

Ultralytics real-task validation (0.1.7)

On the RTX 3070 / i5-10400 server, complete COCO val2017 validation is 16.3% faster for detection, 9.1% for segmentation and 10.0% for pose than faster-coco-eval 1.8.0. All returned metrics and fitness are identical. Peak process memory decreases for detection and segmentation; pose full-validation RSS increases 0.9%, while pose evaluator-only RSS decreases. The report also includes cold/cached replay, complete arrays, LVIS compatibility and background load. Measurements and reproducible evidence · Reviewer checklist.

hotcoco comparison (0.1.10)

Against hotcoco 1.0.0, using identical saved predictions for all 5,000 COCO val2017 images, released ultrafast 0.1.10 has the following results for file input with Rayon/OpenMP pool size 2 (six-run medians):

Host Task Wall-time speed ratio (hotcoco / ultrafast) Peak RSS reduction
Apple M2 bbox 2.18× 89.3%
Apple M2 segmentation 2.42× 74.7%
Apple M2 keypoints 0.79× (hotcoco faster) 72.5%
i5-10400 / RTX 3070 server bbox 2.73× 88.1%
i5-10400 / RTX 3070 server segmentation 2.34× 75.3%
i5-10400 / RTX 3070 server keypoints 1.27× 54.8%

Times include input loading and CPU metric computation; inference is excluded. Pool size is not a process-wide CPU quota. M2 measurements include concurrent load and paging. AP/AR agree within 1e-12, but hotcoco differs from pycocotools in some bbox/mask sampled scores entries; ultrafast's full arrays are byte-identical for these inputs. The report includes this reproduction, all file/list and pool-size-1/2 measurements, CPU time, hardware and raw evidence. Detailed comparison and reproduction.

The pose optimizations included in 0.1.11 showed lower median wall time and peak RSS than hotcoco in all 24 measured configurations in the source-build comparison across both hosts, three tasks, file/list inputs and pool sizes 1/2. All 144 matched timing pairs favor the candidate. M2 pose file input at pool size 1 is now 0.506 → 0.490 seconds; pool size 2 is 0.457 → 0.378 seconds. These are source-build measurements; the released-wheel table above is unchanged.

YOLO26n benchmark (0.1.2)

19.1× faster · 53.4% lower peak RSS than pycocotools, using identical YOLO26n predictions on all 5,000 COCO val2017 images.

Scorer Evaluation time Peak RSS
pycocotools 2.0.11 37.073 s 1,599.2 MiB
faster-coco-eval 1.8.0 7.257 s 1,651.6 MiB
ultrafast-pycocotools 0.1.2 1.942 s 745.9 MiB

All four ultrafast evaluation arrays match pycocotools byte for byte. The additional backend is within absolute 1e-12 tolerance but not byte-identical. The 596,202 predictions were generated on CPU in about four minutes; inference is excluded from evaluation times. One fresh process per scorer on a shared host, two CPU cores each. Settings, hashes and reproduction.

Public benchmarks (0.1.0 measurements)

The same saved inputs are scored by pycocotools 2.0.11, faster-coco-eval 1.8.0 and ultrafast-pycocotools 0.1.0. Ultrafast matches the reference arrays byte for byte. Faster-coco-eval agrees within absolute tolerance 1e-12 (rtol=0), with small floating-point differences reported explicitly.

Workload pycocotools faster-coco-eval ultrafast Ultrafast speedup vs faster-coco-eval
COCO val2017 / public YOLO11m 29.87 s 4.88 s 2.61 s 1.87×
Objects365 v2 / synthetic predictions 520.26 s 100.51 s 12.43 s 8.09×
Workload pycocotools RSS faster-coco-eval RSS ultrafast RSS
COCO val2017 / public YOLO11m 1.28 GiB 1.34 GiB 0.70 GiB
Objects365 v2 / synthetic predictions 22.62 GiB 30.46 GiB 2.37 GiB

Measured with Python 3.12.3 and NumPy 2.4.4 on an AMD EPYC 9554 host, with two CPU cores available to each scorer, two Rayon/OpenMP threads and one OpenBLAS thread. One run per case; prior reference/ultrafast results are reused and the additional backend is measured afterward. These are shared-host observations.

Time includes GT indexing, result loading, evaluation, accumulation and summarization. It excludes JSON parsing, inference and output serialization. Memory is whole-process peak RSS, including parsed inputs and serialization. Objects365 predictions are synthetic: this is evaluator scalability, not trained detector accuracy or end-to-end Ultralytics validation speed.

Three-backend comparison and reproduction · Raw results and hashes · General reproduction guide.

Compatibility and intentional differences

The public COCO, COCOeval, and mask APIs are checked against pycocotools. Compatibility tests cover query ordering, result loading, RLE formats, evaluation parameters, and subclass overrides. Full-array comparison matters: rounded AP can hide differences in individual precision cells.

Some implementation details intentionally differ:

  • evaluate() performs matching and accumulation internally; accumulate() exposes the result through the standard API.
  • Per-image evalImgs records are not stored by default. Use COCOeval(gt, dt, "bbox", store_eval_imgs=True) if your integration reads them.
  • IoU and annotation lookup structures are built lazily when accessed.
  • Ground-truth annotation dictionaries are not rewritten in place.
  • COCO(path, verbose=False) suppresses loader progress output.
  • Box-only results omit redundant derived polygons by default; use derive_segmentation=True when reading that field directly.
  • COCO(annotation_dict) borrows the dictionary without a deep copy.

The evaluator follows pycocotools' treatment of iscrowd, including its handling of the annotation ignore field. Applications that rely on mutation side effects or unusual evaluation parameters should run their own parity checks. See the detailed compatibility notes.

Additional diagnostics

After evaluation, the same matching results support per-category statistics, precision–recall curves, match inspection, and a confusion matrix:

print(evaluator.stats_as_dict)
print(evaluator.per_category_stats())
curve = evaluator.pr_curve(cat_id=1, iou_thr=0.5)
matches = evaluator.matches(iou_thr=0.5)
matrix = evaluator.confusion_matrix()

Boundary IoU is available as an additional evaluation mode. It is an extension, not a standard pycocotools metric. See the implementation notes for custom thresholds, area ranges, and diagnostic output formats.

Development and verification

Write documentation, code comments, docstrings and examples in English.

Automated CI builds and tests Linux, macOS and Windows, checks NumPy 1/2 and multiple Python versions, and runs Rust tests in debug and release. The required CI status blocks main updates when any test job fails.

Install the test dependencies and run the reference-comparison suite:

python -m pip install -e ".[test,lvis-test]"
python bench/fetch_lvis_fixture.py
python -m pytest -q
cargo test -p ufcoco-core

The repository includes synthetic inputs and a small real COCO fixture. Tests requiring the complete dataset skip when those local files are absent; see fixture documentation. Exact parity claims refer to the tested inputs and configurations, not a proof over every possible input.

Use bench/compare_saved_predictions.py to save full evaluation arrays and compare your own predictions. For changes to matching or accumulation, retain byte-level parity tests rather than checking only the rounded summary.

License and credits

BSD-2-Clause. COCO evaluation algorithms and API compatibility are based on pycocotools, by Piotr Dollár and Tsung-Yi Lin, under BSD-2-Clause. Implementation design and numerical compatibility decisions are described in DESIGN.md. LVIS protocol verification uses the official LVIS API and its public example annotations/predictions; source revisions and hashes are recorded in the repository.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ultrafast_pycocotools-0.1.11.tar.gz (98.8 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

ultrafast_pycocotools-0.1.11-cp314-cp314-win_amd64.whl (561.6 kB view details)

Uploaded CPython 3.14Windows x86-64

ultrafast_pycocotools-0.1.11-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (638.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

ultrafast_pycocotools-0.1.11-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (601.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

ultrafast_pycocotools-0.1.11-cp314-cp314-macosx_11_0_arm64.whl (572.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

ultrafast_pycocotools-0.1.11-cp314-cp314-macosx_10_12_x86_64.whl (604.8 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

ultrafast_pycocotools-0.1.11-cp313-cp313-win_amd64.whl (562.2 kB view details)

Uploaded CPython 3.13Windows x86-64

ultrafast_pycocotools-0.1.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (638.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

ultrafast_pycocotools-0.1.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (602.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

ultrafast_pycocotools-0.1.11-cp313-cp313-macosx_11_0_arm64.whl (572.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ultrafast_pycocotools-0.1.11-cp313-cp313-macosx_10_12_x86_64.whl (605.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

ultrafast_pycocotools-0.1.11-cp312-cp312-win_amd64.whl (562.2 kB view details)

Uploaded CPython 3.12Windows x86-64

ultrafast_pycocotools-0.1.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (638.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

ultrafast_pycocotools-0.1.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (602.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

ultrafast_pycocotools-0.1.11-cp312-cp312-macosx_11_0_arm64.whl (572.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ultrafast_pycocotools-0.1.11-cp312-cp312-macosx_10_12_x86_64.whl (605.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

ultrafast_pycocotools-0.1.11-cp311-cp311-win_amd64.whl (566.5 kB view details)

Uploaded CPython 3.11Windows x86-64

ultrafast_pycocotools-0.1.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (639.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

ultrafast_pycocotools-0.1.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (604.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

ultrafast_pycocotools-0.1.11-cp311-cp311-macosx_11_0_arm64.whl (577.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ultrafast_pycocotools-0.1.11-cp311-cp311-macosx_10_12_x86_64.whl (595.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

ultrafast_pycocotools-0.1.11-cp310-cp310-win_amd64.whl (566.8 kB view details)

Uploaded CPython 3.10Windows x86-64

ultrafast_pycocotools-0.1.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (639.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

ultrafast_pycocotools-0.1.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (604.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

ultrafast_pycocotools-0.1.11-cp310-cp310-macosx_11_0_arm64.whl (577.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

ultrafast_pycocotools-0.1.11-cp310-cp310-macosx_10_12_x86_64.whl (595.8 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

ultrafast_pycocotools-0.1.11-cp39-cp39-win_amd64.whl (569.5 kB view details)

Uploaded CPython 3.9Windows x86-64

ultrafast_pycocotools-0.1.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (642.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

ultrafast_pycocotools-0.1.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (606.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

ultrafast_pycocotools-0.1.11-cp39-cp39-macosx_11_0_arm64.whl (579.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

ultrafast_pycocotools-0.1.11-cp39-cp39-macosx_10_12_x86_64.whl (598.1 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

ultrafast_pycocotools-0.1.11-cp38-cp38-win_amd64.whl (569.6 kB view details)

Uploaded CPython 3.8Windows x86-64

ultrafast_pycocotools-0.1.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (642.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

ultrafast_pycocotools-0.1.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (606.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

ultrafast_pycocotools-0.1.11-cp38-cp38-macosx_11_0_arm64.whl (579.8 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

ultrafast_pycocotools-0.1.11-cp38-cp38-macosx_10_12_x86_64.whl (598.3 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

Details for the file ultrafast_pycocotools-0.1.11.tar.gz.

File metadata

  • Download URL: ultrafast_pycocotools-0.1.11.tar.gz
  • Upload date:
  • Size: 98.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ultrafast_pycocotools-0.1.11.tar.gz
Algorithm Hash digest
SHA256 494fd28d823e6e5416629e45b93f3d38e1895d285649ed894f1dcbd729840a92
MD5 63bb684c001856a6288515c5ccbdd46a
BLAKE2b-256 4bd6d9faaf0e7ad42f01d6c327f8d01dd51da67fbf3bcb47d5715bc13b23a8ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.11.tar.gz:

Publisher: release.yml on developer0hye/ultrafast-pycocotools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ultrafast_pycocotools-0.1.11-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.11-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f192ef1848a6139044b1a3b5771aca27b44b9ac3a45a7bc166a9c5e0ab37ad01
MD5 8027d603abef95ea2a2ff58cd6fe842d
BLAKE2b-256 23a1bb77070c1a2f06c050f7519489c0c6e7fff420c83d96dac791dc3a53d919

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.11-cp314-cp314-win_amd64.whl:

Publisher: release.yml on developer0hye/ultrafast-pycocotools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ultrafast_pycocotools-0.1.11-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.11-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 27b89fa0f95207677be8da8126c9f4bae56c08bc5c657999c14ca96edb3687ce
MD5 8de90bc079811d880b2d35fe48f33a85
BLAKE2b-256 c402e0dee7231b6db50d859b2c1d3fa47c4c9ad0588f68847a40a045207d1cd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.11-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on developer0hye/ultrafast-pycocotools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ultrafast_pycocotools-0.1.11-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.11-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 daef37feeba07f2fedde95a545c64110701e5a70c8fa573473e5950a5407d0dd
MD5 13ff384ae55889eb405db49ee56999f1
BLAKE2b-256 16c8bd67afd9892b2138e31c02fe954970a12f2f367ce62c08301c5c7ff2576f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.11-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on developer0hye/ultrafast-pycocotools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ultrafast_pycocotools-0.1.11-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.11-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 56d6a970ec6ba0794f6dad865fa3f076397bd3d6c5189f55fbc240234f803aaa
MD5 f6bc9eb1cd6813dbc4e86f30bd894342
BLAKE2b-256 c6a12827124dbf09495a7a88b6e5ba5f185c2060cd9aed9a24e09badc26c3f83

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.11-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on developer0hye/ultrafast-pycocotools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ultrafast_pycocotools-0.1.11-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.11-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 654d3df49b3985bb5452cb7e8f4202ebf91280a8d493b41156c1fb5848c9bfff
MD5 35584bbd875a9c205ed8f0e26aef74d6
BLAKE2b-256 05d666ef8da7fe95a38bcae99685c697b4937bc0af004e9f7adfe29d80f31436

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.11-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: release.yml on developer0hye/ultrafast-pycocotools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ultrafast_pycocotools-0.1.11-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fb9d3d8bf562a2424b69d240edac5385dae147612574ae9a03be268c0d9dc38b
MD5 521f142ec7f3444ff2fa72a8752056e2
BLAKE2b-256 529978c8b986fa513e4b7c95fbf9582471ff2aa23558c1d745be36ec3ae21ecf

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.11-cp313-cp313-win_amd64.whl:

Publisher: release.yml on developer0hye/ultrafast-pycocotools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ultrafast_pycocotools-0.1.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9cea5e211a28c78d7fef296c99421ad48ab555bb5eecb88ac33facbbe5f11dc5
MD5 bf72791955d2f16d7dfe94dc75c69c88
BLAKE2b-256 9c94e113c5233f9749e04884cd59c4ac657efde1ecc2fb20019174bf909b8299

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on developer0hye/ultrafast-pycocotools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ultrafast_pycocotools-0.1.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4766be9141555e27f6f00226975f7b9af4aa612d865123d3f5a44f27cde18264
MD5 bfac8cad928f20c56ec658a40d2efc2b
BLAKE2b-256 551a60f4a81cb23ded954c2944a661916435d2d9e8099c1176fe6a89aafa6bfb

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.11-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on developer0hye/ultrafast-pycocotools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ultrafast_pycocotools-0.1.11-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.11-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5584db2f69ac47902eee4d01d43eef41b22fbb33612606cdd786eced3e020d46
MD5 96a0025b3e5c744abec199cb238faeb8
BLAKE2b-256 460845b5a0a99418392f9293a5e0926902eb7891a384056a748bf1fff2c78c09

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.11-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on developer0hye/ultrafast-pycocotools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ultrafast_pycocotools-0.1.11-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.11-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 390583841a404ab01728a174dc6329abecdd5e690f810a168a54bd6fd1bed2fb
MD5 1245ed34ae6ab7b94cf1bdb11d450f62
BLAKE2b-256 5f543885736518c9d7bd919b890e6a50b216257a592e2450fbffdefe073bf1f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.11-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release.yml on developer0hye/ultrafast-pycocotools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ultrafast_pycocotools-0.1.11-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 08f141dcdd6d87abbb03a05c8ea0c80d0de2bd508a9e60f5dffc3133c08e9b6b
MD5 8a4a52d77a15529542a1d873309b2793
BLAKE2b-256 4c9b5577612bf63a418afac77cfc74801ec16a44d967874b06a7f27320d5aa81

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.11-cp312-cp312-win_amd64.whl:

Publisher: release.yml on developer0hye/ultrafast-pycocotools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ultrafast_pycocotools-0.1.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b30d5a6c41557b0a76110ce9c32df388cdf560c734067089a4efa6550990e18
MD5 a98f4f0e01f914876f61891a3598104b
BLAKE2b-256 342b568699fbe6baea7e3462e87ef9a03850079b6114fa6c4d106337fb95a13d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on developer0hye/ultrafast-pycocotools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ultrafast_pycocotools-0.1.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2dd3e47013a92f966d6cbfe2d7aa4180cc0b37b8fb236e9cbdae32e650a7f91e
MD5 d76b09d8c472bd3c4473cc198e457731
BLAKE2b-256 02afc04bc49d16a93fb6e4640e886733ccfc5192a0bca8b90e075ec403172485

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on developer0hye/ultrafast-pycocotools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ultrafast_pycocotools-0.1.11-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07e386a91bf9831280151d7d16a59ef7cf73ad0843178fe030c8dba332f7eb65
MD5 39bc399f2456c72583f78c7fd0060240
BLAKE2b-256 333bdec0235e210c448caf4dcf236672ffc48f7d77815d5caf7aed6de0c76cf5

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.11-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on developer0hye/ultrafast-pycocotools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ultrafast_pycocotools-0.1.11-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.11-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 609ffb6cf384369f1bb3e5e405d133d57fd646c4dc28eefc91ff0e47268ffbe1
MD5 c470e9468d9881d33bc45dcc4bf3a142
BLAKE2b-256 7a3655c55e3d855213273b9a3da1e1ba54f4a35aec0a63120dc1e549e5a6c8db

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.11-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release.yml on developer0hye/ultrafast-pycocotools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ultrafast_pycocotools-0.1.11-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e49e213f1d974e450dfa71de5515a9d1dd360a5affda3d9da68421bc0b7f5c7b
MD5 525dba01e518de2505068780346a8306
BLAKE2b-256 6d642690213a15954f55a07b58fd6868108ebe95a931655808b3feeec32de86e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.11-cp311-cp311-win_amd64.whl:

Publisher: release.yml on developer0hye/ultrafast-pycocotools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ultrafast_pycocotools-0.1.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0841becb327faa6d231ca0005379a268ef252e1f3f04a9614008f3a41a0e5d25
MD5 83b69a3540bb34d47e781f0c7c4f1545
BLAKE2b-256 80e0e34002c271af8fb194fc31c8680936840eeda1bf030a1d0b78f857d88e0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on developer0hye/ultrafast-pycocotools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ultrafast_pycocotools-0.1.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9012d63a12662fd04b84a5ff845de43c9419f555d6b73f0a44124492835910a4
MD5 01a03823e3d5f44b50bb3cf861abeeaf
BLAKE2b-256 9895a19e97e257974cb3447cdadd77e619f659cb03c55cd5b081a0f44531e07b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on developer0hye/ultrafast-pycocotools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ultrafast_pycocotools-0.1.11-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.11-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb3c47554b10caf591ae4ee02d5385eae74dfa8fa4c37494ccef4fefd645fe68
MD5 a47084ecc81aafeda5f9557922e64ffd
BLAKE2b-256 8cbe37692f9fbd2e35505c588d039aa7105ad20e0892718e62083dd35a6b4810

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.11-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on developer0hye/ultrafast-pycocotools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ultrafast_pycocotools-0.1.11-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.11-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fd9bbdf71e1e874cc6be472c1934084281da09a07552f9cf243e4f3718fe043e
MD5 85558986567d31448d29eefb7289de8e
BLAKE2b-256 9da586002194bd8b5edb6f8823379b0ad7cc1ec3a0a80074c1517c24edd1679a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.11-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release.yml on developer0hye/ultrafast-pycocotools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ultrafast_pycocotools-0.1.11-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 aaafe5074d841240217dc3f8802ec78572ffe7f2720810bf5f4525832f7171b0
MD5 75ac63bccf4beb0994d5b5efc9384d63
BLAKE2b-256 51d5053f65f208be8730aa695d5be1c8b26047042d09b5bd089cbd58102cea4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.11-cp310-cp310-win_amd64.whl:

Publisher: release.yml on developer0hye/ultrafast-pycocotools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ultrafast_pycocotools-0.1.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ae528b2c69bdc1f4cf0f2468fb01b713a7ecd0a10b827793c184abad521a878
MD5 1fb3a875156844b41c2972f1dc89c8e5
BLAKE2b-256 d2692505fe691c5725742811207b032e673d2eced0581e6dc79c9e08eb49d190

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on developer0hye/ultrafast-pycocotools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ultrafast_pycocotools-0.1.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 883f4a87de616f1951dc22029af19cd2e47aafe04c51810ed2ab39832e5d583a
MD5 836efb3dd3b3be3c5913eab505ade1e3
BLAKE2b-256 fcf608a7122c4980e1b9f7a04ece61064b272bc321832854580b08c065ef8ac6

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on developer0hye/ultrafast-pycocotools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ultrafast_pycocotools-0.1.11-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.11-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d714361055b05b6d758e2bf25c418466e26342816e3ab8a58f917194e9353784
MD5 029c1a86d7becde72fb344873fd68d56
BLAKE2b-256 5f0e266fe4815caaa0258150891830e10ea7b3002d278d8a69164c192cb89a23

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.11-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on developer0hye/ultrafast-pycocotools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ultrafast_pycocotools-0.1.11-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.11-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 223f1f6b5f822a99952c508d8c56484e3cfac2467d26bd4e01eb6d7b706e9057
MD5 e4c44578035d6ac267845e54ddee888d
BLAKE2b-256 e6cf1583328c0293a69c2fe3c34c7ad79cdbba2e8c312c78dfdffff3fa54ac75

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.11-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: release.yml on developer0hye/ultrafast-pycocotools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ultrafast_pycocotools-0.1.11-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.11-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 840d961ab34a4dd004a8b5e21f05977b312cbb31a5e2660e99091e3ba5592bd1
MD5 336a8abcdc5129409dddabe9d391d10a
BLAKE2b-256 0bdb2adafe1bb3d77cdea39dc0b2391e3a28b72f07f22f1f9af374d9374cc031

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.11-cp39-cp39-win_amd64.whl:

Publisher: release.yml on developer0hye/ultrafast-pycocotools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ultrafast_pycocotools-0.1.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e85aaa296e8f018a6b54a8f463003a800c031f97f537f29e6862ea6ce8edf1e9
MD5 05a14edc1e9126d5ea6c96f0a3d2ed72
BLAKE2b-256 c98116ac80c855eba0627986fffb47c41aac715cbd46ba0caecd3f03b29fd3d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on developer0hye/ultrafast-pycocotools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ultrafast_pycocotools-0.1.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1c4be44bb5eb616a456b3ffe39634e62e3122cef3382d5a8471a702d756fd4db
MD5 8805d6f429c8fe4cafc782a9e383d691
BLAKE2b-256 c97d262c38c85badaf72fee4220833736d278c99021bdcb518dd1bbb3b612518

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on developer0hye/ultrafast-pycocotools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ultrafast_pycocotools-0.1.11-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.11-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef580cf9b457bd42822be852b0aa19d46192100ecc1f1c83e278540734c335c6
MD5 b455b7dc58e4febc139c10052f168c38
BLAKE2b-256 6ef7bccd791120ef6b01c6940b1afb1a5940972a2900509098eb0f8e87b4f438

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.11-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on developer0hye/ultrafast-pycocotools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ultrafast_pycocotools-0.1.11-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.11-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 47d3671628024a6a56e789f42c32c24f71f4d03928aa7cb997c73e13f6dddd12
MD5 6158c3a33febc81ca3ead3b5098bf835
BLAKE2b-256 67720d028ccd51beb3483ce97ec3ec57dbb9a6c1d1c709dac357eeb1bbc8d362

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.11-cp39-cp39-macosx_10_12_x86_64.whl:

Publisher: release.yml on developer0hye/ultrafast-pycocotools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ultrafast_pycocotools-0.1.11-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.11-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a3f5c07af78430251d02a087ac2b16f67914a4e52d311e77b0c06a7cfec63495
MD5 72e56e2c0fefd94d258b36a4ebe17bad
BLAKE2b-256 7ac85264e5bf6475620f31d9d4e42bfea47ee83fcbc311df7bfffb6b1fcfc3d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.11-cp38-cp38-win_amd64.whl:

Publisher: release.yml on developer0hye/ultrafast-pycocotools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ultrafast_pycocotools-0.1.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6ad7c9f64164791a8a266ba298fa202b9cc9ce68b623d5f91aabb5751d87da43
MD5 98efbc8a242b4240618c323ab920bd66
BLAKE2b-256 b46176f8215749ba37fa57e4869fdc7d7e970cdf8a2237e27c1146dd7bfaa9a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on developer0hye/ultrafast-pycocotools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ultrafast_pycocotools-0.1.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7cbfe42f5fe9ff9b4867ca156d6f359ada09e52c66d8b3fc4b8d31753f14d307
MD5 18280fdf239319cc4379d52528a1ea25
BLAKE2b-256 97d621626944e0b3b1e9ab935408d9a1c21a612cc2055d6e0fc05fcf6ecf51da

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on developer0hye/ultrafast-pycocotools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ultrafast_pycocotools-0.1.11-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.11-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a56aabb8384a7c4d4f0e00c6e964600d6a807b0b4b3dadec86b988e24a28bfb
MD5 5fbf05c8d3a5f8d3b93b257d17df977a
BLAKE2b-256 bbd387af58d7ff39fd5f2d3f8fa4b58db1d98cfcf82e81e77a77a22b5c7399e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.11-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: release.yml on developer0hye/ultrafast-pycocotools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ultrafast_pycocotools-0.1.11-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.11-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 90ee4351ccccde37b5c81b89ac1b5ac39521f20c2a019326e20550d698c18766
MD5 a5c988825eb650f82e992c95a91eae69
BLAKE2b-256 9290706afc6a8d0bd190c4b714c022820a3ec15688083d4227e5fbbff395e803

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.11-cp38-cp38-macosx_10_12_x86_64.whl:

Publisher: release.yml on developer0hye/ultrafast-pycocotools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.1.11 This release

36 files

0.1.10

36 files

0.1.9

36 files

0.1.8

36 files

0.1.7

36 files

0.1.6

35 files

0.1.5

25 files

0.1.4

24 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