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: 0.1.6, 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 require Python 3.9+. 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.

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

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.6.tar.gz (85.4 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.6-cp314-cp314-win_amd64.whl (471.0 kB view details)

Uploaded CPython 3.14Windows x86-64

ultrafast_pycocotools-0.1.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (554.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

ultrafast_pycocotools-0.1.6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (520.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

ultrafast_pycocotools-0.1.6-cp314-cp314-macosx_11_0_arm64.whl (495.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

ultrafast_pycocotools-0.1.6-cp314-cp314-macosx_10_12_x86_64.whl (522.2 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

ultrafast_pycocotools-0.1.6-cp313-cp313-win_amd64.whl (472.2 kB view details)

Uploaded CPython 3.13Windows x86-64

ultrafast_pycocotools-0.1.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (554.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

ultrafast_pycocotools-0.1.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (521.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

ultrafast_pycocotools-0.1.6-cp313-cp313-macosx_11_0_arm64.whl (495.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ultrafast_pycocotools-0.1.6-cp313-cp313-macosx_10_12_x86_64.whl (522.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

ultrafast_pycocotools-0.1.6-cp312-cp312-win_amd64.whl (472.2 kB view details)

Uploaded CPython 3.12Windows x86-64

ultrafast_pycocotools-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (554.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

ultrafast_pycocotools-0.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (520.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

ultrafast_pycocotools-0.1.6-cp312-cp312-macosx_11_0_arm64.whl (495.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ultrafast_pycocotools-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl (522.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

ultrafast_pycocotools-0.1.6-cp311-cp311-win_amd64.whl (476.0 kB view details)

Uploaded CPython 3.11Windows x86-64

ultrafast_pycocotools-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (555.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

ultrafast_pycocotools-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (524.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

ultrafast_pycocotools-0.1.6-cp311-cp311-macosx_11_0_arm64.whl (499.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ultrafast_pycocotools-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl (514.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

ultrafast_pycocotools-0.1.6-cp310-cp310-win_amd64.whl (476.1 kB view details)

Uploaded CPython 3.10Windows x86-64

ultrafast_pycocotools-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (556.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

ultrafast_pycocotools-0.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (524.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

ultrafast_pycocotools-0.1.6-cp310-cp310-macosx_11_0_arm64.whl (499.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

ultrafast_pycocotools-0.1.6-cp310-cp310-macosx_10_12_x86_64.whl (514.5 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

ultrafast_pycocotools-0.1.6-cp39-cp39-win_amd64.whl (479.1 kB view details)

Uploaded CPython 3.9Windows x86-64

ultrafast_pycocotools-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (558.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

ultrafast_pycocotools-0.1.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (526.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

ultrafast_pycocotools-0.1.6-cp39-cp39-macosx_11_0_arm64.whl (501.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

ultrafast_pycocotools-0.1.6-cp39-cp39-macosx_10_12_x86_64.whl (516.8 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

ultrafast_pycocotools-0.1.6-cp38-cp38-win_amd64.whl (479.2 kB view details)

Uploaded CPython 3.8Windows x86-64

ultrafast_pycocotools-0.1.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (558.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

ultrafast_pycocotools-0.1.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (526.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

ultrafast_pycocotools-0.1.6-cp38-cp38-macosx_10_12_x86_64.whl (516.9 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: ultrafast_pycocotools-0.1.6.tar.gz
  • Upload date:
  • Size: 85.4 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.6.tar.gz
Algorithm Hash digest
SHA256 3badf4dea2aed7bee0d0185c961ed7ef487f1e5a3de89a346b516d88db3cd5ad
MD5 e4b9073ae1f8d0f14aca1100130a6f1c
BLAKE2b-256 0fb378921d5b2335129800369b342bc59792d3ea49a5ea8cc45139491f7dbac9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 814382cc1dcb247851370f3c8b761fb72a59ea81bdd6eebbcb3a83d49e34439d
MD5 969192928a2c68ceefdd83bef651b8de
BLAKE2b-256 5f72341f8c584d608f2301de774dc3c423b6be952038986cc79e24ec31795bc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 60cc0e9de463b9e15e4f617084ca612f0a6bba0db64308f28cd93699b39477fb
MD5 3f96bdf38cc07702445ecc4e1ca82997
BLAKE2b-256 75a3ee3acb8deb2d30d7f67f752daeebf7c269c3f60b8b20acff29083df47ec8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 573d346da2f8e436610a3ca46d95b64c1f0c591639943a5b81311e58085e324f
MD5 929db8c4b43a2ec5d88c0a18af8520b4
BLAKE2b-256 6202ada7ad97d720a891e09adbb975f430f514b78f5c1d05733ac7a7861120c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 14afc69013304c5f446af4c22ac20c234d8284b621dfa991a54e196afb3571d5
MD5 415f89a1a21015c2c82754a7181567ab
BLAKE2b-256 c3843ba8ed8d3d0e3089806ed19889e8546bca1d0b8927942f444a2762166ae3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.6-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9c02873975e45406e62565a9d39117099bb358ffc47d55d8a2d8b667fce36c1f
MD5 f150932e1e8b0873ccde54fd1d68dc8f
BLAKE2b-256 9c1351e96456315594dc734a5420c5eaa62b9e8ba541856f07dc21dbf29f635b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 02ab7af9421cca10d3b401788b5bdbdc86082e9afc6b0456bf9e4bc8f37dacab
MD5 5442b3e2ed7b154333f77bf9b0bd85da
BLAKE2b-256 3770d0bd7ea38ade837712f307ac92884db2b90a1111794bd889ba3311b6872e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 07010478a701b7b2c739de333b5d100e1a0cb61d73bbfdcc87e091dee1582a27
MD5 a92c5355629a9c95affbf77b89a7b6b6
BLAKE2b-256 45cb3d819e12405358b8c3259d34fc122a2c5f1432f156d31d92bd2a335ab465

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7427473727bdb859484ebe5eb428c0a13d9aee6b8a94a4656b0f304dcf939ea0
MD5 743e65f134d8fd13edc67b91fe38710b
BLAKE2b-256 1b336f49d9c17060d263e7b10c1bb22da812881ea09e7aef8ce3f7b08a6cf33a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1498a2e7382013a3aa106cec6b483f58cfbec91b4c6473287a1a9c895187d071
MD5 b8b987b20cfc6ed01646c1c58d0edf20
BLAKE2b-256 b52db6e764d08daa4396aa2aadc7f5eff5a229cfc54427ebc578a1e14bd62aa9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 151d17f1f73027bfbc01055dfd0462b9c13f72e4ace776fee0aed20cefeccb76
MD5 be2ef2c83d0069635f1c8f2cab2c4da0
BLAKE2b-256 beca12b1778d0ec04f52061c4e970f5924c4d89f389ca07cdd52282ea8963c8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8e2181f621955f8463a06b80262a47b1a562e2ba8973980a509b501977ee8fc9
MD5 2b59f23a816d96544a1f6d209f12824a
BLAKE2b-256 9a60e496a093ea313307dd8df08237a8581ca96ff650803350b7ef220b1a13b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6c2630a49b302594d46f593319ad82e1185e2dca9e7df4364264d0c16894bb47
MD5 0f917118963c528c965b09a7b88223b4
BLAKE2b-256 9b2d5199d5c4ae2b6c2a12fb6d69ae9ecfd88279c41fff527301657b3a58f2e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 01ef36b10e16d1d726d039f8fa5c244accbf9d6787f0e6512f9d0d9f382ec4cb
MD5 e3f0512998bad573d22943c1b726c62e
BLAKE2b-256 523d949afc876dd6815dcdd724192b6f3bc4156357903a126481301200e50a95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ceedbf8e007f0517dae639dc6748eab6de746a2786ea089afcaaf3b7d1951341
MD5 845a39f664b1bf6c85fe32dfa54d3631
BLAKE2b-256 3d52052be2ce9dd94080ee1e413ecc1df3b3d21a5ffa39c0cc32129892ccb864

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d3be7d1e58bc2937f3226b740044373dfb735e041ebf77abdfd3c15e334a9fdd
MD5 ca8ed1e32cded642427be334dc4d11dc
BLAKE2b-256 75e8268efd455552ee022a74ed759ae6ef5438cfcbcacf61a868782962f9700e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 18a9f93d7a4af703b308bc3ecf1c27c1ecacda01f9d40387296699489459f858
MD5 b7cd25930174ee40c1385e3f691e70d0
BLAKE2b-256 67268e3b7caa2d08c87268c2bb3b497379bbdd0b22c26feb8cfe65057e554b7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee69993d10525c616d3036f8f5bf1295b344b300b4af851dfd7e5ac636997c1b
MD5 61d0ecf2859f4d728d5fd3de4119973c
BLAKE2b-256 55d916e24413eb93da1af8cddea53807bafbea71fc3f5d560b5d3b191c86cc70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e37d7a2c074e62f8269a073de5544148f4fd98a52df8ecf5716b13e8d010d844
MD5 92cbd04a66e5c1718feab10cc4629708
BLAKE2b-256 e4fd95eb61ddd8ac593d0447f3832f27282d6f601dc49e83902802944f5cb699

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 205bfde1857e7822bc4ea3f43e128848567ed1093c7da9f0b87da15eecbee398
MD5 05081d15567a1082a91e6c299fbde279
BLAKE2b-256 7f78ebb12b845c6d0d41de88390880f8374089690715aae52b23e4d0be2cff90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 526c7d1d940a7fffef5b1ee31ab59d1f99c7b3512fdcfea1ab30899df1a8f7cb
MD5 75f054c7f3ce362e76dc5211579bcf93
BLAKE2b-256 c7d405cbc107ea7a61f5a8df0ce13cddc8f68d9b124f0ed507f63690dc5f7a2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 750371df3e8605880d707b10053b0887d02d98011eb3e6f7d56a62021e1e570d
MD5 904755e0a937b9bafa66ca6cddf7a4ad
BLAKE2b-256 096fcb3e8821ffab4f27d7a35c1932f656825aef97afac800a3e758bcbbdb63f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc8a537c0b2240ac210fa5dacbab491ec434acda910085143226840c88a3a77c
MD5 d3fc174c7b4fcf30934ad46b87f660b3
BLAKE2b-256 64c2207be1a5bd1585340ba7b7e81d0f0de3d4326657df756eb70be0f131d813

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 60f7c0346b1492bb918755dcc21d1bad71c8e80a918d4014da2b475401c57f7e
MD5 359ad77c010c36be5e1505d898366347
BLAKE2b-256 0a27c71f56badcaf1f194f548f139f6f2ef9d9bf39033c4982da7fdb94dea0e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e22b428153fb82a12a8626b122fdc775b901c9537af762221f3c66c8f934bd6
MD5 8199a701d4a410366b41ac23d77b409b
BLAKE2b-256 2f1cd7424784843d684ab1d431aed25fee17c4f37e7686b0bd7779fa356e844f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.6-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 44c6b76fed0665660b8938ba72c9fcce6f0b4edcf5dd7ab612fdb7c2fba15f01
MD5 dc76808ef3f57563889ebaa832cf8e4e
BLAKE2b-256 c503fb83c5c7a1be44abd236009ac64f62fc2f08ecc03160ae2d8cd863d88209

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 40d7d08cff5428081d72e3cc0eb82e1a2b8c0480cbb0bf0c4e8693900e234210
MD5 6a5bde6895cf1ffcb3fd56fbfa1460b3
BLAKE2b-256 95193abfaff0bdcd60cf2d977849bbf4e497c7a40cee186636b8d9579890f383

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a5df802209d848896e2b630a9c64236c30f610bc8c78743c35c9720cc7ebc3d
MD5 5325309e797d3f3d4d470c010a363be3
BLAKE2b-256 33ca2043e427a4a413e22ab3f6d7c0cfc330d625ef196036a67505554a150515

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e0522fb3c2a334b0cdf1bad296056fb269fc5941f42a79b75197747dbfc8bf8
MD5 b77b8dadd478a57a6fe31f433fd68329
BLAKE2b-256 0c3efdae36ac2505935dc956f32f3006338434448eddc80e7fdc16953aae1935

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c17422d61a925e727686a2b14cf5daaf32c2950e900dd7d18006b251f8a14cf
MD5 589ece94597dfa64af346688abd8dbd2
BLAKE2b-256 698db1bce2850e6a9c331b198668f67b1a47a2f62e4de4a7208c8016303741dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.6-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e7ba60f39554473499f47f4476365bbc2d8a6cdaed7ee9b5a2cfc9d799f19bfb
MD5 e193883498e6d7adfdcaee2288a88e58
BLAKE2b-256 53aff239d01bdb3d71ec90ca6e1f69c4b7864c6f392091e55ae4df8a26b9b9fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d1504dcdffed8911c76688584b66c6d074f1ba042a1715e4b662df58be0b3ccc
MD5 197bee1e3fd5cf3a561acf0e42d090bf
BLAKE2b-256 813e66b0ba01352c48a6a955fa1c064ca733c8cfd1d4600a7b484c7339802902

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c3b8a35e160e104b3ffe07e04d27c8ea1b286498c8fd596e888029b1fd2e69f4
MD5 a776b62f262d4634037bccbd2a0ff7ad
BLAKE2b-256 34ca04dba6f901634cae0026b0abdce1fd4ccb537b6c0639b6d37141aa6dd44b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4d6f18adc4e0c6ccacdc1fcb4d7744d00f47f17259076510246d35011c83ce17
MD5 c91c7409b7a50c4dfc8724a73f3c3ebb
BLAKE2b-256 7f6d2507a37ae113581f0962b8b5225360831c35e2f9786d32603d70c9d6b682

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.6-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2dd41a2826af0f1f0022d8509e30bf8bcec6eb44812755b1dfc0b4ce47d320b5
MD5 b6084872038b3c1d827fb08bf2ca829f
BLAKE2b-256 bd2bdd5ad2d9616facaf8830b97d9b4e7f2ded0bf8472002c3d837cfd1de0c32

See more details on using hashes here.

Provenance

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

0.1.9

36 files

0.1.8

36 files

0.1.7

36 files

This release

0.1.6 This release

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