Skip to main content

Tests PyPI

fastChrF

Fast computation of sentence-level ChrF, motivated by Minimum Bayes Risk decoding.

  • ChrF (Popović, 2015) is a string similarity metric based on character overlap.
  • Minimum Bayes Risk (MBR) decoding is a strategy for generating text from a language model that requires many pairwise comparisons of strings.

In addition to the standard ChrF metric, we provide a streamlined variant that is faster to compute if there are many hypotheses and references, which is especially useful for MBR decoding. The streamlined variant is described in the research paper "Linear-time Minimum Bayes Risk Decoding with Reference Aggregation".

Installation

pip install fastchrf

Usage

Parallelized computation of pairwise ChrF scores

Use the fastchrf.pairwise_chrf function to compute the ChrF score between each hypothesis and each reference in a set of hypotheses and references:

import numpy as np
from fastchrf import pairwise_chrf

hypotheses = ["The cat sat on the mat.", "The cat sat on the hat."]
references = ["The cat sat on the mat.", "The fat cat sat on the mat.", "A cat sat on a mat."]
pairwise_scores = pairwise_chrf([hypotheses], [references])

print(np.array(pairwise_scores))
# [[[100.          74.63190449  55.77074554]
#   [ 79.65373543  57.15287549  50.72182797]]]
  • pairwise_chrf works with a batch dimension, so pass a list of lists of hypotheses and a list of lists of references.
  • For each row in the batch, the function calculates the segment-level ChrF score between each hypothesis and each reference.
  • The output has shape (batch_size, num_hypotheses, num_references).

fastchrf.pairwise_chrf compares each hypothesis to each reference. This is slow when the number of hypotheses and references is large, as is the case in MBR decoding.

Faster alternative: A streamlined ChrF variant for MBR

fastchrf.aggregate_chrf computes a streamlined variant of ChrF that is faster to compute:

import numpy as np
from fastchrf import aggregate_chrf

hypotheses = ["The cat sat on the mat.", "The cat sat on the hat."]
references = ["The cat sat on the mat.", "The fat cat sat on the mat.", "A cat sat on a mat."]
aggregate_scores = aggregate_chrf([hypotheses], [references])

print(np.array(aggregate_scores))
# [[78.56389721 63.37194047]]
  • aggregate_chrf does not output individual scores for each reference. Instead, it outputs an aggregate score across references.
  • The output has shape (batch_size, num_hypotheses).
  • The aggregate score is not equal to the average of the individual scores, nor is it equal to standard multi-reference ChrF. See our paper for a formal description.

Function Signatures

def pairwise_chrf(hypotheses: List[List[str]], references: List[List[str]], char_order: int=6, beta: float=2.0, remove_whitespace: bool=True, eps_smoothing: bool=False) -> List[List[List[float]]]:
    """
    Returns a matrix of pairwise ChrF scores of shape batch_size x num_hypotheses x num_references
    
    :param hypotheses: A list of lists of hypotheses of shape batch_size x num_hypotheses
    :param references: A list of lists of references of shape batch_size x num_references
    :param char_order: An integer indicating the maximum order of the character n-grams. Defaults to 6.
    :param beta: A float indicating the beta parameter of the F-score. Defaults to 2.0.
    :param remove_whitespace: If `True`, remove whitespace when extracting character n-grams. Defaults to `True`.
    :param eps_smoothing: If `True`, add epsilon smoothing to the ChrF score. Defaults to `False`.
    :return: A list of lists of lists of floats.
    """

def aggregate_chrf(hypotheses: List[List[str]], references: List[List[str]], char_order: int=6, beta: float=2.0, remove_whitespace: bool=True, eps_smoothing: bool=False) -> List[List[float]]:
    """
    Returns a matrix of fastChrF scores of shape batch_size x num_hypotheses

    :param hypotheses: A list of lists of hypotheses of shape batch_size x num_hypotheses
    :param references: A list of lists of references of shape batch_size x num_references
    :param char_order: An integer indicating the maximum order of the character n-grams. Defaults to 6.
    :param beta: A float indicating the beta parameter of the F-score. Defaults to 2.0.
    :param remove_whitespace: If `True`, remove whitespace when extracting character n-grams. Defaults to `True`.
    :param eps_smoothing: If `True`, add epsilon smoothing to the ChrF score. Defaults to `False`.
    :return: A list of lists of floats.
    """

