Skip to main content

No project description provided

Project description

stopfree

Rust Tests

This is a rust implementation of the stopFree coding potential tool defined in Evaluating computational tools for protein-coding sequence detection: Are they up to the task?

It measures the longest stop codon free length of sequence in each of the 6 possible reading frames.

Installation

You should be able to just

pip install stopfree

because there's a bunch of pre-built wheels available on pypi.

Usage

To calculate stop codon free lengths, you need to build a list of tuples of ID and sequence, like this:

all_fasta = []
for idx, item in enumerate(read_fasta("mgi.fasta")):
    seqid = item.defline
    seq = item.sequence
    all_fasta.append((seqid, seq))

(N.B. Here I used the fasta_reader package to read a FASTA file into an iterable)

Then call the stopfree functions like this:

stop_free_run_lengths = stopfree.calculate_stop_free_runs_with_ids(all_fasta) ## Gives the number of codons with no stop codon in
gc_contents = stopfree.calculate_gc_content(all_fasta) ## Calculates the per-sequence GC content for each sequence (not across all!)
run_probabilities = stopfree.calculate_run_probability(stop_free_run_lengths, gc_contents) ## Calculated the probability of a run of the observed length

Probability calculation

We use an iid assumption, with correction for GC content of the sequence. With this, the probability of a stop codon is given by

p_stop = ((1 - p_gc)**2 * (1 + p_gc))/8

where p_gc is the gc content fraction.

So the probability of observing no stop codon in a run of k codons is therefore:

p_nostop = (1 - p_stop)**k

You can set whatever threshold for 'protein coding' you like then, based on this probability.

Better probability

The iid assumption doesn't quite account for everything. To do a really stellar job, we would want to include dinucleotide biases, and the fact that the 6 reading frames are correlated. This is some future work though for now.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

