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 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.

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. Source-build results and instructions. The published-0.1.6 baseline retains the original measurements, including its mask-encoding regression.

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.7.tar.gz (86.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.7-cp314-cp314-win_amd64.whl (473.5 kB view details)

Uploaded CPython 3.14Windows x86-64

ultrafast_pycocotools-0.1.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (555.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

ultrafast_pycocotools-0.1.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (522.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

ultrafast_pycocotools-0.1.7-cp314-cp314-macosx_11_0_arm64.whl (496.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

ultrafast_pycocotools-0.1.7-cp314-cp314-macosx_10_12_x86_64.whl (523.5 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

ultrafast_pycocotools-0.1.7-cp313-cp313-win_amd64.whl (474.6 kB view details)

Uploaded CPython 3.13Windows x86-64

ultrafast_pycocotools-0.1.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (555.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

ultrafast_pycocotools-0.1.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (522.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

ultrafast_pycocotools-0.1.7-cp313-cp313-macosx_11_0_arm64.whl (496.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ultrafast_pycocotools-0.1.7-cp313-cp313-macosx_10_12_x86_64.whl (523.5 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

ultrafast_pycocotools-0.1.7-cp312-cp312-win_amd64.whl (474.5 kB view details)

Uploaded CPython 3.12Windows x86-64

ultrafast_pycocotools-0.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (555.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

ultrafast_pycocotools-0.1.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (522.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

ultrafast_pycocotools-0.1.7-cp312-cp312-macosx_11_0_arm64.whl (497.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ultrafast_pycocotools-0.1.7-cp312-cp312-macosx_10_12_x86_64.whl (523.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

ultrafast_pycocotools-0.1.7-cp311-cp311-win_amd64.whl (478.6 kB view details)

Uploaded CPython 3.11Windows x86-64

ultrafast_pycocotools-0.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (557.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

ultrafast_pycocotools-0.1.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (525.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

ultrafast_pycocotools-0.1.7-cp311-cp311-macosx_11_0_arm64.whl (501.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ultrafast_pycocotools-0.1.7-cp311-cp311-macosx_10_12_x86_64.whl (516.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

ultrafast_pycocotools-0.1.7-cp310-cp310-win_amd64.whl (478.7 kB view details)

Uploaded CPython 3.10Windows x86-64

ultrafast_pycocotools-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (557.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

ultrafast_pycocotools-0.1.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (525.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

ultrafast_pycocotools-0.1.7-cp310-cp310-macosx_11_0_arm64.whl (501.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

ultrafast_pycocotools-0.1.7-cp310-cp310-macosx_10_12_x86_64.whl (516.4 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

ultrafast_pycocotools-0.1.7-cp39-cp39-win_amd64.whl (481.2 kB view details)

Uploaded CPython 3.9Windows x86-64

ultrafast_pycocotools-0.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (560.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

ultrafast_pycocotools-0.1.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (528.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

ultrafast_pycocotools-0.1.7-cp39-cp39-macosx_11_0_arm64.whl (503.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

ultrafast_pycocotools-0.1.7-cp39-cp39-macosx_10_12_x86_64.whl (518.8 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

ultrafast_pycocotools-0.1.7-cp38-cp38-win_amd64.whl (481.4 kB view details)

Uploaded CPython 3.8Windows x86-64

ultrafast_pycocotools-0.1.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (560.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

ultrafast_pycocotools-0.1.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (528.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

ultrafast_pycocotools-0.1.7-cp38-cp38-macosx_11_0_arm64.whl (503.8 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

ultrafast_pycocotools-0.1.7-cp38-cp38-macosx_10_12_x86_64.whl (518.7 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: ultrafast_pycocotools-0.1.7.tar.gz
  • Upload date:
  • Size: 86.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.7.tar.gz
Algorithm Hash digest
SHA256 f3c1f4dc32b8f3fa98d7cb5af4d61b4cea453a6309632be7ae985ac6994fc685
MD5 5009cd449fa91248a746aa3f6f7c8619
BLAKE2b-256 758bcab616a8ba82ab45f3e7d7ff83e1c666c844419924d89b24ebfabe8a5012

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4e47c61e477b2a4052ad763e6f43a514639d14df90228825ba175cdd3c6bb003
MD5 e15565d849541661df930fe18467831d
BLAKE2b-256 35fcef1e43c26c9f87c01cc309f86a01576fce94041199869530a27ea2e39fc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d40d378106bddceca4fc785b35220b611bcbc62da44cfbc20ec6a5895365274e
MD5 05d10610952e529139ccea67cf01e5f6
BLAKE2b-256 3db9f303d93a9d15dbe3f438bb2b2dd8755039694fbe4a84b0056f93987a0fd1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 39955e5b948a62a9238c722b500ce6bd9bfff1272f628c3959fa1558cad38d4d
MD5 92595bb79703ba7d97d74118dcaaca12
BLAKE2b-256 271fa187c573f78c93de0a7510bdf2af97821ffdbbe96bd175818a1305074c76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a2eb3f51c69a58eaee1147ddc2912266d168d4346b579060349176821587642
MD5 6e89c9c7e458b1bd209352943c6d5ed8
BLAKE2b-256 3072889f61556c41aba87d0cb01618847cfb7dc37e3d5e79c32a65cbaab6bf2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.7-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7f3e7af03b590b836fc8fffc4144e6e58cc23cab301e33d82b5c3e42b9263ebf
MD5 a679902420f73855b8d5958918df811d
BLAKE2b-256 82d46bbd270462a3b77b337a2b3a4264407edbb93a04f34a6f23ecee9f7d40e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5536b08a023142fb93eceb54931ecd72769b53dea827d46cc86111679bb6b86b
MD5 7d0a2fb4c7fa5bd142ed16fee0715ec9
BLAKE2b-256 37e9d5b00a7b536cc1c878b34932bc3a6e0020a533c92b6d844a8d093b3a6405

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 05732cbca9367e7cc14d63438783ec90011ac7461256ec62d24a3216656b90b3
MD5 43d290b549d18e634eed7856dc3f224b
BLAKE2b-256 8fae2db3019327205c82542e79670e3848824aa580e6fac6a03b21943a7dad6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1688bf9aef392366537b53f5332607bed4d45348cc939faa02e523a33b453380
MD5 1de9948b3f5509d21da97ccb8b2b4b33
BLAKE2b-256 64f0350af858788b06770bf947387637baae63f3aeea2529c22caa81d79eff35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aac5bafb72df4d83be3f40ab01057c7c67ab85bd3de732d89313e9c78462b2ad
MD5 4f50edf30fd22ec9f258c0adaa6cf8e4
BLAKE2b-256 acd8a20ad18534957f5fc7264f7f075632a5748bb5dd0adc3186b14314a73f9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.7-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 257982ae69a2cc3a9a077ced1a1be765dc00cb445e628b8907eb7d51b30fd638
MD5 3ca29b6b1a14234804dcc2b7fa4269b5
BLAKE2b-256 fa04765ea4fa4d9eed7d19236777c749350cce0b0229325f727028b93ab40d53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a92a062e9e8d3305e2de5c135017d918b55d6ac2c44c8912df2eec459920ec5f
MD5 22e703821b40094e82070a9810d54965
BLAKE2b-256 b4f520f71bf9139546988172c236ed0765960f650c0f495f6a8ec0367f3230a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 90f207f2540b59a6e3430dcbacab792018a96e7cdb62614ba02373dc1fb48c53
MD5 654ae0b41b4d3e0c2856e20fa6e088ca
BLAKE2b-256 226a5a38d3e3bdce61192f54db2325a3c2d9f0530266d2d2442c6552e1c0fb6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 206ce346ab83b857a3023fa112fcd5e4d4b42ac33966998da7735e7cf94ab56f
MD5 24aa9ca86c9a8b9625e82093f2b8c942
BLAKE2b-256 9ae38993a54330a5418346d025908b2385a5ceba03e9c6e9ca7072a0e06f9427

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 edab4443ce0c69df02c80861843228f3c553547bca3cc5f5317dec1c46873125
MD5 6021ec37d8a1ae438ce9ad7e5ce12e4c
BLAKE2b-256 ec79ed19de6cfdb2c56d5e7744238ced5cdd4324a57f32edf1ea0ddedd170654

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.7-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5dd455f49c3bee4da81c9b36a99e18ad6c5dd85521dfaf8e36279e2e2f1f3529
MD5 18f8f3bf979293be4ebb9b470a1967fd
BLAKE2b-256 cc6ed5315eebb1a712310e141cc8e441a29e1ddd56d30c3c0749fca7bac9f73d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7ed665949cfd79514f0fd7765a777fe57949fe46f925874bbe17e1ef14a97210
MD5 cdf31e21898afc5304158542308f1a3c
BLAKE2b-256 6062f9cead344843422291b88d61d7c66f170b9b5377900f390374b4299f5e3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7e7c7cf62b946818a9d76ed1cf66ab3e619a958a501efe914814a95e5481d23
MD5 af918af809ad5e36cc70de5f20d61815
BLAKE2b-256 d0d5587da2ca98e8122f4a66dd454bf573ae0cab99b88dad648b5260fe954114

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1a2adaf59f3a4ac9f8994c1fa7b6182706f46f97d6c10e761619df4079dc8102
MD5 f1bf35237362aeff0af83c0a310b19a3
BLAKE2b-256 cb5ccb467eb214e78fdfcf1b98c3bb654e899480d558263db63055b623e0bbe2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4217d2311405f0acd1f78dc4362b2c4ddb4a3d446a3e28a2e487937d2471e585
MD5 85845a1933d348c13f1afa666a898407
BLAKE2b-256 ca32069b5e7236262b249afde3f765946b3fabf0a87f28bcceb7e902965adb9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0a2a051e16d8dd7e6c2d0129141fea71fa6421d60ddc90fd277403e2639bd59a
MD5 85d48c0174d25f7ac6bcc1af420cac4b
BLAKE2b-256 8c1566fdb942fa5f6456f9a3ef48c86087b4a3371ab2e68d4478b1135a9ea0e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7615bac819d3a8499e47d968188664eebae369750ba409cbade4cfa1b9eec5f2
MD5 681833ab0b74df83f59688521012b5b2
BLAKE2b-256 44468954946f14cb2bd883672ef5fbb49675e8df310dadefb3ce85cabc1ea4bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 821eda6b6fe948a4ea6631319db4ca9ee8a64a17f9d854db65001ff28eb36ab0
MD5 bad43a8003c05f7221a1699c99aab106
BLAKE2b-256 88259f89aca11625168b1811fc69883faa959bb243743420eced382edbbb51bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ab3eed19e5a4be19fedf93c27ef91b5908b09ad157296d184b489415bcf0cfbf
MD5 e3d625ef51425043d0fe960eac13c17a
BLAKE2b-256 bc1c6ee353c4a825de266a39a5d343c459e9ce9edc91e18e3bb12f1f7bbac8bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 850826ea27dafecb757edcc06afdb0439a33c93f9fd5f41af8552033aad46f87
MD5 4dc28f407dce53f77c80423dcabf50ab
BLAKE2b-256 6698e025809b29df2b2f2499766c40b7e05e5b60583403467b2b0c215d578ac9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.7-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c61925ec71e31481c66211730ca60328fa403db15d0ca7faac222b63034b69e4
MD5 6f7353f0d1a1547f2cff5267b7c9943e
BLAKE2b-256 3a16aad864e83d1ad2d80ef11312fb84f5ba211b0ae6e72a2134cad2df113aeb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 05576db3dc7c8b6df73638ef42b9128a6fc7167ee41ece061874db95143486c4
MD5 9c62a11ff862be927e08df073cd7a920
BLAKE2b-256 98eac767da3ea37db91b5458929e7ef4419d67d2cd1d01f113d8b3ac7d84ffe7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc07e75d6b9442b7398fda7b4f7da192e3934c18e4c376918b5a03c8bbf4152b
MD5 828f2c9ff3cd0d21e6f048e5a453a507
BLAKE2b-256 f9f94ef27e3e956ca47376f0b4683f8c3a90d5bdea0a3b3e727fd65140d75639

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7d6560def5c3127638cee456faeeb4079112d1a137c8f6203ccddcecff2d1962
MD5 3155f918dd28aaadf6b75fa24667b805
BLAKE2b-256 f534a0b65e3929cfc7590b646f6d068b5919e83f6db7d6727bc096f6a5110964

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 84d90d0ed78f8bb41f84d2e92e859d5a1b82029330e7f2065e0f922ea01f4b28
MD5 cffcdef1b970db9f076040d6e1f17387
BLAKE2b-256 2004c7d78ad060410277a4f072dada19e5f8425e6fcc657f0d577ac4d7e40514

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.7-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e0fd692973f97afcf77cdd9d96ea85c0ca4f77ccd152df74d314c0e47029edc3
MD5 05930f42908fb5f4323a47024ccb5e5a
BLAKE2b-256 adf241bd9079dea196db06bd538fc2744bdffa9f44358d6bfdd4dc21f300a487

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4b5f43d7bda5759bf6e0c53e44b3ff492b0ec74326bacbf9795fa7561628a415
MD5 10b9e50b3a140c1b7231ed3954c1409c
BLAKE2b-256 fb16fc7e1367ce181b4ab746cef3f07687b43f13d44467189027a205f16bfa1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bbab345502af365e25be0494d84f0ddb476a9dd81b107236fb874e5bc844f9ab
MD5 49066dc505dead1e29d0154c6ad51056
BLAKE2b-256 c54a26a17dafa8c8ac2f3e24ff8ae3664b8a0055e475b4788f40f36d04ff8e04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 db00a644db086bd199bcb5282db6e0e78aa4a325900b6c551a711ea192876922
MD5 39fdb5e86cacef2ee1e7191a97ebd456
BLAKE2b-256 e468ccbcd90d7a783cd034c6bf391bc15899e07bba8b9285f9ced1b8ecb4750f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.7-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db764abd1d8ed12c54c1668fca637120093b2f59858b62728530d044df35e60a
MD5 1068fc6b3bdb0657dbbc61a4d9722f83
BLAKE2b-256 d35468c17cfddcf9d6ecb5709d40f72c3596b58640cd9f3724e08665896e34ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for ultrafast_pycocotools-0.1.7-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 efd4a39fb3732afe32acf314c23f168bfed7083700c89fdc54d248c46941828c
MD5 4b331d6f34714f4e47e2b65fd85ae81c
BLAKE2b-256 9ed2dceb14e5515618f3847f81f52dd155a9719d9a36119c32f0a80edd5f122a

See more details on using hashes here.

Provenance

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

This release

0.1.7 This release

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