Benchmarking

  • Up to 1024 medium-size hypotheses/references in German
  • Batch size 1
  • 64-core CPU
  • fastchrf==0.1.0
n SacreBLEU (ms) fastchrf.pairwise_chrf (ms) fastchrf.aggregate_chrf (ms)
1 0.49 ms 0.27 ms 0.34 ms
2 1.77 ms 0.51 ms 0.72 ms
4 6.56 ms 1.28 ms 1.04 ms
8 23.28 ms 2.88 ms 2.10 ms
16 95.18 ms 8.92 ms 3.78 ms
32 382.58 ms 30.33 ms 6.60 ms
64 1497.29 ms 106.99 ms 11.39 ms
128 6062.98 ms 409.86 ms 20.44 ms
256 24072.80 ms 1691.64 ms 40.17 ms
512 96216.99 ms 7465.06 ms 75.94 ms
1024 383965.22 ms 32262.39 ms 144.78 ms
A line graph visualizing the result in the table

Citation

@misc{vamvas-sennrich-2024-linear,
      title={Linear-time Minimum Bayes Risk Decoding with Reference Aggregation},
      author={Jannis Vamvas and Rico Sennrich},
      year={2024},
      eprint={2402.04251},
      archivePrefix={arXiv},
      primaryClass={cs.CL}
}

[!NOTE] The ACL 2023 Policy on AI Writing Assistance requires authors to disclose the use of AI code assistants. For this package, we used GitHub Copilot and GPT-4 to port Python code to Rust. We then used unit tests to ensure that the generated functions are equivalent to the original Python code. In addition, we adapted the original sacreBLEU tests to make sure that the output of the generated functions matches the output of the sacreBLEU implementation of ChrF.

[!CAUTION] fastChrF is not intended to be used as an evaluation metric. For evaluating NLG systems with the ChrF metric, use the implementation provided by sacreBLEU instead.

Release files for fastchrf 0.2.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for fastchrf 0.2.1
File Size Uploaded
fastchrf-0.2.1.tar.gz 85.9 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for fastchrf 0.2.1
File
fastchrf-0.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ x86-64 Details
fastchrf-0.2.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ IBM System/390x Details
fastchrf-0.2.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ PowerPC 64-le Details
fastchrf-0.2.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ x86-32 Details
fastchrf-0.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ ARMv7l Details
fastchrf-0.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ ARM64 Details
fastchrf-0.2.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-64 Details
fastchrf-0.2.1-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-32 Details
fastchrf-0.2.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.15 CPython 3.15 Linux glibc 2.17+ x86-64 Details
fastchrf-0.2.1-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.15 CPython 3.15 Linux glibc 2.17+ x86-32 Details
fastchrf-0.2.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64 Details
fastchrf-0.2.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ IBM System/390x Details
fastchrf-0.2.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ PowerPC 64-le Details
fastchrf-0.2.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-32 Details
fastchrf-0.2.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARMv7l Details
fastchrf-0.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 Details
fastchrf-0.2.1-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
fastchrf-0.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64 Details
fastchrf-0.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ IBM System/390x Details
fastchrf-0.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ PowerPC 64-le Details
fastchrf-0.2.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-32 Details
fastchrf-0.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARMv7l Details
fastchrf-0.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64 Details
fastchrf-0.2.1-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
fastchrf-0.2.1-cp314-cp314-macosx_10_12_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.12+ x86-64 Details
fastchrf-0.2.1-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
fastchrf-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
fastchrf-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ IBM System/390x Details
fastchrf-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ PowerPC 64-le Details
fastchrf-0.2.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-32 Details
fastchrf-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARMv7l Details
fastchrf-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
fastchrf-0.2.1-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
fastchrf-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.12+ x86-64 Details
fastchrf-0.2.1-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
fastchrf-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
fastchrf-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ IBM System/390x Details
fastchrf-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ PowerPC 64-le Details
fastchrf-0.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-32 Details
fastchrf-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARMv7l Details
fastchrf-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
fastchrf-0.2.1-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
fastchrf-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details
fastchrf-0.2.1-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
fastchrf-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
fastchrf-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ IBM System/390x Details
fastchrf-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ PowerPC 64-le Details
fastchrf-0.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-32 Details
fastchrf-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARMv7l Details
fastchrf-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
fastchrf-0.2.1-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
fastchrf-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details
fastchrf-0.2.1-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
fastchrf-0.2.1-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
fastchrf-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
fastchrf-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ IBM System/390x Details
fastchrf-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ PowerPC 64-le Details
fastchrf-0.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-32 Details
fastchrf-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARMv7l Details
fastchrf-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
fastchrf-0.2.1-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
fastchrf-0.2.1-cp310-cp310-macosx_10_12_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.12+ x86-64 Details

