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.4.tar.gz (12.1 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.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (555.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

stopfree-0.2.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl (586.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

stopfree-0.2.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (621.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

stopfree-0.2.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (520.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

stopfree-0.2.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (350.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

stopfree-0.2.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (364.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

stopfree-0.2.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (484.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

stopfree-0.2.4-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (368.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

stopfree-0.2.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (345.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

stopfree-0.2.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (343.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

stopfree-0.2.4-cp314-cp314t-musllinux_1_2_x86_64.whl (550.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

stopfree-0.2.4-cp314-cp314t-musllinux_1_2_i686.whl (581.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

stopfree-0.2.4-cp314-cp314t-musllinux_1_2_armv7l.whl (616.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

stopfree-0.2.4-cp314-cp314t-musllinux_1_2_aarch64.whl (514.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

stopfree-0.2.4-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (359.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

stopfree-0.2.4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (477.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

stopfree-0.2.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (342.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

stopfree-0.2.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (338.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

stopfree-0.2.4-cp314-cp314-win_amd64.whl (178.0 kB view details)

Uploaded CPython 3.14Windows x86-64

stopfree-0.2.4-cp314-cp314-win32.whl (167.5 kB view details)

Uploaded CPython 3.14Windows x86

stopfree-0.2.4-cp314-cp314-musllinux_1_2_x86_64.whl (550.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

stopfree-0.2.4-cp314-cp314-musllinux_1_2_i686.whl (582.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

stopfree-0.2.4-cp314-cp314-musllinux_1_2_armv7l.whl (617.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

stopfree-0.2.4-cp314-cp314-musllinux_1_2_aarch64.whl (515.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

stopfree-0.2.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (346.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

stopfree-0.2.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (359.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

stopfree-0.2.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (481.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

stopfree-0.2.4-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (363.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

stopfree-0.2.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (342.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

stopfree-0.2.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (339.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

stopfree-0.2.4-cp314-cp314-macosx_11_0_arm64.whl (296.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

stopfree-0.2.4-cp313-cp313t-musllinux_1_2_x86_64.whl (550.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

stopfree-0.2.4-cp313-cp313t-musllinux_1_2_i686.whl (581.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

stopfree-0.2.4-cp313-cp313t-musllinux_1_2_armv7l.whl (615.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

stopfree-0.2.4-cp313-cp313t-musllinux_1_2_aarch64.whl (514.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

stopfree-0.2.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (359.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

stopfree-0.2.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (477.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

stopfree-0.2.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (342.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

stopfree-0.2.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (338.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

stopfree-0.2.4-cp313-cp313-win_amd64.whl (177.8 kB view details)

Uploaded CPython 3.13Windows x86-64

stopfree-0.2.4-cp313-cp313-musllinux_1_2_x86_64.whl (550.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

stopfree-0.2.4-cp313-cp313-musllinux_1_2_i686.whl (582.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

stopfree-0.2.4-cp313-cp313-musllinux_1_2_armv7l.whl (617.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

stopfree-0.2.4-cp313-cp313-musllinux_1_2_aarch64.whl (515.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

stopfree-0.2.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (346.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

stopfree-0.2.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (360.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

stopfree-0.2.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (481.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

stopfree-0.2.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (363.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

stopfree-0.2.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (343.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

stopfree-0.2.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (339.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

stopfree-0.2.4-cp313-cp313-macosx_11_0_arm64.whl (296.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

stopfree-0.2.4-cp312-cp312-win_amd64.whl (177.8 kB view details)

Uploaded CPython 3.12Windows x86-64

stopfree-0.2.4-cp312-cp312-musllinux_1_2_x86_64.whl (550.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

stopfree-0.2.4-cp312-cp312-musllinux_1_2_i686.whl (582.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

stopfree-0.2.4-cp312-cp312-musllinux_1_2_armv7l.whl (616.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

stopfree-0.2.4-cp312-cp312-musllinux_1_2_aarch64.whl (515.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

stopfree-0.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (346.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

stopfree-0.2.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (360.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

stopfree-0.2.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (481.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

stopfree-0.2.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (363.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

stopfree-0.2.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (342.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

stopfree-0.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (339.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

stopfree-0.2.4-cp312-cp312-macosx_11_0_arm64.whl (296.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

stopfree-0.2.4-cp311-cp311-win_amd64.whl (179.1 kB view details)

Uploaded CPython 3.11Windows x86-64

stopfree-0.2.4-cp311-cp311-musllinux_1_2_x86_64.whl (553.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

stopfree-0.2.4-cp311-cp311-musllinux_1_2_i686.whl (585.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

stopfree-0.2.4-cp311-cp311-musllinux_1_2_armv7l.whl (620.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

stopfree-0.2.4-cp311-cp311-musllinux_1_2_aarch64.whl (518.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

stopfree-0.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (349.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

stopfree-0.2.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (362.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

stopfree-0.2.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (484.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

stopfree-0.2.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (368.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

stopfree-0.2.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (345.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

stopfree-0.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (341.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

stopfree-0.2.4-cp311-cp311-macosx_11_0_arm64.whl (298.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

stopfree-0.2.4-cp310-cp310-win_amd64.whl (179.2 kB view details)

Uploaded CPython 3.10Windows x86-64

stopfree-0.2.4-cp310-cp310-musllinux_1_2_x86_64.whl (553.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

stopfree-0.2.4-cp310-cp310-musllinux_1_2_i686.whl (586.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

stopfree-0.2.4-cp310-cp310-musllinux_1_2_armv7l.whl (620.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

stopfree-0.2.4-cp310-cp310-musllinux_1_2_aarch64.whl (518.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

stopfree-0.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (349.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

stopfree-0.2.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (362.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

stopfree-0.2.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (483.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

stopfree-0.2.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (368.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

stopfree-0.2.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (345.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

stopfree-0.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (341.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

stopfree-0.2.4-cp39-cp39-musllinux_1_2_x86_64.whl (553.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

stopfree-0.2.4-cp39-cp39-musllinux_1_2_i686.whl (586.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

stopfree-0.2.4-cp39-cp39-musllinux_1_2_armv7l.whl (621.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

stopfree-0.2.4-cp39-cp39-musllinux_1_2_aarch64.whl (518.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

stopfree-0.2.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (349.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

stopfree-0.2.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (362.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

stopfree-0.2.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (484.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

stopfree-0.2.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (368.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

stopfree-0.2.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (345.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

stopfree-0.2.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (342.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

stopfree-0.2.4-cp38-cp38-musllinux_1_2_x86_64.whl (553.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

stopfree-0.2.4-cp38-cp38-musllinux_1_2_i686.whl (586.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

stopfree-0.2.4-cp38-cp38-musllinux_1_2_armv7l.whl (621.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

stopfree-0.2.4-cp38-cp38-musllinux_1_2_aarch64.whl (518.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

stopfree-0.2.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (349.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

stopfree-0.2.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (362.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

stopfree-0.2.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (480.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

stopfree-0.2.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (368.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

stopfree-0.2.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (345.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

stopfree-0.2.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (342.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: stopfree-0.2.4.tar.gz
  • Upload date:
  • Size: 12.1 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.4.tar.gz
Algorithm Hash digest
SHA256 1ca27786691cf324b3eab6ca507451d24c0912982689b5fc503d0dc027bb4171
MD5 acccef1ebed5dc7d0539b1252ada0244
BLAKE2b-256 48be09051950522e313474de562490b9ddf291bbe286ae8946b24d29201b34ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4.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.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 14aefc6a4d1549429a7cd004a40cd7d32cb79aa0d32fc1d4c1b7492c2d1f9f50
MD5 c3844e897bcca42d61bbb6c723d49276
BLAKE2b-256 03036cb77c38bf5fd9e33240844616bb6cd4fbd0901fbde675ddaf762e69f16c

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 641d33a1ff81ec2cca3a12bc7feb86a18f503ea90af7e1858f8f05e747f1f74d
MD5 5cb738508ccb3648a8ccfcc290fbaf38
BLAKE2b-256 9c18d4dfdcdf57225ea3c0f36002c45f16679d3ca0cfadb0519cde11b7c08424

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 997be89dbe9a77d51a4b2f3d57f8d0df9e59f6b9bffc29234dc421c2a3dbaadf
MD5 92a93fd6dd918636cebdc7106cb84c19
BLAKE2b-256 b358196cc5a489ecc099ef6772427232a35767531db72664236e89005e6929dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4facb762c8ec44eec9655dcf79a959e403c241cf7eb8332dd5556021686108ce
MD5 9a725caa1e90c1e4e9c5617ab5397616
BLAKE2b-256 58b6d0f9e2894f06a42ad26f6305bff8b77861d649d0151046878109ddb730c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bda530baeab9946b2fcaeaa4bf839f32211de8a7b2f7d30c537a349d2c70b1c9
MD5 eb956913e2a26aebe20ad1bc76d62acf
BLAKE2b-256 5d68ac5a61c86c3fdf81b90ecfa1aa4aaaf524d481b2579b4fe0a9b500263246

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c64d0b0d562f22cfc8d8e8fb6a703dcc3bebf4b5ba4c64bd32b93da117c2810e
MD5 efd22891baa4b858bf67f69c7e36c60d
BLAKE2b-256 5d6203bf310ae6eaf54ca7fb92ac002a6cd86dd0c22f509af09eb51852ccdce0

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bbda223a2d7141920bf42157bc48d0d8a923315e2b28add18a43b5f7807bbb1e
MD5 4ff415bce06dc662b2200b17bdb88923
BLAKE2b-256 2a3e297c5b13280dbe1141d296de694632aa096ab53bec8b85159c6ebe60d003

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a46aadf00d34f4bd9322a599ac4e983e51cf6d133c4ae7c7bc76467ed700f425
MD5 e9ed76d7c8ef6458314a5c37908fae20
BLAKE2b-256 669f121608ec5cc394b2a66fcc3a67719504fad315dc9e4bf416e3b49ffae0c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ecf99148c19bb4f08babab7b1a29917d9b2dd7615fe3604c38928bd62a78a494
MD5 d519fdad3b8a7fc943110f9f0b0b5222
BLAKE2b-256 96940abd633023a8b96f386e611a1acbc4f5855fade97b0c4885fdd0f3ce631f

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a6c338bd57c05beebc77ac1aba775d31c5e21af936e94817418c257a8a66fa8f
MD5 57923f4090643d30b0194e399de3dbb9
BLAKE2b-256 f4c45f32f2f93a3b064e1e78864ab2a8202dd4d2da91530e76bbeacececf7688

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aad6b8ea83cb86b979b8fb174e470465efaa88041a529e35cbbe0699b39f5922
MD5 b826aa477c874ec81eb4fdfe0fb55fe4
BLAKE2b-256 92e918fa1d2b7840c83ef2e884d0d456cf7497a6b5afd686c0fa935e296d9c25

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b873dcd0043e6a1e76a69e447f091c59737ba11568726bf430f983cae4e65617
MD5 cd48779c14ca76be12450304068bb163
BLAKE2b-256 86caf7b118c5b4e0f887017278538467993f5ebc15e70edbaa83c23bf615c77f

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b8a2937c6191dafa7901b35d506d44a03f2f15e541c7d6053ac9113713b95fc3
MD5 da8d33dfe99304b42d496ce8abab48c7
BLAKE2b-256 91bd37e6461b702051996b786f32c75ea464249e6f53af0cdb4f99452f368c6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7bd15e2bea5475bcf5d8b791d74460d9f0458ddc46d4ffbbae38e15d3d5e715e
MD5 0a6f39aa5080280afdb88068bf996ffd
BLAKE2b-256 6b8ad345c47d1dcd157b77cafc44e787e2778fdb73ed2c4032e58662288cd061

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 afe97cd5ac198e384c885e9d24e218e8ccc5ba87a735c9873a2a7587ba5535b4
MD5 8ebe55e8686b85802ce7011529230bf0
BLAKE2b-256 86ba8e2433b52db866df4a05e59246fe2ee41a57b87b361a0a50a1d531af3fc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f0d4f8ce165141d1b7902c86874ba758e02a3aaf9f16001a6d15bf7c2e4c87f7
MD5 853daa56add20f05e46c8665179d954d
BLAKE2b-256 1986397fc429b8ea7d352f3704d91f005dc5f5fac7cd4dc8f85f1599a4652bd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ce7889d732efd7662d276c1aa98427a912aec580fe159b6bdc4ffd2b5d40816a
MD5 5d5da0c2b9d2c4ba2f311e6c53f20b15
BLAKE2b-256 9c4bb99e5967d9b8984ee8d48fe2e68be2e4daeb332dd8accae7b9535b63c42d

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 93aaf172985cd70f488c18880a9da5ca11f305f1e3ddf70e091828ee4b63420f
MD5 c8f8d6f0e2ee254839e79468513601d9
BLAKE2b-256 8cf29c32a31573976f5739a377d39e7b9016656dfd83b16ec433b49cb0ef7212

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: stopfree-0.2.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 178.0 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.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9ae043bcac5c2d365505791e3eab28682ada7761164864e4e172a56af8aabdcd
MD5 f44e3606f12644430f4914446e896538
BLAKE2b-256 7088ea9c09c33ab8af750194c08c659f0cbbb78c12063fdac50421030ee5c8f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp314-cp314-win32.whl.

File metadata

  • Download URL: stopfree-0.2.4-cp314-cp314-win32.whl
  • Upload date:
  • Size: 167.5 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.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 1dfdc8bcfd8ba7771ebe7b957c91787c205a5360f19767c2bc0474fd70874740
MD5 c517b9be6a194e596f002ec147af698c
BLAKE2b-256 60a4f740dd4156d426c4871f4ce95f8ddd6247abbe93f593b7538b03db3268f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c0974ee22d1b2ef8eef5d98d8e35e6c9c366c6d6cd26ced09a875778853ed598
MD5 dabcd2a126ac9609a81572c18dea14c7
BLAKE2b-256 bcdf4da555265ce23ce26c5a88ade28ee138b82368a3fbead3a3f290d3ad9637

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d781c3b4ab02dfbe331cbb09b1695e4fb00f9fc675312109eaa199a6d1c04e0b
MD5 bee1e98a89634ffbdf1d0faa50715920
BLAKE2b-256 b3330114fb20a768d2d734a782687921b2d8ad4cd94fc73591077cc1e09e4eb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d79c458d8d4d1b8bd446ac1e25dcc770bac416cc8968c21528ae51bc32d54ee2
MD5 4e46fe7752ab94cf214ca916e58a8f58
BLAKE2b-256 f1f91346011052237683b7fd742f7374b8501321f9dba569cf7d2ac5a0b52b24

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8b7597fc6989620e0a00dfb5ce72c3d3982d2bbdb3ebd3d1699add82e39c678e
MD5 4df49932d9dd50bca2595379f7638673
BLAKE2b-256 ec9a2fa092bcfaf4a33865ab3509fd43d1b4f38796350e2353f3c72e4a318de1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stopfree-0.2.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2407c3e82614b392c8858c9f2d7c2416f4b6d7800861bdd6218dd3093972d1c9
MD5 e343f3612e404cb59e0519d83ce53208
BLAKE2b-256 b6ed276b19b9e1da8154e9a9140343b15cacf180564b39f8403793b4caa114f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 885aec1e3431fd99512b4533f2356c9b205a023f9f65c42f1d8557ad3fb26d7e
MD5 2d9ea22fe732da27b2e83a2634295dcf
BLAKE2b-256 e77afc7f4e6b5f63faf78ef2acd5814e407121d4db402127b4d9630dbbc10004

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fcca18d94acc44e41e949d3c4d0556aed23f9aa146ed153867152e5146aa27bb
MD5 5b26253388e25eabcf92c126d9d78f22
BLAKE2b-256 f3fcbe67626acebc169edced82794810ecea02d82b85eb68918af782bcb4fbfd

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3e852c336b09608e41dc356028c564d07899a6148bdeb57136119129dc9e6a45
MD5 01437db643b4c3c21a8c5aa5635f318a
BLAKE2b-256 e08d0c7645a5957c709238d5213dbdd9d9bc2cd2f2d6677331e645620cb389e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 84762ceb1bde6d00376c470d5c5420cfeda4cd82bde6b333a0eaa9eeeeb3a4e7
MD5 1b54e63cce41509a9dbd50f27362ac90
BLAKE2b-256 6b97f2441269fac30cd59adcb25b3797d7c02e89fa2062a9d64e8aafbc8a5212

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stopfree-0.2.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7c8b57f2530f7de3531b97000bdb712f555b5cfdb4f3161532f7a433f68a85b
MD5 726dc51cd06c062b9e8fd26a577790b3
BLAKE2b-256 7aadedec3e8d6b224268a91e92e1e0822a31d83d90f04f402a99b82cf471e003

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83c871907d3eed2f0e16e029fcc8f25c5940206cffda938ae9003b26905f4501
MD5 c1be328a00f42620f70e165b5894b14b
BLAKE2b-256 c4cefb481190384ae050073739767817b1f81bc8045222aea0edb3a684d5e3fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 393ed2cc78b688e240e5d5ee27587dfa7c35041abbf8a66c8640f8603a9c1e89
MD5 b142492328c3442cd9156ae598906832
BLAKE2b-256 e10a1d9b077c524d34106534eefe81667b76d04b17f519afd4f8ba35fc22eb0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 65a37a9de74b5d68f3b960b6e363c153e305aac2efbe637792abdcdf2abce895
MD5 61f6438207ffee101496b2ea0b04038a
BLAKE2b-256 08f2b26d38602ce6ad5b01d16031422574f28b01f94efedbe8b2c712b643ab3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9a82131e7db45f84e54f68e961c157d23a221de96a744630c961d7cf9f8c1749
MD5 b77dc19933e558025c1a5a7b739dca70
BLAKE2b-256 84e4e67d7ff01567d722635bb6675cf6554fe95a9a7c96636b8d4d9a75985f56

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd207121b2839f865c8a3a427910e60e76889dc0c6850c0f5ec7c40fd4d1a063
MD5 5378a0a06c235d35a16637108fd7552e
BLAKE2b-256 2657e7e92131ffb1bfecaa1de5583b18ce6a18874c51ffce86d9027ddfe6898f

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aee0504fbf8b6e3c3bf0dc5acff6f3e98fe59ec5cc8e1cb1357fc40790bdf55b
MD5 60156b4631e0299b518f23a86809b317
BLAKE2b-256 d795e8ac030fe751401c8b1d4ee77f44ffe52723a81de9ec509879bf1bc071d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8d46a726b2b3ff79738cf868e5ece152fb84d76f56e77e62445e0223463c566f
MD5 486c3bb4d30dacd65f286207be51b95e
BLAKE2b-256 dc4aa4fb4608e2ecfb6192e281df38938537907cd7526292c4c66c8195f1ad9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8138383b9b395b1651ac1292576bacd52da8eca2f124fedc267535ce18246c41
MD5 9bf0ea0cfa9dc5c70a7e6a8e1b6b2c31
BLAKE2b-256 bd8dd430629b26d93d7e9681ac722b41a762eadf3a61ad287a6a00ed71dcd4eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8edc90068bd7b2f600863e7e94f8692508df66bbe6b51170592127c88e9ee5e5
MD5 5476df8f95523b8dbbb23c26888c89ba
BLAKE2b-256 b7445e38a28aa090b63928433d876ded39d539dfb8ee5ff979f43488d92bfc02

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: stopfree-0.2.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 177.8 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.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cb1b9f5fef6ddbf92917c6d978bfdfb7c61850d2660dc0d270b67b4e7cb0ecbe
MD5 b8d9ececb053503b0feb50a4fae216af
BLAKE2b-256 76a060cb017a94d4480b383075cc0f5944b7a9a8af63c7bbac14e8e75ae0cdb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e642eb3cd1e77c8a1a49b408b159f01122bcfee2d080b5086e8e38c587bda37f
MD5 acd3b0f5cf6d42725fc8755048892dbe
BLAKE2b-256 98621ae7811fb7edbe026f261c3d2f108fe20f3876806aac6f821c9352b3560a

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9abb066e83ab71dbab70e364cb36da8b2e9b72b8a51ab889c6928008fdd5e327
MD5 f9d42e0a15f08edb9831eef6dffb2a92
BLAKE2b-256 5f43118cb145cc9158c496e153eacebf2cccca0790387f7689d86b9172087f99

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 716ce98d918a13d8552bcb3e2e247ff8438a90987cb55097b3eedb3596da42b8
MD5 3e5f81f95155cbb42d2b00915a142b9b
BLAKE2b-256 f8ac2a26c0f156ea0d188c869ffea509310e38e11634a7be529160dffb1a098b

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c3c1bbaae3e98b89c59984a09a120767d3652ceb8d6ade0c675112ae4b3f1ce5
MD5 7d20c2288977356a4b9ff2e600937720
BLAKE2b-256 2614b5375f90c70a73bd6bbdec7fa5553e8b7b60b95909d4f2e435eebe85f429

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stopfree-0.2.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 13969ca26d194393892339ee74b0feed0aefd107653ad6ed392738579170a8e2
MD5 2d89b49ce7983034f670fcc30ff9d97f
BLAKE2b-256 c5ee2119f0b0ed491f20a5e7ae7e61ad1703e0cf96f17b15ac75c571d487406b

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4f8ecdc74c95156de229f67f3f72765a0cb043210fb98a863e11ebfe6c50acb6
MD5 68c34bfb12c64c0cb60adb8db64c9db1
BLAKE2b-256 8b5c7e58aa60a386d662986be1f121af61acbe374ea928ab2755048183d4b923

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2cb154a52682dac45b4df2bbc3c01979d05a17e81ad5e84a771b356e329067cd
MD5 ab42fe91440805fb970350c00e536577
BLAKE2b-256 14a7c86e6c57569b07579dce23639d671081947405f8b895db79a7a93097fdde

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 335c2f4c892e33c1957ba894bfc9dfdc5c8f7134842b3a9ccd0cc2a56e2dfc22
MD5 45e8b7f62cfdc3f68e2a8be9cf8f502b
BLAKE2b-256 31f48e8a784c0612a4fd5cb89cdc491968fe62b77ed433895c8a284e1d9878e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 10f856293fc8fd4e548dc0133cdfe98ffe1a20a5d00fe5f2468043d4109ca475
MD5 a511433e74db17b50c2e6e485c9c6b9e
BLAKE2b-256 e9bd0a9669b22e9ed8a628d6522c32d61cbcb8d2e5c33f926714f6d4bcc7ceed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stopfree-0.2.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bd749d0b840c7f611aab96c266d53b13a1d6404520ab4131477182c48f15c804
MD5 0ac9039030a7873e22533b235191077c
BLAKE2b-256 63a3e5d5216c4704686f1aacd22c18891a1d0b2c09bd1d5d57ac3b40c3e8772d

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d45b6129fbe88a4cc68ac732120562f4c00c7d3976c65b392ba694a529da0805
MD5 65879acce9b429c39a82f67a10d1abfe
BLAKE2b-256 9dc5c9794e58e5308d6907d9338ed907b865efd71163185f2b94d416eeacac20

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: stopfree-0.2.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 177.8 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.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bf2bb13b0a9f14305e084e6d7516c5e18e9b44253da13ab0087a5a2cef469c31
MD5 07caaaae2ab9b3fa9f534b31d2a0f1d7
BLAKE2b-256 2b7c82c5186256c822db8331dbd2272bb89cbb2294c38dbc7329922bdffd7a99

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4e13ac023b7645200ef32b2e9ce21a75f7a26b61963f0f523f80c572cffea633
MD5 91908f6225179d97cdac9a1aa46a4ef9
BLAKE2b-256 89f55d5df531bc66f815ace4cdfb3f2fd7f87ba1b14d9e9b524735bc35e01572

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a7186c6370867575b63de1952aeb0278252193cdf04a0e99db03424382c63fb1
MD5 4334eb741d4aab7d117f92091779b144
BLAKE2b-256 62ecfb4aba7221befea5eb3452b27f4e56d52d8bc6f9b1cc4a9ce97b3478ad60

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fef90878ede0ed2da29a18c3dce41b8b20b7381cb338fc00d044d515f09809cc
MD5 c2d64cd6a2dba6a109fba4b64c40e864
BLAKE2b-256 435497b8d562773abd8eacb0b422d2e9481a59a70ab563eb90abbe450166adc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3c12cc68af7b63bb9acf40e17c801bffbbba2b4c472d92c280f864731f3e1ca0
MD5 8a39507c51bcd9282e046d58b942a8ad
BLAKE2b-256 cff53a4f43322ec7a282645eda1551ac1d7341396f3e25ca04d4c877389812a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stopfree-0.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 283652620fa6b864326b5f6fa5783c2f1aaa8bfc0b7e520dbf2c76052afd204d
MD5 3e516d811a9f8a2f984703fe9bb01112
BLAKE2b-256 fddabed1a0c1491d8e359b27398d4af9be5f80a5581625c6f54971a4d1bec700

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0a52f64892270288460493a0e9667bbe1ccc566db44272d50fec2bacfd49475b
MD5 1e5279df260b9370eb44649c5638eee2
BLAKE2b-256 206a50c2f06be18cb770167810458937b53546d5eceb6d9e684abe2389060421

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d7aabbcc5144413789bf4f71e230f193a93118409198003a99a6e28c31abd1ac
MD5 8a4e7ac3d5916156e40ea477d1f465f6
BLAKE2b-256 a2087ee48e84ca8df3d414883d4e71d7f192304f74a60cfd2ad7e905a7e88635

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 88416826f64311065b01fa4a129c90958e7dfa7bc59b96bcc63810c7efb38a2b
MD5 1a0464f393afdbbfe16f9f6f85b28fb7
BLAKE2b-256 aba1ff52245841b3f87abb1d154ac963e3bfce746fd766f1ec2ed6c2369b9bfb

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 16cc2c36381f779e0be50abb1e1f8668735700989ffbc597ace8b09f07e0a185
MD5 3331f71c4f1dd9c62df97976cff74340
BLAKE2b-256 3b49bfdaa0e94050e35823014c6c426cd10b09009981eb3249396a5b3fb881fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stopfree-0.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 049b02e887a37b39469fd9328ded62c476a4b0feb3f06329cab5a30e909e129c
MD5 af0788d64c106767d1364ad3adc4cd11
BLAKE2b-256 698f763948b61971821123873c4bced3e9cf309297a5211a1c30661840afdc36

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 84b319bc8c748ae7ed69ddb7ae3dd7b0a09ac6ba9a97325453d2a2c0e3c753b2
MD5 474f0d87321101ab85524ab138d9f734
BLAKE2b-256 1cb8b48fd164be2f77afa1194ee76a9d8ca084c4e8294a21eb1efc01b9319c59

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: stopfree-0.2.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 179.1 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.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4ad3c5e5cfd9be335e220dff6202abcb0937bf69d6b4e6f76d235257b3cc2969
MD5 af1f9729de2cb6725da5aacc5d12082e
BLAKE2b-256 f751036037e0d0d8f9de32a85a8762ebb282b1e7b8c31b1c65a44af8b69e4c18

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2fbcbf5bd92c46706c8548b3d0d7e8a44a91e9af47725ab033954bb6febed7d7
MD5 f78ea49db999ed550f6ed59116d0bb1b
BLAKE2b-256 6ee53e110f50ede3be36d81385544ebaa09c85c3fb4a8e309715674ef14b27e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0036c4109b051134bb9dd37b1a55ba9c146087cb02cc59ce030a2cade08faa21
MD5 a46a7bb5d38932f03cacb18c645172ba
BLAKE2b-256 30f93aed840d58c40e365fa9b6e4b7cd9b8e8b9d5a14048e1e7d3b391f686ed4

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ca8d175ccc5714d45fab3923693b3a92616ea7eb6be34a114a3a1dcce19d29f9
MD5 b0aee0ed3b11329b1f11a94e8c3b8684
BLAKE2b-256 a870de68bebcccc7feeb1f413fdb3ca2b1c34c561dff1a9f970388c8de2eb188

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d60a3204239578d47358a106a6db04de48f8e8b85e8676431c78004bc64ee03d
MD5 b0584d47083553cff721eb61aaf12d7e
BLAKE2b-256 30ecb276982df950843bdd57e8bbdffc969953985656ca247d8a1314ab992c9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stopfree-0.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f40ee48fa2a902fc6fdf09ffd3f329431e475de508f7a867e1dddd6ecdb4ab4d
MD5 824be81cad9ca318c1a209bff473e2a4
BLAKE2b-256 8e0ff505b26ce0c7081345ec2ff789f11f4a1cae0488aafac7492f63e47113ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bf437b63f1efc4892fab54a79a46911bb03a6b867491920bbed2984ce8380935
MD5 80ac7a4ecc372d1f6d43f6da9bfa9906
BLAKE2b-256 10ad30b6ab2256808b0c93e9d704aea42973e9264e8d01561c5760d514241a27

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 37707fa88e4abac6085818e3994e9ee0ff5ad465dd5fbb432367a539d9f53f88
MD5 d7900844e43b7c53560693cb4c250b33
BLAKE2b-256 37e9788e586f65ae083102630c6bff08f5ae5d62e546dfaa7a84907a7ef3d1e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c68184c627eb717d7b3e2534b997f299f58b1eb25cfb5f56d187961297c15578
MD5 33fe431f5c853251373146b719a142b4
BLAKE2b-256 9361ff06f094d0ac98909931bf4ecee820c1332efe21531a1d5b686d88090970

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1b90241c99ae1bf61e9f35f6dcb73a78bd10987cc3b091189f25b4cd4b895582
MD5 de1b1c22b65585eb11a27f566ae4e162
BLAKE2b-256 0a05e360e6635d0a5ed4d8de451671f6c0bdc0cc070f1eb1691cc6e9a09ee76e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stopfree-0.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f465ec558bae55d6be01b05890b809aba66cdfee39ac17f923d81211b476343
MD5 0d9012ecd68665b810b2be14620aa175
BLAKE2b-256 19d2dcacba427d19336e4100f29a582200586faf3265b5640e7163d8f0eefbce

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55737530459421ded1c48b40f78507e85dcf0271d173f588417ff19c65940966
MD5 092b2fb2ba0baaf6be20091b4c06e743
BLAKE2b-256 7548ab6c89d871ec7df60df80161beea8d14c036b5deae5193d8758d728ab4c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: stopfree-0.2.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 179.2 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.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 86a19c7c9f4b8a5262fb43178fb23d1ed2dadfeef70eaa458d53898c02060ada
MD5 0922ff3cc76933843c02cd5be5915188
BLAKE2b-256 a2b0e1f93fb58cc533b14468663b9545a0486e301bcef7f0984cdeca636c9de9

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7f878beeda6cc498cd85476e3da5667a9eada2afe055e67a1324d469852b3d78
MD5 72854447fef129b2db70699669be88c0
BLAKE2b-256 4f45515b36dbe6f0cde029b6ef780196766c919d3483eca9b11fe1126bc24820

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cb66f0a4ff7b2121aa2fadb9271b4241bec0d04c02f237c8a4f175ac8f32b3d2
MD5 19bd840de5aed6785dee22980b16f47d
BLAKE2b-256 6fc01e7a6130dc46684d04c21e11d1532960f1478608a82f1cf44cb60699464a

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6dd32a06a49cc7c09f39e3482bce32c051764b5b36cc5e05b5751fdb7cf40caa
MD5 206e01a11d53c43f37b2140c7ab22eed
BLAKE2b-256 37efca2e46815a2ff893cf6055a1b6568b20c01334362680ccfccfbdb1d33f85

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cbbc1cc86be65b03d837ead22fa95f17915bf15d4b0783778817cfe4a6bb9a1d
MD5 c0c1e670a7f748500c28f7ce66516232
BLAKE2b-256 5bbe4e3505d9f81d350f651256677d2574d2eccf45fad012d42395a936a739b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stopfree-0.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d31c5a8677013f88b2cb4275db5b3a49d03adb01b207ef892a86cdfe8c9f85b
MD5 a11928a21cd7cfa9b4a739239561188e
BLAKE2b-256 4525987387339adc1cb7711ca72c4fb701fc830fd8bc8595c63b323a2a15116d

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3005efd59e0ccf19d8faf9a22bc8168b29d8b276dac31ff70fd191135d25b6a9
MD5 8e982a21ff6d3f081850ab0197289a93
BLAKE2b-256 b0b6ae05b10a22f3bd74a88b6f675ac9f9cf46e2ac4ff656777214dd0dd4a8e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7f3691be23d98448ab4921ae3ecb3e1c4c926e8e3f96da4ccd6787547061621a
MD5 56c87a37a1ec08e8fff72466df59ebad
BLAKE2b-256 cf5139b2038b8ae377b6da933df3579029596115895b7989463fe3c954d2fe33

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 428a7b0d7b93ef5a07b6a3cbeb910efed813cfec628b2c3463ba3b661bef7269
MD5 e0cf0d99007aec6f69d62defb62b0f02
BLAKE2b-256 ca3d5327041cc82de120c07e2f8d6471f00bdb3bdbc708498856c87f62c8455e

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d29e173642188b99a9a46d6b1ba869878c10b0bb87fe72c122d668126985be24
MD5 2619ac4c9d8dbb6b0b788458ccd511db
BLAKE2b-256 39032c6a3f83fa6162aaaf4eced65ecf6ad9754d4f47cbb5142ea5706396d37d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stopfree-0.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1bc0f545550abe2128f9561569435761a44b8b6f4db421f9f280a9d4c128cbe2
MD5 31ff46eb8db3998be9c45250178f79f0
BLAKE2b-256 826e68f032bc164cd6a49711ad07d0cf1a290c7ca9b1d1784cfce8da142c372d

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eecdc4af2eeb958e1871bfb7c6113bfbeb20e3f32ed2ba55cbdcda1238b727ef
MD5 2cb8a34b3bb754b012e8ad0bfd96f836
BLAKE2b-256 6abcd21a559e576f2578ac84969b27b1a34671f78ac8f76278554ddcd05b1e63

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 625e7d6cfe86df4d2c5297a3191e18db186a6976876136cc50ebe4c4d9c4bebc
MD5 bcbe0f28a106ea48330c246713dfb7d8
BLAKE2b-256 a45cd8efa80420b98b028e12a6f3740ac319e4ffced47ae630e83b389af9d39b

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1eb4843848340524e02cc25f974f4ee3132a57e6d7ea125e6216959af40be6b9
MD5 3a1b01cac81e6b8869b22734f512c3cd
BLAKE2b-256 8ebc9948516458cdedcdef2de484a717ff42e6d4d132126226f644960300934b

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 27bc746dac434c9fd1404cb4083a748dfa53e41f097d4dbada723cbb87bcb00b
MD5 a04ca47ea93309adc7edec82c3e50b1a
BLAKE2b-256 5a1c132e5f759ac997e39765b45f368d7ad01b5f1b6c20dad1134bdc9d0d39c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stopfree-0.2.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0601853ce245bb5d07e745a5ef57c3cfb5ecfe570cf8e287ca3fb2b41517ca88
MD5 ef757e4ee86bdbc0380d3b0fc5f91590
BLAKE2b-256 5cf941fee5ada6f8cb2e191baa893a568abeb3302d9e95775be4b3a022b0eb14

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f1c4f8efb41d5ace20e7690e41762fec8e3d66331bd629ef5316cbe5fb40b4b8
MD5 899d8ba549f88ea7d01555a332c6f551
BLAKE2b-256 83db57ccddb362630f710fdd155a49ea4327203735982d0830b0669026219e7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8193f186db683d192b7bf6d0cbdb75fb32b5c8a83c80f11dc2abe348659ef0bd
MD5 75188d4eb108541ae46ecafb22968297
BLAKE2b-256 68f336c16f0ae813f2926120445c21f552127954c451d772e3fde239f6e57676

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0d00e1cf81df3e8f854b724128739d1457cf2ea8f8e8767c996cb02348f36865
MD5 31bb0bb48c9586cda5dbcb27dc774923
BLAKE2b-256 504468edf9885f5cdc9ac0f9d3849d5f11094dafc0877de2ed847100af3ce197

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 030f7c4e0582d6ced3bd84e470845b4f705189ccc047f77adf5a632891657d57
MD5 328db016878c3829c46feff05c3101a8
BLAKE2b-256 85d9c46cca912cc0656cb3a9616dec4ff612c1fd683b6b255ec6fddf78ef1c6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stopfree-0.2.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 edf8094c737667c4360ebf3aeb25d42b632a52110266e5c8cc8d91e9c0580558
MD5 1b7705030d9b329a3f3ada43753ea2aa
BLAKE2b-256 abcc5856ec5a31f1f759bdd60d62e6a33e2b29249134974b710683a15b1fa2ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37c59511f8d1c47c64eaec257cc49ae62263636324234a9601cac33f237130f3
MD5 4f6c097cac2415c03a42201d0358667d
BLAKE2b-256 7db0b3949a4d4158f37a4a091b276672ea9329824684d1d7189173b344fc0bfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9fa38e4ed55fec9e2ace7e81ff624483dd39117f7067a87c89baa531e71e24bb
MD5 785f14f30104ed6fa075651b422ca0f4
BLAKE2b-256 39b22f31dbeca4769bf1c447ec202a0888628870b32cec804b66ab3416ea5c16

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b2e3a2427ac4ed85c75c0db791e5944d7f387a5cbab01a1ef866dfd6c236bf34
MD5 50b5850b97aa13531e36c9a85af58695
BLAKE2b-256 9a77f206964b60b90901fc88387efdd58638e4a949a98b2ff88de397493473fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6f8c82410a91e2a5cb410933eb5f05fa854d3832c82e33790ac1021e2c9caf3f
MD5 ce0f6fe91006596a7b10ba77c41cf79a
BLAKE2b-256 b69903855cac21ec83e21b51b4ca3caf3b0da07cd45ee15691debc042368727d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stopfree-0.2.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10a94265670e1d5868a99408c05ef546997c85814696b4c95d0bd39a96472a5f
MD5 e1133352020e94ebef959373ef924fb6
BLAKE2b-256 8d82047347c325e061de0a2f99af1b96ffa5c577cb485709d31970198e62647d

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cc3234845e1090678f99dda7099027345b609d1ac2d65b000ec565deccdba1d0
MD5 410eccaced38ba1487fdd7c8bb7ffd7f
BLAKE2b-256 338ca0d710dc2491c00992a21b1e591a10d5d1872e1b6a08e82fc1126b2bae6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 195444fb6ff99b70317bcd76cfbf8f9f5b9b237d9c67302e79798be686dc328c
MD5 731857ac1753f3f612b143fc08547dbb
BLAKE2b-256 77a8257bcf4383dd8e82fbf273312a75cc48bf2d6d93c10ec9cb712b68c91c6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 45a68b060388ce40acfec004585964d502b1ce748abecded49ef9b79522398ad
MD5 7d89b4b77e07fa17b2043cd062484412
BLAKE2b-256 59eebfb14895d15c0bdb2bebcffa81ed5ac2e23cd15d1ff92397e0238129077c

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for stopfree-0.2.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5f7a1b764a12d7f33fda700c43bcaae1f759361cfb960a8dda32608b25da0070
MD5 16f9884f177763a7c1feab18036b18c0
BLAKE2b-256 822df0d4cae879a5d62eac968671d8ceb58b8dd9a0b9746cbc80b9c613cca8ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for stopfree-0.2.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d9740574cf8504616f8be2c9bba6ca1e3eb7ae2fe7bbff7e2b678a84fcb861bd
MD5 dc3187e152c3808e3375906ccfb30cb4
BLAKE2b-256 cd6271e0069716c2c0b42fda87b69f2dc3fe7ea5c494fa8777770883cbc5017a

See more details on using hashes here.

Provenance

The following attestation bundles were made for stopfree-0.2.4-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