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.9.tar.gz (93.3 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.9-cp314-cp314-win_amd64.whl (526.8 kB view details)

Uploaded CPython 3.14Windows x86-64

ultrafast_pycocotools-0.1.9-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (606.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

ultrafast_pycocotools-0.1.9-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (569.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

ultrafast_pycocotools-0.1.9-cp314-cp314-macosx_11_0_arm64.whl (542.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

ultrafast_pycocotools-0.1.9-cp314-cp314-macosx_10_12_x86_64.whl (572.7 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

ultrafast_pycocotools-0.1.9-cp313-cp313-win_amd64.whl (528.0 kB view details)

Uploaded CPython 3.13Windows x86-64

ultrafast_pycocotools-0.1.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (605.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

ultrafast_pycocotools-0.1.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (570.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

ultrafast_pycocotools-0.1.9-cp313-cp313-macosx_11_0_arm64.whl (542.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ultrafast_pycocotools-0.1.9-cp313-cp313-macosx_10_12_x86_64.whl (572.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

ultrafast_pycocotools-0.1.9-cp312-cp312-win_amd64.whl (527.8 kB view details)

Uploaded CPython 3.12Windows x86-64

ultrafast_pycocotools-0.1.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (605.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

ultrafast_pycocotools-0.1.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (570.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

ultrafast_pycocotools-0.1.9-cp312-cp312-macosx_11_0_arm64.whl (542.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ultrafast_pycocotools-0.1.9-cp312-cp312-macosx_10_12_x86_64.whl (573.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

ultrafast_pycocotools-0.1.9-cp311-cp311-win_amd64.whl (531.8 kB view details)

Uploaded CPython 3.11Windows x86-64

ultrafast_pycocotools-0.1.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (607.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

ultrafast_pycocotools-0.1.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (572.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

ultrafast_pycocotools-0.1.9-cp311-cp311-macosx_11_0_arm64.whl (546.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ultrafast_pycocotools-0.1.9-cp311-cp311-macosx_10_12_x86_64.whl (565.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

ultrafast_pycocotools-0.1.9-cp310-cp310-win_amd64.whl (532.1 kB view details)

Uploaded CPython 3.10Windows x86-64

ultrafast_pycocotools-0.1.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (607.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

ultrafast_pycocotools-0.1.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (572.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

ultrafast_pycocotools-0.1.9-cp310-cp310-macosx_11_0_arm64.whl (546.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

ultrafast_pycocotools-0.1.9-cp310-cp310-macosx_10_12_x86_64.whl (565.4 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

ultrafast_pycocotools-0.1.9-cp39-cp39-win_amd64.whl (534.3 kB view details)

Uploaded CPython 3.9Windows x86-64

ultrafast_pycocotools-0.1.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (609.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

ultrafast_pycocotools-0.1.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (574.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

ultrafast_pycocotools-0.1.9-cp39-cp39-macosx_11_0_arm64.whl (548.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

ultrafast_pycocotools-0.1.9-cp39-cp39-macosx_10_12_x86_64.whl (567.3 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

ultrafast_pycocotools-0.1.9-cp38-cp38-win_amd64.whl (534.4 kB view details)

Uploaded CPython 3.8Windows x86-64

ultrafast_pycocotools-0.1.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (609.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

ultrafast_pycocotools-0.1.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (574.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

ultrafast_pycocotools-0.1.9-cp38-cp38-macosx_11_0_arm64.whl (548.8 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

ultrafast_pycocotools-0.1.9-cp38-cp38-macosx_10_12_x86_64.whl (567.2 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: ultrafast_pycocotools-0.1.9.tar.gz
  • Upload date:
  • Size: 93.3 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.9.tar.gz
Algorithm Hash digest
SHA256 f81245f6463968bf9c20814251569a9ff4d352a7a43f24bfdbb0561400701d54
MD5 30db621ad7c1812cd1c936f6bcebcdf1
BLAKE2b-256 b729b6d11598e63aa00f102729333ea290c84d08bd9af063b56dea93b18d4122

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.9-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 72c93b5482956231c485b3b1eb9ea9dc85be13113afac2cebb4fcf6c0cdca55b
MD5 e22563233642a76e482d88ed0424d1e4
BLAKE2b-256 ea20fecfcbea345d4b4bc5c83f42360ccdc9ffc3bfc77e0efaf972b228b8284b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.9-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cf7365a527b4105dc6952238704a08a8c58cdbe7a5034e35329dcf6446b2f40d
MD5 7dea4320ea2161d58d1b71c92b5e040b
BLAKE2b-256 d44c34abe8ad1a8729b92a8bdb7e3b96c8377fb8512ea8e32b428d88831585ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.9-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dd0518b774240cb969339c138b37f612239d7de70ab7e01ae1627e15311a93bf
MD5 526cb010b9ee7c22169d6186823253f3
BLAKE2b-256 c3a08de8cd785ce4982e0acad613848677514c253a6ee37913f29a37ec3d3a48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.9-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74e80d186d82d1af629c72adff2eea31e5b9e44cbede6f83728821452540d78f
MD5 5cf6bdb0fe8fc72ede1a74f5bfe21be5
BLAKE2b-256 f44ffb7c2ae16f097044dfb3e72921336a523eb66aacac87775419d256acee2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.9-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0456d08a92b08a8bac253bf5204dea3c93dfc666243b31ceafce984194da4d72
MD5 cdf3e6b842d27209399650319f375f8b
BLAKE2b-256 c2265976cf1ee8cc70a234fa9973aa12bf526ee7ef370692f1de3c0f1b512539

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 70e6078ae511430845af2f2393c6756bfd90a461e2437283a1298afed7bfda02
MD5 c6712e0168ec68db69a968c377d1e296
BLAKE2b-256 2a0b07a77afa579af63d96f307e91e32091052a5906f43a8d474afab9d3e2117

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cbc9ecea51e7b1e469bd048c7c40fa3a5dc74dcc8a5f4c4c70d954f6737a8e52
MD5 4e07d79bf949ab8b518c79ccea8c042d
BLAKE2b-256 f5e8873aa59b726dfa59bcb0e0cd685324900f9e08ac7469c7773219d9253761

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 59ad92e7cfa1c4cd6862aefc9e606879471fa714a30a036a930a2c226c3956b9
MD5 c3a0b0af8991f487d078f3135ea60248
BLAKE2b-256 118e846d8860154d1e7f9c114626d8df85b3f908f5b5726cc437e388c9f2a7bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3409646068fb55439878b540bd6f9e86d342ccd8e62106562b673a0f9f046f36
MD5 f64012d283af86412986df4ea018735d
BLAKE2b-256 56a904cfc0ba2f006b35ca0acd6d0ed82d2a10bdc98729cbb87eb9e75a3de3c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.9-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a7f2972f2bf21f3c197225b3ff8ebd66d853c8cc96ec7029464e40770c8d6691
MD5 399aebff80b2df49c32ef074da7c46c1
BLAKE2b-256 5c91f3d72cf0eb6dd58dc0ac430fcc7e6f175b00974ff89c424a70a9d15530a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 217d725ba38fa869cb56852cedebb55747c28c34e9f5744fb83bd284f3db42b6
MD5 7990d5386cadfae59ea55fab037dceeb
BLAKE2b-256 24de4ecb6d43150c98ebb4dd094bbc1089dab474cea1f327e4e1c9ef213e5014

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e12fcca664278408a3cce3dd67902f42846771e7991bac63a8b2dcfdd521fc41
MD5 ee827accfda64aac683baed79a9b80ad
BLAKE2b-256 9cbd104a0fe4402adb42d4e5db55b1554c2a154d0d4cc5a00e02c40742cb2073

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4bf1252ff302a7b1b113900a3921b50bc06a3f4ddf5928017e3c00666dc7a6e7
MD5 edd74d70b0754c08d037a36f00dffdc5
BLAKE2b-256 c11e336a39593e505f65efaeae41a9cda9dc1bb2e2df96b307b11a0f7f2dfe61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed7e03d407dc9ea62f1b7b8e536c1ae575aab1a603f2073f942f5f488d2fe6b2
MD5 16790617de08ec5aa136b5b181b2c1a9
BLAKE2b-256 a439e84d23955ce3a4fc561953427cab8c5cbaed703c2b812f2943de34274e5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.9-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c4fdccc700bfe8f6d7196c9f8fd8bfd43a75c1c1f6780fa081a96004bdcab5e4
MD5 3e086dc5df7ae3fcae00510088d27088
BLAKE2b-256 2b990a1fddc6a4b00c5585c6759b9b509cf6b2e83ed8b2b4dcf1f68e271797b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b86f40171f79c1a81d3ca961a432f439e06a3308350ba8c3f0ebe2a17903167c
MD5 db6c74430fbd8618253d51a7308b71f6
BLAKE2b-256 eea7c18995261cc21fec4fc7d504414da46d059edddbaf7f2b8f39f376bd3d1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4bc32fe437059924e5883d7e31f3777becdc95f69325fa53e7cd5b93016ef818
MD5 aaea533c91955e798595dbb4095a0b14
BLAKE2b-256 e2eaeebd3c3542d132f3f3f0c4b627e22a3e8e2df1dfe4966a40a42710041f2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e913a99eac76e24dbc00035d6f5a742021c9b9f9f4615192d711826c8549638
MD5 b0823af50d05edb8e534777f598f7609
BLAKE2b-256 e7ab43e80eebc5925dbc0351a0ffd29610daaa906f7b73c9be1b5c578687ff7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa58b223f85928032af28605ddcc8adb839293526da8a5e7a914ac780aab30b5
MD5 cb617d40bf0d0fb320ecaa945431ed17
BLAKE2b-256 abaeb9880d692f5b23e1cd150204e7653b9abea6863bf3ee27d258d7b5653ec1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.9-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b83dcf869047f32b66e5aad99f11e3929ca5da5dfd40529c83f27a3faf0b896b
MD5 e6d3796c40ef6c0ce4700e259e49d37c
BLAKE2b-256 55e754d94f2b49f21b0e1b6bf7a90d4941bd1dec709f5f8c137d22a8344241d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5e6b0d550cdc4f25191ab289c5938f77216cdd7bb8a0e6b4632f42c2232523b0
MD5 dfef33ccd358faa8024686c3187ca0a1
BLAKE2b-256 d6929f45881fb17ab80e29f840a48b2387b7d8fb4e1c0ed5dd2c57338e1f3159

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8edc0edd39f05ef7c3a4b2e8f9e170e6d3aa9602c1807b6d6f08545be1aee363
MD5 89c1702597d58a636ec900226586918a
BLAKE2b-256 c63eb28df5e92064c08a88f4cbcee2fa53939557fac4530d006b8189ea65df9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f48910ac6cd8eb83f5f3fd3f54efde8798c2fda70c230650fe1dbee6ee4cdc6
MD5 8b2d19a36e458150826b1031da069537
BLAKE2b-256 6827008da67b3f94e50f686bb5209f6c8fb65efb7c6e2700573245a76c22a84d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6fb3f986d837e9a09cba4199c8598202327585ab4a36040ad36e52c8ba71abf9
MD5 b5c3e5555682a6af1626f9143efe8490
BLAKE2b-256 0989ad80f535b836c94093b25ac2cdec843d2504051a49866e9b145e37b2c36b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.9-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3b525c6eadab9d373dbebbc19ca182430c194575c131ebc20ddba8f90e7978ef
MD5 afd8dc67be463514358d21cb47a4925b
BLAKE2b-256 bad6da16a11f7f3db57ad8327285712179ab2abe323be474b092ee840ea7d6d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.9-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c81189c7a563a94c3c91f9109443553d258ee96de40412c0a8d9eb6239da0758
MD5 5b67cf0f87b5977923fb3823c51a216e
BLAKE2b-256 eb54a08ad6d5c818e01f23a2cb32f58548dff1f311f5bd3e73c7db628407745c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 17d0d204ddfcf36127dae8065520ecb8d5e86d1fa07b3bb9a1eb1e89d669e02b
MD5 10abc5f7948f3d79c2c78315cf94c773
BLAKE2b-256 82cb785f08e7be337582b27a01831b019c663ad68f8792c4fe6b35bbbedecc69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 54844b6b82f34271138382c690e1819647969f0c5616407314cf2bf0e30e0ed2
MD5 97c99b8252df5b0a1bb39cf1b90bfd0e
BLAKE2b-256 9642cc466c39d8dcf69f07dcafbff98ea1a10e8002d48c3c4936d0f00168c35e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.9-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91b452108c0b8809d4207fa8d9160a87cdc1cd69e8394f4f438785393594328f
MD5 856090b78d966fc6d8854138e0a0fa7e
BLAKE2b-256 2831da50bb907398f1bb0e1ffe0656ea1e0f7560748259d50fa14021a9fa7d1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.9-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 96e7d148b343e88f58e7be75fd43f871b9364a6a19fbb3ecde372229097b28f1
MD5 591ba3f884f860f57d90c3c022040688
BLAKE2b-256 c034d208a5ef37231d67e444b0e5c7db590e46d74e1b178f1ee055eec88e2f22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.9-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e0bf16e4f70d960c85c8b4a3525633b1f1d7ebc4b51c1c94ecddbd2a53a2513e
MD5 4c6e846affd857b7fea9e53350eda35c
BLAKE2b-256 d2a80e7f4c9f5991116a1077f5ac804c3bef8ef3918816d91334f35ff9a50f0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c82085798b3309c938e4b7815c798170a4cf17f698c58173d9ae2a29bb1d34a6
MD5 7d34d343ba65ff4d48df477f5856b22e
BLAKE2b-256 d2a4cf3df82b65a3691eb2c505da8415310588fcb88d20ea6f12dab04fa0246c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94df539c8ca9fbb9a9e88caa2c8219f6a6942b5eaf5390fcd7b579ea4f24e3af
MD5 8c70dce1f3bb0200f58964d119af0d8a
BLAKE2b-256 4e6b01bc2d467eb8c44f7e06c2042b06b2d0863ff293cd1c900dce606efaf69d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.9-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b4a75d54eba6f0d0d90819839a1192d9ed874c69cfb21bfca003b72c32838c1
MD5 952548efd416c48efdb4d6d3f5d1fdae
BLAKE2b-256 d364f4a41d506ae951a3b25a4c27db79e8f9b489ba47a02f6bc0b7568b7b67e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.9-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c78ed1d8bb634aa39faec90b60c3ebfa33b9c04d7417d883ddc7588fbda76745
MD5 8e636e6c2429bc171feac8c5f8e62dd1
BLAKE2b-256 1572ef7a1c832d19ef45ea021d53453d0b1e4b0d85225276f9389d837623840a

See more details on using hashes here.

Provenance

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

0.1.10

36 files

This release

0.1.9 This release

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