Total release size: 21.4 MB

Release files / fastchrf-0.2.1.tar.gz

Download URL fastchrf-0.2.1.tar.gz
Size 85.9 kB
Tags Source
SHA-256 checksum
How to use checksums
796c687f28a04ccaed70a91938192e388190b170516b1eec4f3c556e93338c2e
BLAKE2b-256 checksum
How to use checksums
6436c5defa04088374e4e5d6fc2a771ae52eac0d5d64f97550f780364c6600ce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL fastchrf-0.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 355.8 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
efa787d517ef0573e8d61cc8524f5e57856499b3f0b9a7b6da6fd3ef2b47dc2c
BLAKE2b-256 checksum
How to use checksums
a214f94b7f2bdaccb4a8a20f204bdc2e43edc549c680c8ecc24d3f1ae0e4257b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL fastchrf-0.2.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 367.1 kB
Tags Linux glibc 2.17+ IBM System/390x PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
aa727d590901c3c1528ef65bccdac7224663bd5df883c00115d219f8af4a340d
BLAKE2b-256 checksum
How to use checksums
70c480ecd0b54d6b6768ed8b340e7b07e3c8182fb2e62e11128e8d342464f12f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL fastchrf-0.2.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 469.6 kB
Tags Linux glibc 2.17+ PowerPC 64-le PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
d0bc6a0d71e6b405804cfea32918ef65c3c767b29d1e4fbdd0cdb6e102da467a
BLAKE2b-256 checksum
How to use checksums
aa4e9f32da13ef956a34caf07da7e0b524baacbb8da18d26c93a72be0e7eb4a2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL fastchrf-0.2.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Size 377.4 kB
Tags Linux glibc 2.17+ x86-32 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
f0e9de06124e5d2aeb479a31769f6aa0a38b3edd60f63742385be25d82ceb0e5
BLAKE2b-256 checksum
How to use checksums
f899a27a0c6d15698ade4bf2dfdff0706b89fdcb4cf6cba18172e440aa9547fe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL fastchrf-0.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 352.7 kB
Tags Linux glibc 2.17+ ARMv7l PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
816c243bd216b2e6bfccc8094131d97092182cc99cad6a036d1e88997a6e0a6d
BLAKE2b-256 checksum
How to use checksums
57f42087ee4527c9293902df82fe56eb2a66b7cae27a98e3ee12f846c4e2885b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL fastchrf-0.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 349.9 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
80c2e649fb5feb12ccb90de1bc2603a9e8e7d869410e3dd328e9ee0117dc2c2f
BLAKE2b-256 checksum
How to use checksums
5a8362ec7b878f595c979d2b97e4d5d9cd286d9bb3f937a16aaae274b16936d2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL fastchrf-0.2.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 352.0 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5759ae41e220a0685a1ca05330276e403b45ab3eb598294a9ea276539754f4c5
BLAKE2b-256 checksum
How to use checksums
b4751cc701fa61e697194832bff2366a5487769d6f5d45552ef70ef6c8533e54
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL fastchrf-0.2.1-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl
Size 371.8 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
cb876f55f407640555e809a517c15c6be3b5a694536eba5a39c68678f154ae40
BLAKE2b-256 checksum
How to use checksums
50e115f1de9199c70759e4a51fd9ef5c14982a0dad6f3d5634037381c5665c18
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL fastchrf-0.2.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 353.0 kB
Tags CPython 3.15 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e0fa8a1f96ca985a989037d69c514d7db09a2427ecdc91986727eacea0ac1356
BLAKE2b-256 checksum
How to use checksums
2d720b5ac35057c0814dbc503486f1c3fe86ab143539ddc5ac33395d6b8bb2cc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL fastchrf-0.2.1-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl
Size 373.3 kB
Tags CPython 3.15 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
f564ace79b904f46f8f8a99d0fc8232e72d515e99e12e73512f54a74d0c7da6d
BLAKE2b-256 checksum
How to use checksums
3b033d8ec375b69dca7e6fcfb0f29c875c617df500738a8223f69c720786180e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL fastchrf-0.2.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 352.0 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
8901d1a3a89217b19a2f76fdb0498fd0a1d7f964033e6247cee5ed48983fe044
BLAKE2b-256 checksum
How to use checksums
49991c57297cd8183b5329a3aeabe614545231388e3cf75454a815600e6e2425
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL fastchrf-0.2.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 363.1 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
4d3131fa59b7d16830153499f69a6fdfbb50d18cde5e1406c4fa7e0ca00bde1e
BLAKE2b-256 checksum
How to use checksums
b01d4d85b199a93b29b4ce28ad1c85d3fefa08099a90f1b1d359f7181e1627ae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL fastchrf-0.2.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 463.6 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
037b46b882e28deaf1388cd73236ba2e37b6e9c9fb90ca679769e6f2c0d73058
BLAKE2b-256 checksum
How to use checksums
9373274d0f907cd837ccf6bfa8282b1570cce0612a92419a8a969893b2d6db7a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL fastchrf-0.2.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Size 372.0 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
d9aaebc5ad890e680654c76d7894f52f44da37fae83dbcfcb1c750981cf19afe
BLAKE2b-256 checksum
How to use checksums
10be088c59960e289015137aacf3430f374a9cf15a0746d8e13c401b76a54d6f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL fastchrf-0.2.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 348.2 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
8ad3d2f02b01171b742061517edb9d1497c71d15f87eaeaec2604e79e5a392db
BLAKE2b-256 checksum
How to use checksums
df16f55f947b4b69ec24ef3d855d45eca541cc850750a6ec009e5380d3e539cb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL fastchrf-0.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 343.8 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
9b17ca2b3330609bc8c106e08acce2acdfa4659046e294151f6f01555b15c23a
BLAKE2b-256 checksum
How to use checksums
b30e0c5ec5bc2dce9cd715e32ca597982894d107fe9ea5eed9a148dafbbf8a6b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp314-cp314-win_amd64.whl

