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.

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.10.tar.gz (93.6 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.10-cp314-cp314-win_amd64.whl (527.2 kB view details)

Uploaded CPython 3.14Windows x86-64

ultrafast_pycocotools-0.1.10-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (606.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

ultrafast_pycocotools-0.1.10-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (570.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

ultrafast_pycocotools-0.1.10-cp314-cp314-macosx_11_0_arm64.whl (542.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

ultrafast_pycocotools-0.1.10-cp314-cp314-macosx_10_12_x86_64.whl (573.3 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

ultrafast_pycocotools-0.1.10-cp313-cp313-win_amd64.whl (528.2 kB view details)

Uploaded CPython 3.13Windows x86-64

ultrafast_pycocotools-0.1.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (606.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

ultrafast_pycocotools-0.1.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (570.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

ultrafast_pycocotools-0.1.10-cp313-cp313-macosx_11_0_arm64.whl (542.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ultrafast_pycocotools-0.1.10-cp313-cp313-macosx_10_12_x86_64.whl (573.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

ultrafast_pycocotools-0.1.10-cp312-cp312-win_amd64.whl (528.1 kB view details)

Uploaded CPython 3.12Windows x86-64

ultrafast_pycocotools-0.1.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (606.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

ultrafast_pycocotools-0.1.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (570.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

ultrafast_pycocotools-0.1.10-cp312-cp312-macosx_11_0_arm64.whl (542.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ultrafast_pycocotools-0.1.10-cp312-cp312-macosx_10_12_x86_64.whl (573.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

ultrafast_pycocotools-0.1.10-cp311-cp311-win_amd64.whl (532.4 kB view details)

Uploaded CPython 3.11Windows x86-64

ultrafast_pycocotools-0.1.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (607.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

ultrafast_pycocotools-0.1.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (572.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

ultrafast_pycocotools-0.1.10-cp311-cp311-macosx_11_0_arm64.whl (547.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ultrafast_pycocotools-0.1.10-cp311-cp311-macosx_10_12_x86_64.whl (565.7 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

ultrafast_pycocotools-0.1.10-cp310-cp310-win_amd64.whl (532.6 kB view details)

Uploaded CPython 3.10Windows x86-64

ultrafast_pycocotools-0.1.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (608.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

ultrafast_pycocotools-0.1.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (572.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

ultrafast_pycocotools-0.1.10-cp310-cp310-macosx_11_0_arm64.whl (547.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

ultrafast_pycocotools-0.1.10-cp310-cp310-macosx_10_12_x86_64.whl (565.9 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

ultrafast_pycocotools-0.1.10-cp39-cp39-win_amd64.whl (534.8 kB view details)

Uploaded CPython 3.9Windows x86-64

ultrafast_pycocotools-0.1.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (610.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

ultrafast_pycocotools-0.1.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (574.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

ultrafast_pycocotools-0.1.10-cp39-cp39-macosx_11_0_arm64.whl (549.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

ultrafast_pycocotools-0.1.10-cp39-cp39-macosx_10_12_x86_64.whl (567.6 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

ultrafast_pycocotools-0.1.10-cp38-cp38-win_amd64.whl (534.9 kB view details)

Uploaded CPython 3.8Windows x86-64

ultrafast_pycocotools-0.1.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (610.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

ultrafast_pycocotools-0.1.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (575.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

ultrafast_pycocotools-0.1.10-cp38-cp38-macosx_11_0_arm64.whl (549.3 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

ultrafast_pycocotools-0.1.10-cp38-cp38-macosx_10_12_x86_64.whl (567.6 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: ultrafast_pycocotools-0.1.10.tar.gz
  • Upload date:
  • Size: 93.6 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.10.tar.gz
Algorithm Hash digest
SHA256 9b2ec3ec4136dd9a946e834850a70ee27528a17f76282d8f757ac022f47dde16
MD5 a9b8951d34522113fe4405869b3724c7
BLAKE2b-256 2a7791f3dba963ac1db72d7c815a816a0dc8012fe055f016a14d1c3e8245b0b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.10.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.10-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.10-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f83601f25226caad513fae4653a0b1a69a727a623f5937afaa55ef332880cc7c
MD5 2c04946fee421b12689c585fbe4a6064
BLAKE2b-256 8671391c9a041bb221774888ebe466e186a98d98eff799af9c77fb802b2c9969

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.10-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.10-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.10-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91410741dfaaf28c388b2b35f12e0be32f7e4195360d4b2a64efdfc17af7b2c8
MD5 072718ac6ffdc174254a2bfc866e0b98
BLAKE2b-256 b2ac44bfc1c07d4d3abae8824dc35dd2c84385d5de04ad79d6a84137e4686756

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.10-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.10-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.10-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c6a345c0e7975e5febdf12ee82b439e794b546ca56c29b5a10f08c27d4e8ee5d
MD5 40abaccd00aef5d234d51a91243b4763
BLAKE2b-256 d50b403c9f77915d81efc27d533f513d7e33843eba7a4f25703dc3833a19f6b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.10-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.10-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.10-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e50fd44eee530ca450b753a0ef341f25bf169bc098e597fb0f666bcdd45bc23e
MD5 b89ac9bf35c257c1435e04a14815e348
BLAKE2b-256 00ec7a94b91a6782d0faacb2f65a1e74939ee88f56e15485ae08bb46bca2d1f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.10-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.10-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.10-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 99f67533f16e87b2d514f64a1665757c29edf9933d7e5b6186f1379c93773c27
MD5 89fb3cda0a0f5a8e927a13f53b1fe132
BLAKE2b-256 061cb5dbbafc20d258c47166b56f8be281b4e871140569c461b7f811eead4b66

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.10-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.10-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f544951c32b69150eccec21814813af92aa7034ef9d1e3cf3d11b0dd09830b97
MD5 96b4984455d3e3bbefd945149fb43dfb
BLAKE2b-256 4565a31742ed5014b4b7962b4b0de2f94a12cb4fe768d0f748c980dabf8042be

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.10-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.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 83746aa9a86208601b086ad456fc5c2546e77e69f3162d6770d9f558aacdc07c
MD5 3c307fb60b4daaeb00153193a83227c3
BLAKE2b-256 f97a5b6b824cfaa8d49afe11ca6918b55d97151ee0b9294a7f61e614fd6346b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.10-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.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 33bdaf60290ac2da4938d9038d232debe6c7e787302854c83ffddd6900e872a8
MD5 a3447e737f89aedd2872ad8508da2de9
BLAKE2b-256 53e6a9785c3d72b906c55f1f9cf19ea972b2d79666d349b9af6dad8109efee30

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.10-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.10-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f3c1e2686f25854ed95f65261d8a4995467e4bccc6120effcf182e29f993e46
MD5 2fb3ab6b38d333c8a33270503f38d679
BLAKE2b-256 fd9dba4c0adb70f63fe5b50af572bcae51a8183a8e087ba9bb49a08f30c62157

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.10-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.10-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.10-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ee4442e4fe15e1161873a90126be7e9b513eb67a50b650a8cea76b7995ecf148
MD5 07862a67123d3e8e3da803bc070cbddd
BLAKE2b-256 df38d486351664475270c1ee19fdd939bf26dedeb601ddf65a17c7f492227641

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.10-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.10-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 74dc32b3f63c0e95411aaca59138e258595e78142e9f9df5414ea21c79996473
MD5 82e25bc890e50b929315eedee85f08b6
BLAKE2b-256 da3c86f525632c38b6d7e2d04d405a4d1b0336f2c6ed422acbc29394bee7c7cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.10-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.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3de31dd76ff8e43f53fecc24cf5d03d1768ac70bf7e1403dea536c728cfd0260
MD5 d3dce6969983fa56ed8e238fa8c3359c
BLAKE2b-256 42f12075b39ea8c37b9bffd7a10b33d5606ecc10c130ae130b46a85854aa05b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.10-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.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 59aaf2cc42f552370837e9f18b21e908134fa5b114f10bb1c2423fda54095b24
MD5 8929ce72631b2c7867f81fdfcd38c892
BLAKE2b-256 b60c33845ea75cfa3016aef2dc18ac6596798428fc08a108464e905d72d1a33e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.10-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.10-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f78f3b7f49c3b8f8360a637fc3bb880521bfe5033d48327adb213db7c6299d59
MD5 c6776950135ad3619cfe5b9a3c9fc125
BLAKE2b-256 b1bed06ac59d7159759e5a54babb60a0acff7e05a2e90066e093cd920e6634ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.10-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.10-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.10-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 21e416d97ea2a1f502f4c7955a023e78942c90e89ddee1b8410059559e4eb32b
MD5 93f7c50832762104f629742537a1edfa
BLAKE2b-256 eb7c90f9bdbf623d285219987d90218959315a046c91fc615bf37cdbe3136838

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.10-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.10-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cf2279f1c9fa25ba104d6e1bd8e972a605874da6fb9d5857a808a588bb2b33f6
MD5 b2601dcef1c9b84a63aaed0fcac7bf43
BLAKE2b-256 4d6310069cd56d27979fb44b5371b84f69ed3bbc33f228c06a9012ca5e95991b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.10-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.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10cab2be79477bf683e1c11d6d699a9018f74616282c263f0544e75c8a609d43
MD5 72c28eff7c85f9466f6942fd83cf3eaf
BLAKE2b-256 e2853b5d7cb18330057faa0f330ff13b451148d2c99c4a4b28fee11e579ab787

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.10-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.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a09e5cca6e1fc328558aa5fa0b64a2304af3dcc6b51b24e77737030d36b6e4ca
MD5 4eb51e663fbe5fe9e9d42adffb7f9ec3
BLAKE2b-256 db95cd73fa339548b0d5e7668e7c1c53621198407f53c4c1de944b6da628fb4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.10-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.10-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1954431861eebd4f38772b3ea5956ee9b3b1acf4e1137568356fde2e8a282ce0
MD5 7fc5d3727f9fb22b79e5f53f19c683cc
BLAKE2b-256 7f7d98b64860a71439835cf73dd704ce31f9c203da7e0659ecf2552d24fbd90d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.10-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.10-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.10-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 03a9ec66630d390af7f5a3f990a983f5679e635e8e8c4ffc2921b1cc51924f76
MD5 29a143d6f94aef9ace2a265ddc008858
BLAKE2b-256 69fdf020fbd0ed9829372bd542ef75d92dfc4de122aad8ee9d4a66e4a53deb15

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.10-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.10-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c278a5b5bb73632a20418b9f04cc6fbe7c934febfa51c8d848e31ccc3406aa46
MD5 05e095f21500f36d1be9c728e79f4597
BLAKE2b-256 79fdbaa3b14d8b00c5f0d4b62936d35af96b40ce18384736c52193606cd5ec9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.10-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.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 364eb831a01532d72543f9a17e67188885d35cadee3b34cad429140a16a7129c
MD5 3575637b6c43c41dec3eb6105f85d038
BLAKE2b-256 6f9cbdd4ed7075f62e1302a3887f345a5c49b74e8adf6141734ce2f055ad933d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.10-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.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 32ae141ea11ad65481c2d5624457389af2ff668c621ff98edcee129e02a0f478
MD5 bb5d558a07686e8db9b9af1286e17bc6
BLAKE2b-256 72475e185bcb3f3c34774f6ce426059989f43ee6bd715b926eb0088c9e2c687f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.10-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.10-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 28717ff2c85d6b8f372737ff1bb032f1b886ada70b023a68021783393406fbc7
MD5 1381f6f6d2bb154a9097d4bf20ca8a6b
BLAKE2b-256 3df48e1eedc1e0210694c9f6a4693b6b527fc424a3fe1b54213d967853bbe266

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.10-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.10-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.10-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d9a3b0ac2a3d346c11e3b8b3524aa435c29ed79056ef0126ecc64cb7269efc76
MD5 9b0c47faaade797216e78569cf7c74fe
BLAKE2b-256 8e7ce1f128a5949c0df851078582ba0c3fde59984fdf8cc3d87c571fa7af0bd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.10-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.10-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.10-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 205a4f2fdd6cc901c5a50b0f5dc879acac39e09a3b15b605b5626618f7c2d8d2
MD5 9d8b00693edcad7305fa09093f260d5a
BLAKE2b-256 33da538fa2df05085ab8513a244785e0fe48ce6f5949bb26955b641ea1f0e993

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.10-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.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3011676629f92a977f39d141c5808893cbf802bce6dbffd232f5824c82a9689b
MD5 df03c6d26bf618737205cec58a8327be
BLAKE2b-256 180962bf7e5d79931e3fc7b2cc2899dff612af5f6eaceed4fa38f7738564c5dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.10-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.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c12044442a884725a619f92ac20bcfad23712f3634bdca0ea685b2e1f370dfbe
MD5 840fb4c8396c06d390ff65b7b33a71c1
BLAKE2b-256 1f01a5afa2d080f1061832944fda74a36900d88f8927ea0283d819cd1fb21981

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.10-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.10-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.10-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d20115074d5a4dacfb9d5766a62fd5fd6500e04217e250b2f1b117aaf3929ee3
MD5 2cc104047ef6d1d7468ee672997b1da6
BLAKE2b-256 877fa7ee61ec754086a863af32f084e9cbf95c4df86c08c96f748f506a6b87be

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.10-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.10-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.10-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8bc11abd72a7f0d3005d30d8c93fd24ff2e4ddb86380859db08ac1fa8c1e8bf1
MD5 abc0721f9c759684d6d22d09b92a2857
BLAKE2b-256 1fc80023088cc8aa0af9b8dc9e833a5c8781c7bdf0ba8d43ca4a86636d395687

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.10-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.10-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.10-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5689953c61c9084e003b04676112227b1f4b0cfd1dbff188be5e38349bdf52e2
MD5 a6e0afa0a2c702b412c8e9fe084b68c9
BLAKE2b-256 9649fa5a7e61b54312eefb93181b10143eddf77c85c87f66e9295d4d4d0f8a8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.10-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.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f85643b891a63f6774c8a2cc53e30c817b5b22d36054c6fcbb08d433038c876
MD5 e12048b48890eafc4178f1d5234a0fbc
BLAKE2b-256 dc7574c95718c89e345972fe9cd624e84ffffa4d7ddeec609145b640c9ce370d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.10-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.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2adff0152ad412eaf3a4bfd7ac3d146710224891ef85d7e432f5dd926b680fbb
MD5 c14d352607e8c9e922f8f1e1fbf91c91
BLAKE2b-256 3c2692214ae140b51d5bb8bdfecf77b2596b168f5677f9e4c89a498ad503fb80

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.10-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.10-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.10-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1019634833da321e003a75c575b4a04792ea54de4e7fc39240ec44cf9378e2e0
MD5 969ce9837ba76f4024fe0d30bd8c6070
BLAKE2b-256 99c07d774b9a480687140ff4e789bf575e037fee09551190fae2eb1f007a8a4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.10-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.10-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.10-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8efb3aac3354b9385aff3cea396b38fe0851382455a0b39a125a0eaafd68e6ef
MD5 1974fe1fe48aac4ee9628a245c1e5be6
BLAKE2b-256 c9b33019def89cf58db0f7f00379d73f1c724756d303cc9e441f6e8a7456bdc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for ultrafast_pycocotools-0.1.10-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

0.1.11

36 files

This release

0.1.10 This release

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