stopfree-0.2.2.tar.gz (7.9 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

stopfree-0.2.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (551.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

stopfree-0.2.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (582.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

stopfree-0.2.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (616.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

stopfree-0.2.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (515.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

stopfree-0.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (345.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

stopfree-0.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (360.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

stopfree-0.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (480.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

stopfree-0.2.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (364.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

stopfree-0.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (341.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

stopfree-0.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (338.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

stopfree-0.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl (546.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

stopfree-0.2.2-cp314-cp314t-musllinux_1_2_i686.whl (577.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

stopfree-0.2.2-cp314-cp314t-musllinux_1_2_armv7l.whl (612.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

stopfree-0.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl (510.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

stopfree-0.2.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (354.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

stopfree-0.2.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (474.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

stopfree-0.2.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (337.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

stopfree-0.2.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (333.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

stopfree-0.2.2-cp314-cp314-win_amd64.whl (173.8 kB view details)

Uploaded CPython 3.14Windows x86-64

stopfree-0.2.2-cp314-cp314-win32.whl (163.4 kB view details)

Uploaded CPython 3.14Windows x86

stopfree-0.2.2-cp314-cp314-musllinux_1_2_x86_64.whl (546.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

stopfree-0.2.2-cp314-cp314-musllinux_1_2_i686.whl (578.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

stopfree-0.2.2-cp314-cp314-musllinux_1_2_armv7l.whl (613.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

stopfree-0.2.2-cp314-cp314-musllinux_1_2_aarch64.whl (511.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

stopfree-0.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (342.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

stopfree-0.2.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (355.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

stopfree-0.2.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (477.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

stopfree-0.2.2-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (359.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

stopfree-0.2.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (338.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

stopfree-0.2.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (334.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

stopfree-0.2.2-cp314-cp314-macosx_11_0_arm64.whl (292.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

stopfree-0.2.2-cp313-cp313t-musllinux_1_2_x86_64.whl (546.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

stopfree-0.2.2-cp313-cp313t-musllinux_1_2_i686.whl (577.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

stopfree-0.2.2-cp313-cp313t-musllinux_1_2_armv7l.whl (611.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

stopfree-0.2.2-cp313-cp313t-musllinux_1_2_aarch64.whl (510.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

stopfree-0.2.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (354.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

stopfree-0.2.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (473.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

stopfree-0.2.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (337.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

stopfree-0.2.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (334.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

stopfree-0.2.2-cp313-cp313-win_amd64.whl (173.6 kB view details)

Uploaded CPython 3.13Windows x86-64

stopfree-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl (546.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

stopfree-0.2.2-cp313-cp313-musllinux_1_2_i686.whl (578.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

stopfree-0.2.2-cp313-cp313-musllinux_1_2_armv7l.whl (613.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

stopfree-0.2.2-cp313-cp313-musllinux_1_2_aarch64.whl (511.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

stopfree-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (342.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

stopfree-0.2.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (355.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

stopfree-0.2.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (477.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

stopfree-0.2.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (359.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

stopfree-0.2.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (338.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

stopfree-0.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (335.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

stopfree-0.2.2-cp313-cp313-macosx_11_0_arm64.whl (292.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

stopfree-0.2.2-cp312-cp312-win_amd64.whl (173.5 kB view details)

Uploaded CPython 3.12Windows x86-64

stopfree-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl (546.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

stopfree-0.2.2-cp312-cp312-musllinux_1_2_i686.whl (578.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

stopfree-0.2.2-cp312-cp312-musllinux_1_2_armv7l.whl (612.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

stopfree-0.2.2-cp312-cp312-musllinux_1_2_aarch64.whl (511.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

stopfree-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (342.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

stopfree-0.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (355.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

stopfree-0.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (477.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

stopfree-0.2.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (359.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

stopfree-0.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (338.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

stopfree-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (335.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

stopfree-0.2.2-cp312-cp312-macosx_11_0_arm64.whl (292.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

stopfree-0.2.2-cp311-cp311-win_amd64.whl (174.9 kB view details)

Uploaded CPython 3.11Windows x86-64

stopfree-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl (549.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

stopfree-0.2.2-cp311-cp311-musllinux_1_2_i686.whl (581.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

stopfree-0.2.2-cp311-cp311-musllinux_1_2_armv7l.whl (616.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

stopfree-0.2.2-cp311-cp311-musllinux_1_2_aarch64.whl (513.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

stopfree-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (344.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

stopfree-0.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (358.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

stopfree-0.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (479.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

stopfree-0.2.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (363.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

stopfree-0.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (341.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

stopfree-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (337.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

stopfree-0.2.2-cp311-cp311-macosx_11_0_arm64.whl (294.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

stopfree-0.2.2-cp310-cp310-win_amd64.whl (175.0 kB view details)

Uploaded CPython 3.10Windows x86-64

stopfree-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl (549.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

stopfree-0.2.2-cp310-cp310-musllinux_1_2_i686.whl (581.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

stopfree-0.2.2-cp310-cp310-musllinux_1_2_armv7l.whl (616.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

stopfree-0.2.2-cp310-cp310-musllinux_1_2_aarch64.whl (514.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

stopfree-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (345.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

stopfree-0.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (358.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

stopfree-0.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (479.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

stopfree-0.2.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (364.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

stopfree-0.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (341.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

stopfree-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (337.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

stopfree-0.2.2-cp39-cp39-musllinux_1_2_x86_64.whl (549.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

stopfree-0.2.2-cp39-cp39-musllinux_1_2_i686.whl (581.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

stopfree-0.2.2-cp39-cp39-musllinux_1_2_armv7l.whl (616.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

stopfree-0.2.2-cp39-cp39-musllinux_1_2_aarch64.whl (514.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

stopfree-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (345.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

stopfree-0.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (358.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

stopfree-0.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (480.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

stopfree-0.2.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (364.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

stopfree-0.2.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (341.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

stopfree-0.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (337.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

stopfree-0.2.2-cp38-cp38-musllinux_1_2_x86_64.whl (549.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

stopfree-0.2.2-cp38-cp38-musllinux_1_2_i686.whl (581.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

stopfree-0.2.2-cp38-cp38-musllinux_1_2_armv7l.whl (616.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

stopfree-0.2.2-cp38-cp38-musllinux_1_2_aarch64.whl (514.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

stopfree-0.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (345.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

stopfree-0.2.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (358.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

stopfree-0.2.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (476.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

stopfree-0.2.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (364.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

stopfree-0.2.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (341.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

stopfree-0.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (337.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file stopfree-0.2.2.tar.gz.

File metadata

  • Download URL: stopfree-0.2.2.tar.gz
  • Upload date:
  • Size: 7.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for stopfree-0.2.2.tar.gz
Algorithm Hash digest
SHA256 725a1d991088cac2aff0ce4818720ad4c5adeb6a5dfac684eef4c448d0413615
MD5 030feb5307aa241c93cdb99ce1e4e638
BLAKE2b-256 a58763ea2414aaacfffa70c0e59f74ca08fda9c3b41c06722a6dceff429fd07d

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2.tar.gz:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8d3a1177db6b77e7e490603fb48c25c2afeb5676125bfbc602ff38d184bf657a
MD5 adb29b45ea4747eb92052404de1912f8
BLAKE2b-256 26c936f76855bb2cc3d085d221dd5fd511861cad2cad170bb8d3b991387bcaf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5f6e000dbc40f9a62282c17a06bede2bf77f143433cb815e782d0240642f7b87
MD5 0fd98cf59cd26c0f9d7a99b59abfa402
BLAKE2b-256 ac741f555b7a5511b9bafe72000b0e2d252ef95c3e9d35e450e90f4ec2b87467

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2867d2f55a77480d56f6824ba6c15a1e116cab4660def102eb74a08cad7bab8b
MD5 2a9fc2f208d4972dc429015c2f15483a
BLAKE2b-256 f01d21c74c0ae7f355c7c5d2dcfbbde2eadcaeb7c18e209cf42e2ad6c47579df

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5ba76051f7b30ceed5819fe7da2090410e791bf25d89e525ba475880867096dc
MD5 6bbb1c4a2a5cad917bba25ab6dca2cbe
BLAKE2b-256 68914e701483c46d09845ad6bad1825561d24425633ea3a91afc9c45ca23d180

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4143eb402a1175bba41e58ada7e6ddc3620f65f85045f521e0038fadc2568f83
MD5 938141d36e6cce54376c98960f2423d2
BLAKE2b-256 80297c2c774db1cf49b4bb469b66d917ecbdf63e16ee514f79b6363e23473201

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f5d507b497df4be057b5a694c3da964d271d7c8c773e417605c67c0ea3391d08
MD5 a24ff84afd52979669adacd7ea1d6541
BLAKE2b-256 6028f08639af15b7833fec8945fc07ddd50a3e7d6daf48e0981456ba4dd091f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a5b8f6e232df66ddd5e955b2bdd1b5eb562d24603007d7981f8534fa62503d67
MD5 1db8f1b57dbe9a93d9554e24cf420eb3
BLAKE2b-256 fd1d317f2aeb1844df52d92e05043a325c2bd731c3bacc3a5a8e51c9598867ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 886bfa1ac1e3140486be4f738ffa7f0f454704fc9170e17ea056ec1c845879ab
MD5 0dfbf0c695e2ece2ef3e2a1ea432438e
BLAKE2b-256 38cfcb671003ce07657bece30a198590aa5ef66f8a53f54161a3dd2e4325cbd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 461a5b6d5b586c38e51955827f5b9e13ca69e96d1b671a73158fa08fd37f4f59
MD5 20db18731e9dcc1ddf14585cc362eebe
BLAKE2b-256 fb3324a2490bb12751935b43634e0a1520891214a887fb14495992e0d8666642

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ef3c79df68ea9b5a5db49368607fc89ae4392b4e8f9cfb05d42d3ee32b3319a4
MD5 04710a29104f7d0f350d65a11315a1fa
BLAKE2b-256 97021c5286f21a95954d47029c05856de3e3577188820dde7577ac3badb9dcbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ca4a3bcce8324c2e305cc01a5af8a0c3f21929887f61261b7a7a4aa950ef75e
MD5 b9edbed2f9c4e2cf8e58155a8015db4f
BLAKE2b-256 d6075667927c0306a65bd1f873099ab0758a591a3fdbcc8115f8e0465aa52103

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aac9744c2848bf178f4ae67d1476bc58e87707a121498f177e4ff507e27dc4b7
MD5 7eed1be6c43d193b5d3ef39ea9cd2f56
BLAKE2b-256 b9dff7c35865a06562d6e05a866bd896f4d1d9371e28f52fb86289af73152bec

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7cdf96742d53f16fb07242829ce240684f4e5b13bb26d78eea378fa1439d6884
MD5 b6657952f248d2e410d02f56d456a18b
BLAKE2b-256 5c45a54a70f5ef543b488ffa94bf1a24cec012e37a508c55c46da24e5d525b86

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a5b0afe26bbb87f79e99822f11c164282ce7ef4d3b475f9429bb5d24896ced54
MD5 70c2b7ab7ac245a2dd311297d7e7e5c2
BLAKE2b-256 d602ef0c00eef9e1872bb71e165f8f6f2942a26db8fba3aa044d1deba314ec2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0bb60776eb50c58e6cc7f8a84165228a0094977fd5b26b08f690b5495cdadc37
MD5 d8627d0c97adef695d6945737527073c
BLAKE2b-256 b5d0f91c91e537fa77cafd182dc60c64f8c4c87f295951623715ecaf9570e829

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cfd21e036cc26a2306b21fe2cf661b0de3f358e2cf53bd21452435ab7b44b175
MD5 8822d8dc2542ccac1798f7046946ceaa
BLAKE2b-256 fa8b144971549de1afb0e0fde53d56963e59d898cc9e3ecb87639347769333a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3ddf048410c65f68633b92eb9b7c1b722021deddce472c801b0d46976e761be0
MD5 81d203350a979410c55d3c39b70b6b8f
BLAKE2b-256 498b3d8d1f45108f7f2e83cb3c9ef9aad899d7fd325f35edbcfccc92f8a5e037

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 377f03d2195b56dbc54785fca22472ddcf0010c1a6efa68222e0c8c9fa78cafa
MD5 b91a784d18d8ca5052132f45ee65543a
BLAKE2b-256 5a2c43430e2b9fdb1b8166b06d2989151f056d66bf0213c8c61fb39e171832b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: stopfree-0.2.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 173.8 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for stopfree-0.2.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9668320d61c0b64c1443f9f79f2177ceaa32dfa28bc6cbcb4ef9a8c76fd8e8fe
MD5 4958924bb865ebc65fd8ddacfc8fe6fa
BLAKE2b-256 02bfb80621c78bbd53bf82dd88d6ae0385f706975d4c8094ab7e69c264137ea4

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp314-cp314-win_amd64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp314-cp314-win32.whl.

File metadata

  • Download URL: stopfree-0.2.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 163.4 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for stopfree-0.2.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c8d0b2e296b403b5d028e94173d9e4b2eed622ef91fedc1a3d46fc1f02a718ff
MD5 49394a2e6fa2a9a3fe0b04d847002af2
BLAKE2b-256 12730d2ecc6733c212b5c5feb392100206ae64862e82e5abbfee26dc854bef37

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp314-cp314-win32.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 807f9b055b8e250df3cd2d59988b473d929a56624d3c4773f6983e237d6ecff6
MD5 dbb58038711a2914143f379f8ffc9c5b
BLAKE2b-256 08d65a53613c3da7b684ee7e7dc7e44ee71a53c2c8fc0332f9175b109aa10970

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 239f2fc55f14d8516e4c70c22d3679b4617e41b7be6e970fd82f403817aab00e
MD5 51e1a24ca285bb31a262ce99ab8e76b1
BLAKE2b-256 8a04a4250fcb2da3e65fcd40223e0646ec8dbd6e13d9344d3ea4cfa30297fc54

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f89863bfd65e946e6fad0591ae4280a2edb43ff86839064698c9d84d8ed51fc3
MD5 6d76252ca908b511026d0a4e816ae306
BLAKE2b-256 2eb80fbfb4aec5151668c0b10ad6a0bd1481453ca2e073431adebe05fc6a4d4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aee176f6dcefa1e0d3cb7993cf32f1082b194e4a0e0fa442faa0b64935de0ea1
MD5 a515a84e41e4f22ec0d7c47a11efea60
BLAKE2b-256 17058896050b907ff0ff713de0675d955fd3c2809b33e19a72ca6fb053b5500e

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2568310258c5ded19c0cf72c2f8a6ba5ba7cb680593edc4002ff8248e529dc4f
MD5 86daad9f613bc52392126d1fd7a424eb
BLAKE2b-256 0105d87a743d286865b4066517d527dee9a0823e73e49eb5abe8dd597394453d

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e2e5c7c96c29738c7c24cd2d005d9c860c27a46670c6a75bbac96e2b463babe0
MD5 dd72719c4107c8391462829eb4779530
BLAKE2b-256 46519f7f3cee5b6d033e37b84761e914accbc9f309974aa90a9fd5bfee74be71

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ca928285f19d1aff8b7ad68d315969f4d0ddfc00b566c0d999f4101ea02dbb1a
MD5 a8187edbb2ccd5c364baa8814f3b4eef
BLAKE2b-256 8c5893a3b390ff6e20c40c191d84389a89ac30ffb238ac37560616dfe2fb2827

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a9ff00ea4729e3a5e8d6eb3bd735e83b92d8cd0eabf389e4a8f18c3f1f0d3d22
MD5 c6c562c5adaa0227579c4b7b4121e68f
BLAKE2b-256 2265e0047d6b34c5591fe6696a34230bdffaaa7d1b3089eb626cbb3f6d46dfcf

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bfe154425a312e67dec4638c6eea496b9b4d02090d8461ea2aee6212677d3ddc
MD5 245ff6cd38b00387d1ed19c1dfcbce8b
BLAKE2b-256 89dff371e6602fa3382da3cf98660a610f01830666fcec0f20dcefb16afa15df

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1ce20867c14a50cc3967cebe0130adff371eb27164ba1767d9a7cfdb753d8559
MD5 84d3ae17eeb3198b3693c0baf3fed3f9
BLAKE2b-256 5429f2da7e0e49cdf3610f6050360b6ab0be63332504deb0de155ed241cf0962

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f2a01b04a625749745cd5c1a487e53428550709b2c3272733da9f996d58ef1b
MD5 bb510974f6d5fe8770b81cc2bd186b78
BLAKE2b-256 08bfa233a9b554e5ac393c52214bb0a039599bed7aa9f95fe520f23084c88480

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 85492d6f8c5e790e1a7ae523ff9aa71a1aa68408251bb3108d966a131f53bd2d
MD5 a28be83c0523b680c386bbdaa46a65b1
BLAKE2b-256 5c5a8ca7fcfd980cb52d7ffffedf4a419cdfd6fb32fade4af2b0ca28597420db

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a884dd4b81d1c408d06fbe41da763d786a0bea3694c9607129df19e3d01ae5e6
MD5 d7c0f2c777ea69aadeec03cf8c7766dd
BLAKE2b-256 2bb17c00a881c2297cad09347875e6e5948597b48b3ea372c47661c0afc1b352

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp313-cp313t-musllinux_1_2_i686.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b2af0b0371e41ab572f92d0b21d5a117bf4878abf30d91e614155a35cf8a685b
MD5 2df4c3102ed797097a0713f5463e90c2
BLAKE2b-256 b777dddc90ff7cfe0b5e2c25d621336d7b9bb95f629e633962a4dcc360708b44

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp313-cp313t-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f7d17d54bb79edbf9f8b67a90cbb9edaec49dcb8217db7e3ff9f87bc1e2878d4
MD5 09534868cccb744391d79e27d778970d
BLAKE2b-256 3fdd364476e33c5cb04ac128e26d635cb75b902099c13d496374b5223565266f

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ce843db78bb8e1d8fbce1bd8f125330c054c8e118df30dd6c55c732dd7f87efa
MD5 373fd67668c0b42c2685ae4e5c285dc5
BLAKE2b-256 cb3c44b2f1d87cf2ab07a024bf8ad8bab200c2db716abc4f93196c0cfc41b43e

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6e0e6f8ef4e33432cae9d640e84b77c12f0c07ba2d01c43d95a5025679a3855a
MD5 70e13b8feeaa9903521132403a6dd010
BLAKE2b-256 4a736414cec013aec85a3b1316262ec882addbda15a3510b263d7ac02d7d0f06

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 140e26cdcd49952513fc11a666870054e2c16057019cb3972417ca59d12a647e
MD5 f4142c618eeb44791a8c640e004a9fac
BLAKE2b-256 4289cf386f6a1d98ff8545f9ac252f92106555dfb3639433d863b4c359741dbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c86fc018cd60e9d08bce472d694b32609f131407c312de77acf61657c3fce012
MD5 69cef8ffb0a74648ccb2a30f4219f9e3
BLAKE2b-256 603de34b5b4a3a06a5a151a859e104ad467efa2dd139036c9582144cad8bdf20

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: stopfree-0.2.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 173.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for stopfree-0.2.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 84068c4fbd44fa6602c409d3c7128b3bae549ed0058225c73c71f13a6478ca4a
MD5 d0f8761b732536f04dd73755ecd6f0dc
BLAKE2b-256 91a4f0348952ed4ae138eeabe5d40f3a0978bb5ae3d00038124b352dcd0c48d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp313-cp313-win_amd64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 80a9b5d72c7595c135836ccdc60f8238119017e32289c4126b00f1807158a548
MD5 4ad9df4fe4eeecf6af4aec82218f9ce3
BLAKE2b-256 699e2ae45ff77b90163842ccf95d5681bae6d363d43207681d718e16e77eaa57

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c401ae7d6764d857933c96e38493151a9b6b0a18fb988b539d89e1c03c64e666
MD5 4bb438694ec9b0c009c6d5615f2f202b
BLAKE2b-256 5b16d0483a72fd5ac293d266b48498472d0f845762c98f5233624516393d26cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6ceab3cf1d2afdbe0d6a143e83c65eb5df246d26d156b8550a10f63da91f390f
MD5 555c4c7a6edf2c62e66985de669b05a8
BLAKE2b-256 2868625bc0e54c4b77d548e697c33c405176c08c372806c266285673ea338cbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 500b0741f5fe521ac21d8757186cdac3227a3864dfde9ea4c9de59d02a134864
MD5 1fa4cbf0261a7605f4770321d53d51aa
BLAKE2b-256 45651338cb1dde58d73b3921ba284052a8ad3e8750509512f151e940922d38f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 239066d96b0895f70bc0f09bc8ed48bdb2b7c50f97c17aa5a8ecf0d97b1cc588
MD5 49d0579cb2a97a1e9008beac718c6e30
BLAKE2b-256 9547788fc0025d34f435fd392ec97fd37f3548edf961dd656eaa0c5189b3d726

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4fafe7fd526ba907409414d28b94728f3c5421f66130ba82e5c0036f650d155c
MD5 3424abd0c1f005791c96549c966ce1e2
BLAKE2b-256 d7a4bc0fc2b00a31ed055f96f0a7e8d7722aa734c5d46754e934e62a4d203261

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 81dcd37d9dbebcb861b620ba4e9726b95bbb3895237de1c1c55272388de88905
MD5 f00781dbd8f87e41f5dbc27dc98ec53e
BLAKE2b-256 a0913ebec6af4acc2a7035a6cd53cec4ddb47a6276beb993bb13796891297ff9

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6e2bdb02aec526a67761aa99ad0be8270196203dd6f006b297878685bbc7f327
MD5 471e99482e6458ca9e215d7a7f2aa66d
BLAKE2b-256 52f3b5085166238f0e161feee01518396ac05ca804273880dfc550c1b9dafff8

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 684398f354cc0717bd395edadcff081f9a1f8b91c25009c0906f26312f047bdb
MD5 d95b2c86546e9a63d6711d0b31919404
BLAKE2b-256 551c5b01c4a50408edd6f31a2e3c486092ba7aba31e5d2482df751097de738e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fe81d940341c746495f97a28329cfe5fb3dc7cca1d3a3e1207f67a79d9524572
MD5 56e99e3ba3cbaf342bed9d1caac653ce
BLAKE2b-256 2763dc8971461b66854a73c6718ca9004b4070d959f5bd13d06552acfd46f430

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 082357ac1429d1bf042ac4e3d97523cc80b44d16ed74471e39bea2c91d73769a
MD5 e47d40f248c13d778d5ee6e9fd1a5e40
BLAKE2b-256 89c912f1edd0a6d676277477bd2e1bd61b907d8d31837ad3e6ffb99c08f5eb5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: stopfree-0.2.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 173.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for stopfree-0.2.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d43d85f6d5a278995984138fe3db97958cab4060f7b373b864465e099e253228
MD5 3d520ac7242c700bf888bef3aa19feb3
BLAKE2b-256 554fba9b079d0e8e6824362020d6c17bdfe3063aac28b147254bf1e3aa5aac64

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp312-cp312-win_amd64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8cdccedf7ef523725d5fc69819d2f766bf216afe8cd555abd66c94dd4d0ba7f9
MD5 9f16376ff7df73697f3e62670d24a078
BLAKE2b-256 813a558bf514cfaf22bf4d1bfb34b91ed277c420ebae4d77fa44ea6a05e8066e

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ea3c8670b5554c3485f15230a5529e703360923b77d8ec0283fe3e21e4a8798f
MD5 b749b92221ac6fc71cdaf4952c133597
BLAKE2b-256 88d0f4b2adcb5aab0a82cb87186a25cccb84ab9990af28acd05f96bbd53f2295

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 65d5e2fdf553a07566245b7fff70155d44b04ed2b448f174dab74ff61f012739
MD5 ae46e1f7f551c5f0e7717628791594e1
BLAKE2b-256 45e40201945335c4074dc65ca8470f41ddf7a233e3b8bfa5f8eafa18661c18a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 626fb3e58db840505e331f1375c22ebb861abbe0f63b38395b6a4da510a35ae5
MD5 88a3adf7689272e12a50287647e0d4bc
BLAKE2b-256 ee8798188a22df52c66376b301b176bafefc2c6c05a56d290c032518a398a9e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1f44ab2abd64cc355184e9b4b00281ef1c0f89cd89412278111928d4a548664
MD5 18990caa0a47db96aa627e43fef6f5ea
BLAKE2b-256 a89602412773eb912c7e74ff1712122502bddf69e271300636e8d3e2e323a471

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 52168930d3100ae636b5ee8a301877e1df9114f6d3d2fc25d6f71af5f758110a
MD5 d0f7de57c9dff1ba4cdede17636af784
BLAKE2b-256 36fe76391e4303a249faaf8a972f7693a8ee854182a45d863dd84f0bb38db6e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 26015f2630601464c63d4d9e5aa03be15b22211fec9391fbf8999662245c0d43
MD5 c5f8ed16ddb74cfce80691abbda533eb
BLAKE2b-256 fc97ff78def8d29cb9028b32117b84ddfced3a77a4794b585b8d2f8f5cd44ebb

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cfdb1e3def9d1073ba50e46b9ed45f7b9826f485f2de4f042d9fb318f351e20e
MD5 8f2e397b866d6c634d63d16ec0f7c54c
BLAKE2b-256 3d84d854adede6591c914c7280a343bc3a84f5fae6558e73562f815ea3e44dd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f7667d5204c91c6e54c639271b3104c4741b076b64dc09b59052500fe5fbbff2
MD5 4055efa257a8d34da66a97881866f174
BLAKE2b-256 79cc4910e6bc1088d08b0a71d816a99b100eeb359391b8e7b8d7c087a0c04018

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 db1ce650ff98b70b9b66527ed1894d15338f85985a9fb0ba651b9613822f35bd
MD5 33d7f541b777a075a4de8994d3e1ae2d
BLAKE2b-256 8283daa03d65f9cb1c9ca52cf74b6989eccedffb09cd2c03f8eeff67d252ac46

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7bc76fe3539097277d4119bdf5ebfad0791ac41a4e4d50727516b42dbe2d960
MD5 ac85c81c41a8eab8c035f78a76702d56
BLAKE2b-256 417b9295f22defa3cbe063a9ad3e7da97b83b801cbef5423178d14f85bea0e19

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: stopfree-0.2.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 174.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for stopfree-0.2.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bf27f6378cbfa76114f6261b174b64264ebdc6b3e77929d83a64415cf25ccae0
MD5 d77a336e8cd9dd530e69f5c7c14c0e80
BLAKE2b-256 15c1660ae0082ae2378537cf8a0157ed64cbbde83752235c2ddd940cbb6418fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp311-cp311-win_amd64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2cb677a8597f69b6565a5277228e30adaaa486722ce6bb339c585f9ee319c7fe
MD5 3ae37a6a9347a8ad1f4448fe42642043
BLAKE2b-256 b18242296f6efc00d075b3b477391869e3c1289b255ba79ca8ab6a90b318b3e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 20c7b7be8f746ade6e1c22d0f8b3a4a5e3e1032e44f7cb4eeacb0c4aa997d4ad
MD5 4718b6b45e18faa5047d3899737d5af7
BLAKE2b-256 5a04bb7f3fd41b5852183242217831ff4f42e41bf6fa8a39e5c8bf3382c70924

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e1c22032c718693d996a1e92ff412ccb623622baa667991b610acedc41fc9f94
MD5 c4cc6d111c305de9bea127dcccce16e6
BLAKE2b-256 b460f8e3f060f93f9a201f2adb294918eff51bba0a1fe3eee7b216f2cc24b855

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 09fa39251efadd23b3c24851fa0ab1e9dee9542c1c9f610f92b1df08f95589d8
MD5 298232da65bf96c2aa0fb09c5fc6fac1
BLAKE2b-256 c9e44049182a55e04b6e117fd3bb20ca890a04c79f2c84799bd3e97aeaddb57e

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f61afce0a7e0f49ca9109f485c39bf74d54a0d8ed2ae47ca9dff2f2a06af2fb0
MD5 3b0a0f392a605693e14cdae52f26ea75
BLAKE2b-256 ea54950e13c0b81001e35e4bbe203ca25fbce2304d8bdfd9d3b41d8a4e69dc23

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b6362490a5b47f5170c79807f66ab1f04c1c4eaa789ef1bb5c525a7b010b621b
MD5 eff0776857120a50ac6f9743f34a25a4
BLAKE2b-256 cae5467ebf1b5714e338562f5cdeb092f16beca86dc571bb850fe874cd8adb6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 59837e67ced31fc40b67f25064ae4451de4d8ce7dca70c38ef4f6f6dc2e6fe4c
MD5 46517b1b7ae1e711f5d84b63f1585957
BLAKE2b-256 82ac4431baf5bc983a4f475cc3f494c98e095072e5f4162427b646b3cd0b0d22

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 35ff444fa26e499a7fad513c3e753524cb355ff79be34209310e78219337d86b
MD5 135cfa1c219545085d88a9f22bc8e2d7
BLAKE2b-256 1202607caa1c5421d8470af86fd78d28c0cf6c8736391d61aa492c42f286f963

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 861e0163e2a22a386469c8395ae8eeeedbe2e9dab6053bfbd92d31b58d08c6d4
MD5 cf3233b073b27d3c4933a0ffb41a9f51
BLAKE2b-256 4c1965bfd7c46d8074aaf54f8d5b0a37a7cafc07d523783ea693fe20f3d83bfd

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 884dc6b00132ff440b46bb9039615eb10e85acb60d4e73e35d1502274d431b0a
MD5 243b3bb8dc1f6d8ce3ff3823eae15fe0
BLAKE2b-256 1c4aa66448f4ed350a50a3c9efe1eec70afc6b6a412e30d6687989351372eb53

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 39dd96864809e3304b755eb59a823ad3d071cb9a5954a01176e099a78e6575c3
MD5 39ef91d33f426553b992bf0ba721e024
BLAKE2b-256 269b4dab52964413523c0506aa84c76cde004c12a23ce8e5451f6b754103817c

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: stopfree-0.2.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 175.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for stopfree-0.2.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5b2886fce2b505f5735c5156537b60c2d2ac0e5153b380b4c06ba7ff27455d7c
MD5 2bb124663108bd1a306a0a5485ab43ea
BLAKE2b-256 d6927c01f8187dbd24ada8e79fbb9fcd4cadf5565b0cbd52d586564c5720417a

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp310-cp310-win_amd64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e0f095ccf40912cb6c670f42abcda712545586146ff7ab7c07366c02dd3f15fe
MD5 227d0369e2ccb608ed5b1851618b5f18
BLAKE2b-256 b976beeaf9bed356fbf2fa04601e0b4a27878ad21113c5c9c0eb83390266e0b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5210c5ea2ed411ea38de81b7587811c53504f2c513737cb7481bcfc877f29664
MD5 27189fe59f4c72be4fb6dc820e9ec9f7
BLAKE2b-256 582c05023feb17100661ef73c58a6dc46a6eba36558b3b01f288a3af83ee40ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a32463159868db9b321a62f1c22918d25e6891e3c30e963c344d0167a60b5b71
MD5 a74d074cf5e4b067285dcaf4a04d0bcf
BLAKE2b-256 9b67b89796e1534ca8fc62b0535d5f83e8702c6ca73738d34610b8c31320902b

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eb07431462abc378c76776cba8bd5a74b07643cf18d348ccc8e62b7c44e4c73c
MD5 3af9f1fe354688152ba6c3cd40732f58
BLAKE2b-256 9c8bfd79d0a6b112814435627f5eb87a2ae8643e8c6ce06728c45c1ac9224dea

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9c8fb6bfa3644c0da4e1892323711179ef8de3a8d8ebab1f774b73bf9255c6ae
MD5 e871f185de49296581f060c57cbc5ce1
BLAKE2b-256 a2efb980b0ec00b67e6e14bb6bdc651e6d37704c3875fa8f93d723fcf1b0e68d

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a29146e64078bad42a437a1dbaa1a6cf6ca1cad8e5bfd9d5506e86b6fad40943
MD5 5f1defd30596e1e568d6e4116fe48982
BLAKE2b-256 9344375ee74e87d2cb0bd0396d7f674c6339120a25245f11b55eb164d97ef6d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 55096b03921dac6b709ab8d559d02f94b7ade7e9b66e6818c65fe386c7641aec
MD5 4be7e76757b7098f08930215bc4bbbc0
BLAKE2b-256 9b4a8ccca1e19c745f74bcf59d02be7703a1ba721113cfeed5db41f742052142

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e516e34cbcd9310ce312fcb4d5c02e4c22b9324aaaea9b4d9a7d3bb48aa2664d
MD5 037315c1df2f615562f24688aff9481f
BLAKE2b-256 7faa51d93b923f3d2a6d534135995f0e3c8c77b3ef323d95c016972c1fc466a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8ea050ed78eef2355216ba6f813afa56117f0a97d477bfe56191098b27633d62
MD5 75d234fbe74e71600b8d2a8628a54a2c
BLAKE2b-256 ffb4810b96d14c1ac54960bb45e8bfe34951bc97e2176ca026ae6c361c61eb6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b5e1c0956b8d4e30bdb634dfd690f609129f69f323b24e42a515155f91973053
MD5 d221d49691e0c2f83412c645155d8d2d
BLAKE2b-256 3b777b3330c45fdd0513ac350f3d7ccb61cbd24bed4566bff2fe8f35c938189b

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 98b13ecdad8908f892e4e87fb6e33ffaf4ea63d66ca0f875086d84c51ead4429
MD5 22d87a3be18ea504827dcbf9c8c539d3
BLAKE2b-256 e1a912d5e57e13dc604f5ee5a5cd0b6895a75a491885b062d1fb78a944946c87

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c19097008c50a110ed611a86a300a70218281a9be9dc96b74f16068130df2eaf
MD5 bbd836b5520196fb784bb647aa36b25a
BLAKE2b-256 8f337d37441898d34882fa926b34ce70ea564cfca67bf27f03a7af25f50d3bb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 194c795925d88ba05f7d0407c0bd5ff4ac367ed043a0fca7b1f00dc3660e2746
MD5 ed0f33699ec84d3a41d88d0d503648fb
BLAKE2b-256 adf0d568aaee0f47337057b3512e63290b90c96c906c0dac1aa76b00b09de485

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cab467daeed52196e61cb13f8c6e4f47c1035c3b369f008e3ffaf70185cbe253
MD5 3338bdde8c7def1dd74a6b47fa4d59c9
BLAKE2b-256 fd24e873126331e4a3164bd6840fad9dae2ac156192841ae19cb5233bfe94d38

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 38e197c0ed614ec7b5d8bae49d5c0282f5a9136b739af83d625d438c967fb9fd
MD5 76c7d0fef8e636ef3101970ea9d2d62b
BLAKE2b-256 9cbccc711bc442e26ac1e04fc267c2a993d5c7a9f4c630ddb8b28f0b3c4da880

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f418a06529e443e24bcd2557b83d5234bad9a6e416920f2749e99d6c963c563a
MD5 aa8219269fbb6956a6433bb4f4d657a0
BLAKE2b-256 f8e6bffc93244c963d4a0811050e4e0df93f1a05e8e4994d587b099950c12869

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b62bad045a93ba91286b6632edbfd78350ebe0809a63024eb1e1175517931ce9
MD5 c2323d5065b3be6714269cef54d8e5a6
BLAKE2b-256 0cf766890c439ae61d1220fdd29b24a3f8e425933d5c343ec6aedaf1c5c41792

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2c8713758beeac87610a6b147e2f3d3fde2e72259c13f9a864df2c716362c94c
MD5 e6d1b03e025f4d20e38920b5795cad74
BLAKE2b-256 b7f49faa100704f114bded580bbd90b33879841e87ffd79c31ad6346ad048ad7

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6bb9aff3873be21ddcb4e806df65d1b4564d0679a0907a9097882c83f15dbcab
MD5 8e3b203f7f21a5c1210fbdc623b3e8f7
BLAKE2b-256 9325f6f4a3282e9afe4920870d3cf5251151d0d73f6d14521767112ab9522217

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6703c072f2f61ce6db2898bbb2ed8097f3c1e1ab772b0da5a358ef5d0a582cd2
MD5 67928373fc1a1f2b52bf6989317d9c07
BLAKE2b-256 89fdf842e4e4439b4ca3e2a9f7235ea26cb0e85d996e64bec339e0185aa46817

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 78e058349a1ae0386ea4124e56590c6d500be2ec9574cf87bcb6b330142af972
MD5 c2bdc747b2ea7322fc5d2b4762115841
BLAKE2b-256 05b283e26628eddeeb8b63da103ab45d71f0c796eace6a32e15a80333dc7b714

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c40b0ecaab2d80bd3f07b1b2d78e6bd37b0e1bf4a63c79c5d6da80d9480e9b25
MD5 dbac17bf010fff759f6c94b4286d04aa
BLAKE2b-256 4af8761ce81ed3583995dff935307189421f383816396f5fe35a1acb682351f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp38-cp38-musllinux_1_2_i686.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7bc481dda9a240b9fb8ee9fea7718c288a88c75d9fdd6f2c364c72b30c84d82e
MD5 5698878e9d6ccc6afecb95182b8a1502
BLAKE2b-256 6feaa554287bd5527823b21d1a3e4d11cb2926400446ebc7ee0b48118cb17a29

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp38-cp38-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d3db943074e7ace5cf0b1445ebaf43a97ad28a7825c8f52f7e5bd62dd3915013
MD5 68559dec5ee9ae390f8f0fde696d7fab
BLAKE2b-256 1669d0e3167981785566abb964a2a685dc0579fe9d905f8de6fdcc0c51a4e3bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2ac3c3e3db13f9916090c10ac4720fb4052c172308d43dac34c5ecb044b90dc
MD5 966cf6e4d96217f4799d43ed3542dd3c
BLAKE2b-256 9c5e86e5a4768c41cb5be409316d411fe5ddd79a13be9ebe6d43dc1e353d383b

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 86960eef995157d6f7bf9b8b67ad8251b798d5dafa63f37be113fbc345e0bef9
MD5 4d49d9d9f63d5940d96e1bca42a0c547
BLAKE2b-256 08bbb601b3e7295eea71995cd276d5f91119d684d1da6e0f3b69c05f7e589a4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dc2cc5f744c8fcbbaf2bd18dcf0e867f8b97eba665805d0055660e4f95afa841
MD5 d7e9c21de08708035561e1be32b6b964
BLAKE2b-256 4f9960b8e54811fe5a939440393482d664298049437336419a3626baa3b19fa5

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b4d485ae6f69aee3f15028a75a70776bd28acbaa5b80d393bb0d8c768d5f08ec
MD5 f4cc15e1b77d40d3ccf5c10d5642b7f3
BLAKE2b-256 4278e7c3b260b171a9c7f95326399c1b9b8b2be91d4a94a0bef606359e7fdc5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7e6d6e43947d91206ecfb218c9fd00aea8d3899acb412e5b5c029e64cae06a62
MD5 225ef11e20847017195f669461674799
BLAKE2b-256 5bc2dc8456cad618897ed85b033e37f0d145fb9a32aa1ebb0fa71b3a5f3a570e

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stopfree-0.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c9ed8710a2c50ba3c0cc26231380faa71324dee81f9bd0efb456aa67ead59544
MD5 21c6b61155a7184bd68e8a5ac14d825a
BLAKE2b-256 c95e403b1563a2ed1c80d2a2c4b0560e207db47f020b62cfa816910648b80a0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on afg1/stopfree

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page