Download URL fastchrf-0.2.1-cp314-cp314-win_amd64.whl
Size 183.5 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
fc32da81d819958db2ef82af862f5f107cfc10b930088e3f08e155f567f0ab0c
BLAKE2b-256 checksum
How to use checksums
14a85dfc0d1f31b739468abf54dcee5e83f53c75b001770e8d808ea1854a1a0c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL fastchrf-0.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 352.2 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
7622ffa6d02037e403f3ddd908814ae1134906cc569ab48b5a8a16b94d08e54a
BLAKE2b-256 checksum
How to use checksums
34cfb92ace73a5e3a6651b2a310b8492a4bb44fe74cd34cdc016eb2156575ffe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL fastchrf-0.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 364.9 kB
Tags CPython 3.14 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
46c6513c1cc021d98ea47a4a28522192d17e3e2538940a10b9afb871c9ba167b
BLAKE2b-256 checksum
How to use checksums
c4dec7f788584583fb9409f94513845811f7567ba395bb258c1ecdb32c9c393f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL fastchrf-0.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 466.7 kB
Tags CPython 3.14 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
426869ff9dc5462c840c2cf770033c8e6a9a99a990f54839fb144a9992f6bd2b
BLAKE2b-256 checksum
How to use checksums
6e3e50c3474df622dd40a250efa7681c23258ec705abed4bb83955cccf9053d8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL fastchrf-0.2.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Size 373.0 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
b1c957d65bdda2a35afda70a7d911d1b0ffe9188ab0b9b41f2233516a0ea0d18
BLAKE2b-256 checksum
How to use checksums
6d275b916564b00db2de3e1feb53eafb9df0b25d3a45a62bd32ef7418cdd8435
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL fastchrf-0.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 347.5 kB
Tags CPython 3.14 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
f9ce53c823c3b6ede00982d58161569e64fd11ded8931341d4841a9aab41ccb1
BLAKE2b-256 checksum
How to use checksums
1614e0ea66cbaa786b3a57ca249ad26742fa837d6c0ab5a75814ef8953b4f0ac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL fastchrf-0.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 346.0 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
fd0f15cf778345124f9352a81019fc251b1834f06cc0b74eb50fd0f5d91fe94b
BLAKE2b-256 checksum
How to use checksums
7ddf9b5dea2b4f039b550410765fb193440238cccd14406c54852705e3a778cb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp314-cp314-macosx_11_0_arm64.whl

Download URL fastchrf-0.2.1-cp314-cp314-macosx_11_0_arm64.whl
Size 299.6 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
5e8fc8abb7ccc783cb1a4fca59564c6c86a0081b756b35275b2a61dd1a5c8a91
BLAKE2b-256 checksum
How to use checksums
3fad0870fdeccf75c5aabb6df6ed6480cde847fccd4636225b0ecc15177aa5d6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp314-cp314-macosx_10_12_x86_64.whl

Download URL fastchrf-0.2.1-cp314-cp314-macosx_10_12_x86_64.whl
Size 304.6 kB
Tags CPython 3.14 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
1b693560d929925a6c2b24cadb8d30501d37507caa5c3eec3ef1bcaf1997d630
BLAKE2b-256 checksum
How to use checksums
e47dd9f0354b2f0c001ecc99a2cab0111f82b336e8650e50d94e6ec9ab51010e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp313-cp313-win_amd64.whl

Download URL fastchrf-0.2.1-cp313-cp313-win_amd64.whl
Size 182.8 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
f9dd1a149068c6ae0f4464af7e7c0426b5f574234ff63a1f842110c416eefc5b
BLAKE2b-256 checksum
How to use checksums
7a996c36d60b7bdd443ca19e0b0f36af5414317796b090c92f6158a5a68002f8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL fastchrf-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 351.6 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
fc1068d96ec499209aaec554f926a4a9f5ad788b4b6c5333f61bce7f904f77d4
BLAKE2b-256 checksum
How to use checksums
b4d99358bea1650ad5d1602d867594f48d18bf7f13b146f158a21e508a2bafb9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL fastchrf-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 363.3 kB
Tags CPython 3.13 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
560c9d3a40a7b1359951fcdbbe153b22079ef75ba6ec3a7376c420a3256427ae
BLAKE2b-256 checksum
How to use checksums
9b224a8945c7c9fc3be9e186f785afe9a602ed738867153488eb63e9dfd31de0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL fastchrf-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 465.4 kB
Tags CPython 3.13 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
86bf32bf3e8336d997026b00c4a98546a337006350aee2a9527af49a50f6c02d
BLAKE2b-256 checksum
How to use checksums
98aa1f9080bc3181d6e530c1a578cca4a49841b0570b33eb73471f1c98dc1176
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL fastchrf-0.2.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Size 372.4 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
4916203d45ccbfbc1024b6e3ec126713571674ea3b3239a4583edb65160233d4
BLAKE2b-256 checksum
How to use checksums
38e118fc2af286565e440828eeaa18a7057afd0b3c854059f418f326d090bdb9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL fastchrf-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 346.9 kB
Tags CPython 3.13 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
e12fac6a592b026c9cd27bb099e2b6556ded7e202de1b2f19330428dd54048f6
BLAKE2b-256 checksum
How to use checksums
472625bee1a685aad34a6412d88a73fc929ff76e2c5f6c4ca45274c2c9e6f520
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL fastchrf-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 345.5 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
2d89e667373ea691fa49440c89a5b1ff349aa7f9f3eed203a35e2121342844c5
BLAKE2b-256 checksum
How to use checksums
5d73a09c424885c832e6eaa5fbbbc9df9930d79ff8b420f46758d2e5e1a52e03
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp313-cp313-macosx_11_0_arm64.whl

Download URL fastchrf-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
Size 298.6 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
52f01f11dc4fb1faff06382727962f9b71f0dab75dd33046f35d521a355892d5
BLAKE2b-256 checksum
How to use checksums
77ed860428c929b27f3d0702899cf6afc56083dcaae5b1f1e1a97781012f05a8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl

Download URL fastchrf-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl
Size 303.5 kB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
8347abc042e6f83380a074f4702bc248af0bfb18ef4bae060bfdf944eae133d5
BLAKE2b-256 checksum
How to use checksums
07fa7e038d90c926f5b147db6f907367a8701bcc0d31f40f3af3a955b108eeec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp312-cp312-win_amd64.whl

Download URL fastchrf-0.2.1-cp312-cp312-win_amd64.whl
Size 183.1 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
ebde642d63b58e6b632e975a9f75b21d6f6c46f408f3ea7e1aa090b32f7579d5
BLAKE2b-256 checksum
How to use checksums
608e2c028719d146a31a61e21c4054a8f3c0eed859a4eb1a87b4a618d0952178
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL fastchrf-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 351.9 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
b1ba66422ba83b2ec86a369d0712ac2dd2360a0c9551fb35cab61945ad33cc87
BLAKE2b-256 checksum
How to use checksums
2c951a67a7f6f50416de3dbbdb672c62f478ef223f4b155a17aed1c60b76bd9f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL fastchrf-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 363.8 kB
Tags CPython 3.12 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
461ebdd0c3a261df70d99f1ef4d6ce62f00340e38f30eab3f4ad64f5075cd04c
BLAKE2b-256 checksum
How to use checksums
464c73f997cdd9eb2903a85b5b73d2f206136a0a84b5bbb61ba5c7ee2f29cf61
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL fastchrf-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 465.5 kB
Tags CPython 3.12 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
a47bbbac4b83510cc15568802ecc59c5e8910f540d1eb95b35e2b63d483ad739
BLAKE2b-256 checksum
How to use checksums
cf67c62a52ad1c5a6d164c5690ed332e635322029928e6e3a8cf9991fcf73afb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL fastchrf-0.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Size 372.7 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
b1bacbdaa428d42fc200edb495a0717a96837d0f5890a716f09668b0e4b376b7
BLAKE2b-256 checksum
How to use checksums
b0cb94c80b6447df00915febdb4a639a17206c66aa8f63a662bb283af82c11a9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL fastchrf-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 347.4 kB
Tags CPython 3.12 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
0f00404e347b044c4041e89ab958c2a780bfe0b0447660eea933ba6e174ba074
BLAKE2b-256 checksum
How to use checksums
25fb175faaedfc88bce45a8540c7db0252457de26c74fa0e830c2224e64b664e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL fastchrf-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 345.7 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
bfd513f40d795fd99084f31cd4e8101789b784313f2e84d448d2a959cf9d6a9c
BLAKE2b-256 checksum
How to use checksums
e84336242d7cc19a1bbd1c3c9bccd873d6be650bac42adbfd547292b6864073e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp312-cp312-macosx_11_0_arm64.whl

Download URL fastchrf-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Size 299.1 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
30728128984f1aeaa3a7a520464b7e23e67f91861f989d885728e4d6c701948f
BLAKE2b-256 checksum
How to use checksums
5b6e6f59f5efa269cf15f244a53720a19ff351d1e0d4484453116eeceb466a58
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl

Download URL fastchrf-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl
Size 304.1 kB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
67109203e6edb64f6c82c3b97a716309dcf66bb67200352ced2fa93b999e4687
BLAKE2b-256 checksum
How to use checksums
e3eca0d363ed41ecb89aa31969e5100117cd618e1f0bdddc67050a81d5ecc96e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp311-cp311-win_amd64.whl

Download URL fastchrf-0.2.1-cp311-cp311-win_amd64.whl
Size 185.1 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
06b07bb1250cb7e91d7d185b0767948365760e40cf750ba786b3e4d3e7c20992
BLAKE2b-256 checksum
How to use checksums
d9605ab2b9f707fc5e330fc4f743391a12af8946031cadb7a7a30af1fc9eefd7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL fastchrf-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 354.6 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
ffc02d998a9520cb9d4c2b211c664b28926ae0beff656f54c193912282109788
BLAKE2b-256 checksum
How to use checksums
bcf858464c7db82f0c835a58b24f2385243072eeb72a83f545f89ec71fab362e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL fastchrf-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 366.4 kB
Tags CPython 3.11 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
a37adda6d38213ad6abeb2c6ff2b734be58fbb23dcc67ed31d2da0d68bd29166
BLAKE2b-256 checksum
How to use checksums
552140ae9764bb120a57a1fce2b328c82dd529bf7995b1a56cd248518bfc864d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL fastchrf-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 470.1 kB
Tags CPython 3.11 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
6dd885524c19e53acf417ec69a3f2fe1e929f613f652470e9141ce18303f63cc
BLAKE2b-256 checksum
How to use checksums
09d3f129d87fd3a3cf7fa89b6b772e8b3422269b340589847ff68bd55bb9c2aa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL fastchrf-0.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Size 376.7 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
c3354b49dc2ca7dbc58194819c5828324c2f3cdc90800de10c1fec40d147fe6f
BLAKE2b-256 checksum
How to use checksums
78eae6b5b13a69eb1e2a1f7b7daa88d38815e7fc26f0d6908595c81b8bb3174f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL fastchrf-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 351.9 kB
Tags CPython 3.11 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
3fa0fcf2e8298523d87e6a4579617ff32115d4b75a880eb539852be7dec093cf
BLAKE2b-256 checksum
How to use checksums
e990f1ecd146be1080f0e30e0a8b317101ee96d4b906dadbf5cd84f40219d8ce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL fastchrf-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 348.7 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
21c871bd7f0209a919949b5cb1113c1a30e609acbb81f53a218f190b2186a0bf
BLAKE2b-256 checksum
How to use checksums
cc16719b2e2f5f775646cf39744a64d882f4fc53cddd60b0a17629ae6062f2d8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp311-cp311-macosx_11_0_arm64.whl

Download URL fastchrf-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Size 302.7 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d956c84e7bf7c2ecd340999e293db5e7f23b3629760533ba2c3d2c9fe339f309
BLAKE2b-256 checksum
How to use checksums
23a0fbe91f33621ae0699468370e0ab865f9fc8f7b3ae9ec5e0fe4496d2560f1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl

Download URL fastchrf-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Size 304.6 kB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
fc73d7641bb7141722c2ed5d03363185f01b57185a4063dfe5ef9bbeca945347
BLAKE2b-256 checksum
How to use checksums
b3f5dcf60abb09e0c36b86273ed793fab64bb30c4bff7f701f444fd7a6545c39
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp310-cp310-win_amd64.whl

Download URL fastchrf-0.2.1-cp310-cp310-win_amd64.whl
Size 184.9 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
4d4ade4478766544344ed087f8c24be05f619f7268e2a695943adbb5973808c5
BLAKE2b-256 checksum
How to use checksums
cdac157d8896d6a8c51089da07bd5296170450870f326369015b38b7c19d24de
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp310-cp310-win32.whl

Download URL fastchrf-0.2.1-cp310-cp310-win32.whl
Size 172.5 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
3229292016961b9f76ef9a6bf97b11e12e890069ba5a9a8ad6b802456afa7398
BLAKE2b-256 checksum
How to use checksums
f6b3c4c140ec6efb60d1667bae5aa1c1801e5e3ba2849106224ee46aac28dc6f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL fastchrf-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 354.6 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e5108511911bd9018358717c6788729731f391d5252bce0515bfbf1471b643b1
BLAKE2b-256 checksum
How to use checksums
5c6b20d4266eea1e91cb05c950d574798997b2239c395b3a6c8c0a961d2f3e90
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL fastchrf-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 366.7 kB
Tags CPython 3.10 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
01e716e3f477e98b9e66e97030aff35914e8ddb04d5fc674e88fbf9c98428f1c
BLAKE2b-256 checksum
How to use checksums
c76ec3ce82f85b5b60a02410bf3dbc22261b281783f897c5e371c678775e65db
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL fastchrf-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 469.4 kB
Tags CPython 3.10 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
cc0947dc1f2982dd908bc138b0d700e843ee5a0f511fa2245d7923e219ed3da5
BLAKE2b-256 checksum
How to use checksums
63cd24bb14ad05f16d68c7f137b18315f0bf2b0e11bc43d0d315c3b363667ac0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL fastchrf-0.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Size 376.4 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
9740c398ed9fc35839f9c248d76134e44d7c079b2e77a72862014f21e64bd018
BLAKE2b-256 checksum
How to use checksums
773ee5ce9b93be7a346f739fca89d4117e8daefaa2b2ae420f78434fdbe03d54
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL fastchrf-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 352.1 kB
Tags CPython 3.10 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
8dc795b888a9f60088edd6f2fd7201326c46f3caadef05995720d4ee28cfebac
BLAKE2b-256 checksum
How to use checksums
2c8116cba6444c9ee6af359a69d9d8747a084b0c7945d6a839d56687229f7681
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL fastchrf-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 348.4 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
89961d72dc60de6a62bbbaefab673fa1d89b3bae48a7a161b3aecbf0188c0962
BLAKE2b-256 checksum
How to use checksums
b84ced64aa679477eeebe703e300bce40b76347fd5a145ab07bf4c123c73e46b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp310-cp310-macosx_11_0_arm64.whl

Download URL fastchrf-0.2.1-cp310-cp310-macosx_11_0_arm64.whl
Size 302.7 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
1b8e8ce619923e24c7e81eebd1080a9b498c54526d974451e2ed87b0f1ffae0f
BLAKE2b-256 checksum
How to use checksums
f6616d91c01fafb76cda0e436f996105a98d9febb27c31b766d6c2cda9b1a9e5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / fastchrf-0.2.1-cp310-cp310-macosx_10_12_x86_64.whl

Download URL fastchrf-0.2.1-cp310-cp310-macosx_10_12_x86_64.whl
Size 304.9 kB
Tags CPython 3.10 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
8a369e9b3bc36ab300d36d95073b3bf15e0c3b4b37f6a96af8049677c180eb56
BLAKE2b-256 checksum
How to use checksums
645a5a47ede11d059ba98a8a464cf5bd7a8f8484c56ad525ecba149af77e4c27
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release history Release notifications | RSS feed

This release

0.2.1 This release

63 release 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