Skip to main content

No project description provided

Project description

pylibsufr

Pyo3 bindings for the Rust crate libsufr: https://github.com/TravisWheelerLab/sufr/tree/main/libsufr

Implements the libsufr::suffix_array::SuffixArray API.

Suffix arrays can be created and loaded into memory, and used to retrieve various information about query strings.

# Create a suffix array and read it into memory
sequence_delimiter = ord('%')
seq_data = read_sequence_file("data/inputs/3.fa", sequence_delimiter)
outfile = "3.sufr"
builder_args = SufrBuilderArgs(
    text = seq_data.seq(),
    path = outfile,
    sequence_starts = seq_data.start_positions(),
    sequence_names= seq_data.sequence_names(),
    low_memory = True,
    max_query_len = None,
    is_dna = True,
    allow_ambiguity = False,
    ignore_softmask = True,
    num_partitions = 16,
    seed_mask = None,
    random_seed = 42,
)
suffix_array = SuffixArray(builder_args)
# Write a suffix array, then read it afterwards
sequence_delimeter = ord('%')
seq_data = read_sequence_file("data/inputs/3.fa", sequence_delimeter)
outfile = "3.sufr"
builder_args = SufrBuilderArgs(
    text = seq_data.seq(),
    path = outfile,
    sequence_starts = seq_data.start_positions(),
    sequence_names= seq_data.sequence_names(),
    low_memory = True,
    max_query_len = None,
    is_dna = True,
    allow_ambiguity = False,
    ignore_softmask = True,
    num_partitions = 16,
    seed_mask = None,
    random_seed = 42,
)
outpath = SuffixArray.write(builder_args)
assert outpath == outfile
# ...
suffix_array = SuffixArray.read(outpath)

Once a SuffixArray object has been created, it can be queried using the *Options types.

# Count the occurrences of queries in the suffix array
count_args = CountOptions(
    queries = ["AC", "GG", "CG"],
    max_query_len = None,
    low_memory = True
)
res = [(r.query_num, r.query, r.count) for r in suffix_array.count(count_args)] 
# Extract the suffixes matching given queries
extract_args = ExtractOptions(
    queries = ["CGT", "GG"],
    max_query_len = None,
    low_memory = True,
    prefix_len = 1,
    suffix_len = None,
)
results = [(r.query_num, r.query, r.sequences) for r in suffix_array.extract(extract_args)]
result_seqs = [[(s.suffix, s.rank, s.sequence_name, s.sequence_start, s.sequence_range, s.suffix_offset) 
    for s in r_sequences] for (_, __, r_sequences) in res]
# Locate the suffixes matching given queries
locate_opts = LocateOptions(
    queries = ["ACG", "GGC"],
    max_query_len = None,
    low_memory = True,
)
results = [(r.query_num, r.query, [(p.suffix, p.rank, p.sequence_name, p.sequence_position)
    for p in r.positions]) for r in suffix_array.locate(locate_opts)]

See the libsufr docs for more information: https://docs.rs/libsufr/latest/libsufr

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

pylibsufr-0.1.8.tar.gz (626.9 kB view details)

Uploaded Source

Built Distributions

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

pylibsufr-0.1.8-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pylibsufr-0.1.8-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pylibsufr-0.1.8-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pylibsufr-0.1.8-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pylibsufr-0.1.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pylibsufr-0.1.8-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pylibsufr-0.1.8-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pylibsufr-0.1.8-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pylibsufr-0.1.8-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pylibsufr-0.1.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pylibsufr-0.1.8-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pylibsufr-0.1.8-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pylibsufr-0.1.8-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pylibsufr-0.1.8-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pylibsufr-0.1.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pylibsufr-0.1.8-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pylibsufr-0.1.8-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pylibsufr-0.1.8-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pylibsufr-0.1.8-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pylibsufr-0.1.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pylibsufr-0.1.8-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pylibsufr-0.1.8-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

pylibsufr-0.1.8-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

pylibsufr-0.1.8-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pylibsufr-0.1.8-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pylibsufr-0.1.8-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

pylibsufr-0.1.8-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

pylibsufr-0.1.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pylibsufr-0.1.8-cp313-cp313t-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

pylibsufr-0.1.8-cp313-cp313t-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

pylibsufr-0.1.8-cp313-cp313t-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

pylibsufr-0.1.8-cp313-cp313t-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pylibsufr-0.1.8-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

pylibsufr-0.1.8-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

pylibsufr-0.1.8-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

pylibsufr-0.1.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

pylibsufr-0.1.8-cp313-cp313-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.13Windows x86-64

pylibsufr-0.1.8-cp313-cp313-win32.whl (1.1 MB view details)

Uploaded CPython 3.13Windows x86

pylibsufr-0.1.8-cp313-cp313-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pylibsufr-0.1.8-cp313-cp313-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pylibsufr-0.1.8-cp313-cp313-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

pylibsufr-0.1.8-cp313-cp313-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pylibsufr-0.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pylibsufr-0.1.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pylibsufr-0.1.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pylibsufr-0.1.8-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

pylibsufr-0.1.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pylibsufr-0.1.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pylibsufr-0.1.8-cp313-cp313-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pylibsufr-0.1.8-cp313-cp313-macosx_10_12_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pylibsufr-0.1.8-cp312-cp312-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.12Windows x86-64

pylibsufr-0.1.8-cp312-cp312-win32.whl (1.1 MB view details)

Uploaded CPython 3.12Windows x86

pylibsufr-0.1.8-cp312-cp312-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pylibsufr-0.1.8-cp312-cp312-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pylibsufr-0.1.8-cp312-cp312-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

pylibsufr-0.1.8-cp312-cp312-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pylibsufr-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pylibsufr-0.1.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pylibsufr-0.1.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pylibsufr-0.1.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

pylibsufr-0.1.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pylibsufr-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pylibsufr-0.1.8-cp312-cp312-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pylibsufr-0.1.8-cp312-cp312-macosx_10_12_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pylibsufr-0.1.8-cp311-cp311-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.11Windows x86-64

pylibsufr-0.1.8-cp311-cp311-win32.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86

pylibsufr-0.1.8-cp311-cp311-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pylibsufr-0.1.8-cp311-cp311-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pylibsufr-0.1.8-cp311-cp311-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

pylibsufr-0.1.8-cp311-cp311-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pylibsufr-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pylibsufr-0.1.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pylibsufr-0.1.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pylibsufr-0.1.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

pylibsufr-0.1.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pylibsufr-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pylibsufr-0.1.8-cp311-cp311-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pylibsufr-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pylibsufr-0.1.8-cp310-cp310-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.10Windows x86-64

pylibsufr-0.1.8-cp310-cp310-win32.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86

pylibsufr-0.1.8-cp310-cp310-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pylibsufr-0.1.8-cp310-cp310-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

pylibsufr-0.1.8-cp310-cp310-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

pylibsufr-0.1.8-cp310-cp310-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pylibsufr-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pylibsufr-0.1.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pylibsufr-0.1.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pylibsufr-0.1.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

pylibsufr-0.1.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pylibsufr-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pylibsufr-0.1.8-cp39-cp39-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.9Windows x86-64

pylibsufr-0.1.8-cp39-cp39-win32.whl (1.1 MB view details)

Uploaded CPython 3.9Windows x86

pylibsufr-0.1.8-cp39-cp39-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pylibsufr-0.1.8-cp39-cp39-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

pylibsufr-0.1.8-cp39-cp39-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

pylibsufr-0.1.8-cp39-cp39-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pylibsufr-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pylibsufr-0.1.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pylibsufr-0.1.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pylibsufr-0.1.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

pylibsufr-0.1.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pylibsufr-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pylibsufr-0.1.8-cp38-cp38-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pylibsufr-0.1.8-cp38-cp38-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

pylibsufr-0.1.8-cp38-cp38-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

pylibsufr-0.1.8-cp38-cp38-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pylibsufr-0.1.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pylibsufr-0.1.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pylibsufr-0.1.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pylibsufr-0.1.8-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

pylibsufr-0.1.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

pylibsufr-0.1.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file pylibsufr-0.1.8.tar.gz.

File metadata

  • Download URL: pylibsufr-0.1.8.tar.gz
  • Upload date:
  • Size: 626.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pylibsufr-0.1.8.tar.gz
Algorithm Hash digest
SHA256 9a99061085a8273a9f5ad9799aae582fb04299a93fe0f0ddae847517b6ef79a3
MD5 1577688e563ae2f8143c752c78cde672
BLAKE2b-256 8b189e691db5c8cc1d1ba7d6725f7f11662b42ea0c14423baf69338c1a03d0c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8.tar.gz:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 65ae95a15553688634a476d9f5a8b654b1fa209a6fd5aa37553276d64adb09fc
MD5 19a3d17d60ea4e15ad9de75d69b481d0
BLAKE2b-256 b22989f66758616504b1c3b59b8dabde90ea8fd591b8364eb06f18e339317b32

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d29a1fb9cd4f94b83c441c1f76be2696e3a860cfe9263cdd2b8a9f0518dcaea9
MD5 5c959b3d1e823fcab89d7752a1e73191
BLAKE2b-256 6141deafb20db2ace7b2861e06ab9dbc4797c9916de6cf2ba48958210f365d18

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-pp311-pypy311_pp73-musllinux_1_2_i686.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 346bc7944e1f5d1cee7c73b0d7d758678b2f82d2d4703c7ae993d7d634ad907c
MD5 680198f2e73efd95119b378020b9c3aa
BLAKE2b-256 5f72e47f1712ac1aa0ad9f79f08f8918e9da338e4f10046cde4458a7ef8058b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0e8c9698cc4b940efcb8c056e409af342f12b850f4deec28c86c27f6a8d89626
MD5 175d72da950a81cd030ad4af651af2c7
BLAKE2b-256 53f7ed88debf381ad2b2e5f9f8c77b0ff17cbef51c010155530a588076568a71

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e95ac79df21291f11439cc0bd74097abd9f63a8437ac1ae0e434e475f5e18db0
MD5 20001634123cdb0d56cc88a2018fcac0
BLAKE2b-256 0e2d7bda13af0b86aea755a9ccc1e72529b8443c83d97f719faeb59cff2e553f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c3eb77136f62efee94be999d8c714b9d8c004dc046c3dd4255c04f7926014366
MD5 8610878d0ef82422a0df9260c88fd4f1
BLAKE2b-256 bc8075a820b7389b0b2bcd14fadeaab06d19c497e1ecc974c173efbe92a1ef24

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 289bd81137d67a888d4d916e2100ec5f4bf3ac2a5a34226f1ebeb2d6a9e07db0
MD5 fa0c42201290dad3251774cf64c976e4
BLAKE2b-256 96ab645b08db0596bb6159e37bf0f8bfdc5af2b7d2a74004466c50e03dfe6db7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 416b16e951c027347d11ccf4d12301c6e4141b8b334cbad773347e4683358f2d
MD5 eeaab2ad4028c6e439b64b6679005ca0
BLAKE2b-256 9f4433bb2a1bb9b6474addad66f031dc17aff6556b6a89db7c7dd0052c1cb121

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 641a36a4fe7ee82bf37afe1aa54087f272011563f4b005804a6e8c0bf949b7fd
MD5 3c9794dabc8117b3078dd5d40067311d
BLAKE2b-256 8a495f26214042d0bfb1f95f510eee74983a05fe7a2dd980428a41a6a95aa040

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d2521b049f113704eacf83f4afa364715c30462c06e06c239ea68698cb0b8b90
MD5 915fa0fdec0fd3865656ef9a577dbf50
BLAKE2b-256 fe22d4e1c1e8e8551bce343ead85ea6fc737f6272b9a041b7d1652fbbe64a9b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fa1bcac64f3ea7087716d795c594a948593ad578414a42b328599f35340ff5c5
MD5 820ed81b753c97640941bab899c13ae1
BLAKE2b-256 c85a961a1c8c95e797e8a87925f952826b2893aced02aebdc923d9f59777f979

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c1761020fd03c594af3db6987a2a9c355e23690f3dcb941606d2b6029d164f3f
MD5 a869139115a1009a7ffc73a6d15728e4
BLAKE2b-256 9cd4f215d80f1270c9d7f69fb45dff7336d477a5420a0145a722993f3633c8c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-pp310-pypy310_pp73-musllinux_1_2_i686.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 486706b92f484614b1d105901e98931296ab3b81e055d8a479e8f20fdd90badf
MD5 09e1ddd598997146f4ad0cbd3128c6b8
BLAKE2b-256 f3649bd8fac9c0ea0b5c84b2b90bafa7bec81a834a85a687437d052c9bfd8c8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a1f03e5716e642197c1b39eacc88765b306175f1bd532e54332e987df1d329c4
MD5 11848f4e5e59d89ab3083ca98b7b7c28
BLAKE2b-256 521b52090443473ef23fbe7deaa5742e28b32e5aa0cbbc945e6f1e39fc945568

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8343afa1b808cc1cd7f54ff1fcd9e659180b9f6a5382d11e03c17776abf6ab1e
MD5 52daa969490d2e9dd7cadebf5b1f7fc0
BLAKE2b-256 804afde169b36e1e585bb34af30471375e9dfe5cb8aa78ca3f86f21bdecacaaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 db7951be062e78ffb67a2bc524bdfffa785a4de2ce97a987b0d919e32829cd17
MD5 1f7d66173f5065a9a660b2cffaef3416
BLAKE2b-256 00013739aeb846732e85af2d8803883a814c0dca0a0fd8efe304bb90d51377d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8dfa7e075b5e7fd248d9eb3935f168cec3d704484be61f46e7649e887a316ab9
MD5 57b14b2a2aa30403af82b8fe6dfa3821
BLAKE2b-256 279f1d5d633e89b5c41e475224c0e3ccd8b304f25da7171ee334055d649ea3a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e4acc2701e2793f4995bc95ffd8b758b32648b1cd45cf2c173567b066d36a25f
MD5 f470a7e35f6acca49f7544b68541b1e1
BLAKE2b-256 2f642c9180733020b54fbfca6f5463349bc130bb92b751acc2533a64a6029637

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e980af46afb9098d8ab09e6682b56a5ad18272845fa305a20ac44d4485df4a48
MD5 4ae62a3bdf2b7bb53bda9b6fdbfc5c05
BLAKE2b-256 9adb5e0f0c6cd0ce5b3b0b2a32087560b8fb2d3ae62e85cca6e6faad2708c799

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6ebbe4ae40877cc09a21cedcda8cedf3240fdf9a53d75f8bd6ac606003a64090
MD5 c9502fdcd850d26c9b17103c1530f067
BLAKE2b-256 a3000aff416731b65aaefb09d8f3eee9bc5223638be8f50b43b18834a18f890f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 27c0d79142b6b05449885bd48f70625f187da9aeca3dc1c21d631c43a7309a3e
MD5 1740d25b2c817f43f502e27bc5719a51
BLAKE2b-256 814c71a25bd7587e6602f805cbe9494babec46c96f0db3802e79c3aaf4ae3c8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cfee4fc3e4a653b7d012018f68c5db865c04639a27923ddba3c0d668e5c07bb5
MD5 a090a0d0ebc0a760cea174f668a96e31
BLAKE2b-256 c9776a70cdef0d6c1397138b1d5158375e5ba4a9171e09139078896c6b9642cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-pp39-pypy39_pp73-musllinux_1_2_i686.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a9309018cfd22e785495088bb67e7ddef754a65d5223cd0048e62f57211c582d
MD5 f33ed5c91c4b16ade36c3229d0894698
BLAKE2b-256 5a17e82096b456f8837f30c050141f5fb7aea1fb3ec7a463783c66585f2169a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8eccde845f0f6f82afeab631b75881d3116344209150c8a3bb8278cd468ccb80
MD5 d8a1334e76a7abda050847064306d3f2
BLAKE2b-256 39444d40cb03f985b8897b0dff6f0e6d5de3817472b12054c63d22b92efec6f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b0cde790fbbb2b0644e45f63b87a46575b54e90cd47a1987e19b41883675f4e8
MD5 74c8cccc60a41ae7602d7092c1bf774f
BLAKE2b-256 5bd704f61581d8de5fe331ce73d655d431dc8788c28cd8f093dacafb714f58e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b55233fb8b1cd573d6601d7796948c717910c6c4380d89effc2c0462c90f86af
MD5 eb978e3c0a19c9237d650de74b027473
BLAKE2b-256 5cc85c7095300eed8bc905b8e43c87f99cbb7b52a20898f27233a60f5a5b5235

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1e6c3e814b71e43d4d48da7b667b0e86e94b56414563cfc7b56358b532d4374d
MD5 1ede42347af7c7a986a185a5b187525b
BLAKE2b-256 d940eff3a1299728e10caff2f4da9e0eda59d83585faefedc5706be66399c025

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 249c142ae13028ecee64274decc1f76cf6450ae09094bcbfd3ecd1bb38cdbabe
MD5 f01cd3cee96e78e7aca58e4113a00d95
BLAKE2b-256 f8cf68d6a71dd36e0a12d65849d94dc8b020a4e7fa6275691405e86aa7971557

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 05e287d48334b8385d93c094a28b2a4d0424262d575ee8c87abcbd1aa11737ed
MD5 d4f046ae431715ab7abf56f8122b115c
BLAKE2b-256 861f3dd282092bbdeb562447fa6112a2b419442200908db3e9ba3f09449cb6ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 84785d53a0f75667a9e2212ae72727c6b0aeaabaeb7fd43aaf24ed14e44e0f9d
MD5 0513e07a42f330975c684951a96cfb73
BLAKE2b-256 0b3a919b83b72943840a8fdb16fef406b1ffc605877eecc6a10b5f4aa9db4dc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp313-cp313t-musllinux_1_2_i686.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 967ee1c5f922464fcd4205641140f4689cc747afa4d180f0bfa648b45076b85d
MD5 91813104c541d2bde63214b3d619c18e
BLAKE2b-256 79814bdaedc91406ef1a30c8c52dd15940b26ee2d146ad50131296f2d2fae0db

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp313-cp313t-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0e58414fa3eed1ae2f77803eefdfebbde947f49e98cba1fc679c82315a87cfc6
MD5 90c0fb6576081e519ffb92f9dfc6542c
BLAKE2b-256 39364a46e3a243483d72ff59ef048da1a6c8908328b9cccbccf5a3a2c714369a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f9556d7874e430e4249b63a3d605aea27aa9759fb4f76c2a4c7c13f17ce9b8f0
MD5 cda1ccd67092a48b89f9c00e25967b2f
BLAKE2b-256 7ae5987fdcec97d75ad633b0177784878a8854169a8d76dbf34f66d38bab6fa2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4a9d5ca6732035b1c10b2c78be048f867a345ccd9367e2fad83739f408c7be1b
MD5 1f03ca717cf9cf3a38b34e10664793ed
BLAKE2b-256 02ae92c57ba1d034bb6be57e8d9de550908d98c22ce742841955b65a2bf3b599

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5894bda990f522566d151f39743774f0884b7b45c1bde60a895e49ae7b53579f
MD5 dfbc47a9f564d9c5229344b88f2a925e
BLAKE2b-256 27dbaf703aa9b7dbc9d383c2807346fbb5e404701b450b1ec4b68a01897dfb6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7fabacb6c82690f0741aaa20c2bd0c37f4076e18b26d0e0bfcd27ca88d0cc852
MD5 378e1c8ccd7fa03d6e59e52a19423d4a
BLAKE2b-256 c526ac229f340228aa88a40e259098d28f8edc5396cfe7dc063cc71a6f9491e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pylibsufr-0.1.8-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pylibsufr-0.1.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d7859e7f20dadc9da4cf5f0cd3ace52f5b6710166d526f4dff4d585e2c9f2595
MD5 350f7bf8bcef7eee7c86d30ef00605c1
BLAKE2b-256 0f000dc294d8a74f01476448a1bc7c108ae0e28d8b0ac7aba572e6d89154945c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp313-cp313-win_amd64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp313-cp313-win32.whl.

File metadata

  • Download URL: pylibsufr-0.1.8-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pylibsufr-0.1.8-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 83e59e5907daa670ccf6221d124d78310a9620076aa695ce49af22ab00d4cd22
MD5 27238412b7494629a4b0021d106f5fc0
BLAKE2b-256 75bfb133547cd73002d8818ae42f3ae4e258afd48fc3cc8d498e2b71cd7c9673

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp313-cp313-win32.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eec209ed2ac711f9034fb04721515e376815da1f823456d813dfd0c125a0d5c6
MD5 17b67de9f5eee3201144cb76785282a2
BLAKE2b-256 578bb7e65d9d93b69270a8fe981f7dc277224d7c6a8d4718dc033aa9f4061290

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b8211dda37bf92ea8a7705384c417ad58c89d80262dca1943510bc88b39daa98
MD5 978924c1164d8f630bf0222c2d6d96e4
BLAKE2b-256 37b3ae1214991c0b89666e3fc6a8e52de3ceeb476926d20c48b99c6cee4a9cb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fa640d70914507061e2597d80e5c6d36d19a24ef09bb959fd5cb0457caf84501
MD5 321dac78bef745e9200141b7003893fe
BLAKE2b-256 48f86005e0ff781a9d1cc1589cd22d00c7ad5f52bc8061079f4ae3d8e7732c3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 78cd8b45ef432091f2ba5aa10cee69b226a55f8beb5cbf67f93d215ba25b4504
MD5 340ab02838b932b967e2627691d91bad
BLAKE2b-256 0f3a5135294cc21cfd00367bd15365aacb4249304a5d804005afd2541accb4f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 126550d8a2121b611c90464383d5380f26e477b987f344a0a509a02b5d3cb56c
MD5 fc481824aaf1fd5049366503f9060d2a
BLAKE2b-256 c5d344deca84a16ca7ac663109608e1d38b7609fca7426bbbf269ac5bc5d86e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 669dd97d888b7411a9f721cf89583bd2b1c57dafea975a97899a483271d2bcea
MD5 c9104dfc1be8426a4c84caf1d05bea53
BLAKE2b-256 264630b3cf09fc799d82c3c10dc31a9bfcefc320cf1ab3ee093097d87e1110e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c6478a309d123e782cb12b5175c77703c43c4a6ee4e985175bbb9b1b07cabccb
MD5 38d48a4725441c89711606a00b072bd8
BLAKE2b-256 6a367f82bc56ef638f47c4d90daf56ff5c5b9f0d23943e061e7da63f3a0b6f5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fb47e61316a5c9163256c1058bea2b0586e3e53c27b963115dc8f1223c057d07
MD5 8d1eadde99ac294c1a3d4d83b886ba1e
BLAKE2b-256 f4b9dd8fce28cf6f929a5cd335d94d825babee27b8cf0df9de8af2addf600d14

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d017f283d5f9ab649bad971bef45181dd6513b2e610038567b10c01a1eed0fc6
MD5 ab6954d80949c0de6618faae34e940df
BLAKE2b-256 800fcdf061d45998e8445c33a78da6e2e29de2b3a2ce796375d3ece9b875fe4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b2be0e2f8b8c5d324f48540a24979b679310c326bb3068261487cd4e5bf44159
MD5 77e9ec4a30621ba48a7f7cb98369df12
BLAKE2b-256 5b54b5a002eea5a4fe835fda74905a116d0e0346c0e952586ee078cb5cc14bf3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bdc64f93fd7d0a3ec65dbafea800cdbdb273c1a151bcf75f8fdda17dc3526c33
MD5 4867c5495149ed7bcfbe88a4808fb7af
BLAKE2b-256 576e503f74e88d0fc880b5dd86fab3829b643675618faa681fba73115429b079

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8f199f84da63fb27c33a146f506a7f30be1db72f977b6b6fcab3f68a5310ed65
MD5 94e708688ce06927e909ab05f128fbba
BLAKE2b-256 747638c98724f002bf5190788a3e91707dd643f41b2554a146c2d50656475a2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pylibsufr-0.1.8-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pylibsufr-0.1.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9ebed227a7ef540ad1f618669f3740e1009d35daf7247f5a97d4622b1d2fc6e6
MD5 161e2a8f744d3e31722138f78556f150
BLAKE2b-256 af1d1d59f37f1a8fb9ac1f52c64bb62d33f0c200005b9662acf075c3c5a5532b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp312-cp312-win_amd64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp312-cp312-win32.whl.

File metadata

  • Download URL: pylibsufr-0.1.8-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pylibsufr-0.1.8-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 06b4ac233208420afb5ab4c66b8089299a0faaefe5d70f4dc6e85bd9bda2ad18
MD5 2b0f78700deb10262673585230b1d941
BLAKE2b-256 67c4359bec1dd5990efb524e012bfcab269f3fb25ad12cce03d52683616ef2a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp312-cp312-win32.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8087f86dc8b9b1e46e069bd006ede9f987c851a01cf07ad14dbe7cb412c52248
MD5 0838a4a4c5ec81b91bd9cb4326c49ea4
BLAKE2b-256 a3d4bd5fe23edc5aa04850209c334d245b75b3a8334ddb7d79a738b750e49d7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bbbf80425a55580baa6c703fedabd39d2e91f0ece0142c96eb7af2452c69e979
MD5 1112c3135d64ef722607badeb5cbc6e8
BLAKE2b-256 b092ee6a5ffdbcd3ecfa7c8c408ec9ba91210b0507d12de75d034d6fe70cdcc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 70d4dcad1ea4a290b07226189ffe590211e22da414aff4deb4efa3c68650ab18
MD5 f0aa86a71bad8c35d9a77c399f1b7e13
BLAKE2b-256 7ed9ff9b082d8425f75c9b36b3cd33206f23acb8f0e016bd1d85bbd56ccc0223

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9731f8678e49b7adf5ffc6fce01cce3b71aafd36c65faf7009b10cc25df27254
MD5 73f10c852fd57fa45614ffd93ce59141
BLAKE2b-256 0af56f561159005bf9f7ad2534c748d6d8cd3a477617aa2fd86bac9dcad85133

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 38172274a247e3421b037ab4aba696326cdb6928d7bfd06821f1d474e13a11ce
MD5 958e0f7a9a649671c2032648fec7e203
BLAKE2b-256 f5cd448ebb5362faaec5ced351b89e72dde339503763d6a39c073c0bcac1f5ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 becb82223b4ebd06b15f20f213fbfdb232a0b9f94ffc69480f32bf832eb15a3a
MD5 cb0f0a58478781991cf4f2b5572e56d2
BLAKE2b-256 8c58769d1c0c776b64e64b4e1bbab1a6b731a9ad63ffa5d943b88cb3fd76c530

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ebef9d8f04656fcb448931720b64b85d5de51b531b48bceff13cc115951decb8
MD5 af4ce7e458456329002c0c50e74b241f
BLAKE2b-256 dbf6b37fbe610716bd7bde7278d87ba104bc0ec6365aecda2f57783502059ed0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d74b4c1616300640fa1c6cea93d6bc7079a9e3d764552bb856b4c769eec8da12
MD5 c57dbfe0dae29a1e57810d19e1aee170
BLAKE2b-256 1d98020c87221ce3c9cb6bca80bd37ca95603dabce7ab852d203ec0498c16f53

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f2dd7cd8f2f3d5184bba94455a7bced6a744696b9e7b150a9d0ae2c8f1111c7c
MD5 1e06a1e02f5dc75dd2305c9b9f9d6dc7
BLAKE2b-256 43663823fe86f275c70ba9b989d7a9896aba8222fd08c1b1defeab933a736ea9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c7342c3ef89f6fb134549341a56b9d850a82736b45eb0059bd5a336849edc9b3
MD5 f576c933c7159df5be520a10bca60ca4
BLAKE2b-256 7fcffbaa7a5c163b336e96374ea36ed4633d908dab0afcbba3c9edf0706cca6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8dedc4881a260511c76b7a249ae3a829e9c8090723a57e050695dbbf8f71a5f9
MD5 0b853409e6cfd9a5bf43e0d622d481b1
BLAKE2b-256 07c966fb4c00ee7b7f01e60b8327f2a942bc9da72b9a261f48ffa0f28569303d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 85146622e3456057984090366bec4fd4320208d930b028d210880c036a25e83f
MD5 5f7df5d1b2885657c45ef1b2503233c7
BLAKE2b-256 aeeb73c11590d204827ccd7440aa58c3dfdb91b30f489a57925f1033d07d82bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pylibsufr-0.1.8-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pylibsufr-0.1.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d799ea4635e11b08f31ff2e97eb31625f7d99e52bea8015edc077b69e6c9a60f
MD5 c587b173706450598bfa5721b966c5a8
BLAKE2b-256 97ecdf39ff66ae499beb14be34ba771fd93a1c68dd43307f6689cc467aeaa573

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp311-cp311-win_amd64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp311-cp311-win32.whl.

File metadata

  • Download URL: pylibsufr-0.1.8-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pylibsufr-0.1.8-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 583ca596e57c9ddf486d2faf3f30e3852ab3d83f08d48203563038f08ca3b6c1
MD5 ea5565f7a0fda9d06ae57ae44e9f90c6
BLAKE2b-256 6023fa39ad1d55ac420f2b5df8d0421e59c9bdf5f1bb9611c6ada8c48d290674

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp311-cp311-win32.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4e47e3438c8cc5bbb1bf50e133a7b3c2d73160c38c3341b47ef663b6ab36140b
MD5 97df41fee8712147d9dd065797208c35
BLAKE2b-256 48050374a1c115052025118a6a503874a93c6507ef4e2632c23113bc2412a6c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0f311dd647a2941564b056018377184bd500ca854cd16cbf60af90530ae3ecea
MD5 a75edfb205cb46389ae82830fc0e3890
BLAKE2b-256 1586fc9e091336b87a93f63e2eeaa785991f248b629e053e3221a8507991d50f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 922493b7ce03a7d8eacab9ef1fc55ea29994958232c1289a57dfd347e61e8260
MD5 b9a05ba12c31418abd3da8c3cbe94e0a
BLAKE2b-256 de2551d8ab7c92b78ac1a9c39bdcd84ad913f2d7eb91c52cc691907f8087fb78

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bd25f51203270863984daad2a189a26c4ab176e3e7d9f0011199f7700beef4ec
MD5 95514af366ef148c7dd0224b77fbdaba
BLAKE2b-256 9a3e94eef7a89b13a40a39dae19f72ef1b8d11deb049d7e81e91a096f834972e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 150cada9ea325c07f5e88eb71a31b560825033ca90f3089c49180f3ae5393211
MD5 a5448184a9ae8e729ad7aacc511a8abc
BLAKE2b-256 2787745dfd5f805e43a7ce789ff4590ef2e47c9ad00de38c717f53282a37485b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 18125349aeeddf0a43a0702e45cec14d8d423677e141b04bb29fbc7bdd14e1b0
MD5 813b5f5b5bc07d03fb7ccfa3fcf6e014
BLAKE2b-256 e7c6368a96c5fb84559b9dbdd74ba221cceae6525c20d161269bda803f36da38

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 61c1bfcbb1c355f0eb34be3df88197c98e964aa239024ecd3081d6aa588ebe7f
MD5 f2a53ba1521cc43328855dc903776533
BLAKE2b-256 ae1693aeb0887ef389c1f8cd106b300764a8b3d10c6326570b02a9ed2dc8c8cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 39b604716f9b09ce54961147c8d76aca928edc082077fc4cb5317ef7afd4865b
MD5 c765a16c77f491b942e493873f42423f
BLAKE2b-256 abc8ca6ffeaac6e90e120c29d394403b16d49c201043cea33352e1b07d7584a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5d52f3d9d035a5b8004b446a32bbc3d73d9dfc93f1f86a341f3b6153e88a62bd
MD5 f1490f17bc362d82b477d8857811e6e3
BLAKE2b-256 19c3702dfbe3be84ac247d79662fa8e3bc71a56aeb06582a587022dd9fde5d9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6fb50ab892350b8ee6c6a4b057be688ef706b02445d42467f8029b9849758f2c
MD5 fc23f1186ceebc53e14295adc2deb9b5
BLAKE2b-256 b6dc1ac2df014860ca5dd9deb0607ce6c4af0d88f08122ba2f36ae62f78d62c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 546cf5fdbfba3cde04aad627ce31225155c794c5c19d70163f142f12fe1c7f74
MD5 ae2a42e3dcc358ed393c3741dc9dd8f0
BLAKE2b-256 48eca25608e265db5602cf32c65bddf7c4bd5cef2d308ac4bfa443b623dfc376

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 07cbd0a2e9eddc7dcb525ef4d30286cbafa2853231110e269e9623579ab18429
MD5 f9deee762005bcacca5a2367709f08d2
BLAKE2b-256 1d202ccf4f7b843b2c05e99544e96d2bc8cd08e1b9e515686e1c2a8d3e41c23c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pylibsufr-0.1.8-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pylibsufr-0.1.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 aaec82ea14b277117bea917a84da7ef5c48d6161c35ca5f92a20a6659cd3a355
MD5 f1087d9b74c60a9bc611e8cb4376b649
BLAKE2b-256 1e2ef8dbbee1209f7f35626c29b957c04a69a127d0074c014b735d5b0faa4a4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp310-cp310-win_amd64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp310-cp310-win32.whl.

File metadata

  • Download URL: pylibsufr-0.1.8-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pylibsufr-0.1.8-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 38f851b1c5b7d2bd34a14ff1a65cac4d5f60b1ced567244dc29fc961ee2345fd
MD5 3a764becabad04019988d721a2c7e33c
BLAKE2b-256 4ab6317e5d37d6823e469937509d4c685810449c705cc4bb5e106cfafd73141e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp310-cp310-win32.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 986b5dbf84abd8c1c24b12579d682d77489edcb81de31ed5ee70b5dae817465e
MD5 3d1cbf532d5c0a901efe25d25b3e2905
BLAKE2b-256 4422480438698d51308aa73c1d0f4a433a79c9e50beb1f007357b4ecd072adf9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d6036386c7acbea81949680bbb0410372a4f939263677cc0afe7a68cb4725227
MD5 d49d9d9cf8867e3ca5d2cc336c0cde7a
BLAKE2b-256 9bacebf914aa0fc8088bba4663ed5cccfa6fee47c66f0950c0205eaa60b2aa72

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5d4f6c2ea5798082e69be90620cb6c83de2bfdd981c4feee42f646bd455636a2
MD5 f238e6e16bda093d8857d4211f803a5b
BLAKE2b-256 012180d7957be805d4cd5d52df1fab7f00c1fa6057429c582cff6c2bfc53c831

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3bcea70b70edc0a6313cf35d696cbc628188ec102dd5f5620c3c65662462baed
MD5 ef3ed1d6a1849fb932514330c72413c5
BLAKE2b-256 6c69f70a3f4d8abdfba25b009d4475f9803936fc63845695583f4819ecde9d79

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0795e0c28fc0e58064ad1d47b1185c4e0edbd91b6c106e44124ca346e7c0a744
MD5 848c95dd783ab5eafb3ce32f87b4d148
BLAKE2b-256 7ea78fe40400af13e5c43a3fc4a41c709618c2609ce8d92d1515be0e765ea670

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 32bfbbfac95ee4b2c02513234d9a8eaf8189f5c4af1fa491b41d440017bef487
MD5 ef960b58db2be1ffc7a7d433c01e051a
BLAKE2b-256 4755e8f9a114bea2ecae2b181a2c0b38eb788c06208380f96eb7a12896260a56

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c7432e29c14d0ed5a09faa6f20bd9b9276d6ef072f8f74d50856fbbee5cb8c32
MD5 53725a438a499c0f1365c03b0e217e30
BLAKE2b-256 f158c6f4475e285d8bbcd24db7aa102a7922a09e7de2ca383ba77d95b4f44c26

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f16ae7960caeb05654346c25cdc59f8b8a74d1dae9cebbf28311bad4427a907b
MD5 8243b58d9d95753a58472fafcbda4273
BLAKE2b-256 fdeacae8bf6f2d6ae1839585e16082b148752e5fcc3f556a1648deaebc3b8ee8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a6d7c91f2ca0e5308518ac95fb59b1c44b798db340777e7faaa657d9ccc32228
MD5 63b4222068c1a04d2cb230a148961eb0
BLAKE2b-256 832d3b0ccdca92f9eb99647edb2f27a993fece0fa58f7dc10b1f677afbeb88bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 491e5f3323da4a91afa083bee46d33352e7d6cf63b525e0f70b69e94a176ece9
MD5 07b2cba4c8a5ab2628124dbb8e7178e6
BLAKE2b-256 bf21e113fe6d6a76d6c7748ff076157bd87fd692792c53cffc7378241551d3d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pylibsufr-0.1.8-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pylibsufr-0.1.8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 75e67debe9178ddad29537da723dce99e7f28d17945b34245ada51a4b4ebd0af
MD5 857b5fc1ad497313cdf8ea1b3374279b
BLAKE2b-256 7449a1a29e51c7de4be0472e6ae8cffbe99122ffef13d53d88883d0c5a763f38

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp39-cp39-win_amd64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp39-cp39-win32.whl.

File metadata

  • Download URL: pylibsufr-0.1.8-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pylibsufr-0.1.8-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 08f97cec3f888d85f478df9b7fcce69152bb48c6dfe28a48654d55390a06d58b
MD5 e56153c86b4114eb3028fce2d69d62ee
BLAKE2b-256 7337d212a53c37158e62a7fdbd3d28b063947ab987a8dd1d6b14794298df601d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp39-cp39-win32.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ec652f2e372333fb0e23423bfa13eeb486fbed76a7d50ed5e812ddbb3ff09dca
MD5 2c9b6c2c99dd08fe6bb421df1c8b1126
BLAKE2b-256 23f4adf1bda8eaca2397487ab67effe0d6fddc1e8a79bea27a7d35184e5de056

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 628fb607783e50ca62aa8136f9c5aba20e6809280432d9df45e68e24ea8ddf58
MD5 56e44559f019fab7ee3d3c1b306b94c4
BLAKE2b-256 1faf9daa0d2b85d10135584348402d3f10f9a60845b4f693a5c56e0493dee934

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b9e00c29896a7270edd0b22a84760f316e5894b99b0c804a00e59a4e4bd8231f
MD5 7874fec6b814c60d6f125e628c1c24bc
BLAKE2b-256 169102af624cc3bba2ed4f79839eb510d14305cfb107eed3cf450c4ccf902e28

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7df0e16f76bc63a873f812256c8615cadf09c02d6d7fc91aceef5e05c0014b51
MD5 de6e580499bebcb883249b5b5b25a640
BLAKE2b-256 302de9800beba76a921a8677f700bc09b3a541a42d039214ecd30c13a895507f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf94621fbe98ef2681852daef7413483165d21d2e92b48f57676608c2271c539
MD5 60deea5c80a9c1d1cd2f1dd28f5e1dd6
BLAKE2b-256 e369466a7100cecc6993e12582189c7fb6b733262f2374f1ab408759151a1544

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1489d41f7646c6e96e593d7866e03a46b5e7da03d09767351c754aa5e230a9b5
MD5 b1b30cf225f78ae6e40f25624381dccc
BLAKE2b-256 7fecc09856e1c2a7ead1a038f09797465c20e2559d0fcc3f4e05e67e47af4af7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6ffde73013b667134ab386e8ac5e34af2beaa34be546373ee3699f29fed113f9
MD5 f49b32d9dde7bcaeb5ec7bf089c80d17
BLAKE2b-256 eec06f7960b6fd29f20b90a0a40f9d5b9ac84c7f7c9943b2be7e13a396b710f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d2460048fe2d9a625d659b042511c080a99d965fa79f8aadbfc03d6144689e73
MD5 5777d546154ba5b3017a2b214d0ac2d2
BLAKE2b-256 49ae008ee1050b43e7cb436382dc065fc8b6f9ee7f7623b7ac9349f9e33f64f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a1701f905a772e4be0b614435984569dd410409e7c70166e12e9b9b14ad96537
MD5 a89326b0a7fab3497d920c28c0fca2af
BLAKE2b-256 12d04d1187aa0fb98da028bd227f5b93914892f749513a845718a4573548843d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7bcbba3de476864c32541206ec1336546fdf1284e76c3ab7317cf6176d3929ef
MD5 2deca1c661a5e36e0be17ce64bf7e77e
BLAKE2b-256 509275e82eba3082e94ed67bd6bfac366d1ae8934d0926034d596506583cf3d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3747f72aa72328d4fd9575956ae9f21feebe1fe59dd2f74f029e6d157d97c7c6
MD5 d7728b1fc67ec600f06b3281510da129
BLAKE2b-256 8bfbd8b1a69786ea0ae2b14a3f19c0e2e3aa8d985eb5d4bc6abad64c6ceb0670

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f3cb8619bbd1d402be23bde8ee8fe11f8c53e9218c39ab2887b9337897bb5a43
MD5 c1bf395e5d31d75bd3f897d9489eabe6
BLAKE2b-256 de90d453a7b5e0e5a68c76f2f95bfcf8b99d99b28fa1e0a3a602f2336237fe30

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp38-cp38-musllinux_1_2_i686.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3fcc0f5a7ee4477ff6d654cecfcb3d860c1aecc14b9b2b2be6ea4a915af32e52
MD5 7b9680660cbe7bc49b0f53c727032412
BLAKE2b-256 7ec9a88c615ef4bf2697ff929be80253c3ecc90ab9b1c97677e0887f58f27fe3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp38-cp38-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f012e76b43309fe5757287e8daf83fbbfaca3ffa66b509a8202bfc4625af2ee9
MD5 9376cb525aae4e5c5676c3249ce0f12d
BLAKE2b-256 a54d0149bb8f19a601a48ee2e7512048ab53c39501a4782e5e1e47ec313c28de

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 731cd077ee1c5ae7f8b65e9b58aa62ada8ee2607c461d84cf3926db234370063
MD5 2d67cace2d8836d9d73f630381143a3b
BLAKE2b-256 809df249f79cb87c0027083df07b923ddb3f290867a34f306186b265f565378c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ad831036fdccaaf031c2514bc881b0eab93bfab7b4f88442cdb1175f5928f251
MD5 a9d10a5707a66bbc6b8f008dac9d8c7a
BLAKE2b-256 112115b3513037d577664e10a883f83a7b86716ca021da36d8d30d3f1ba13351

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dab96eaf4c948fc141ac1f0a85c65d3f6f626130abd0dba8d7917d827b5a174e
MD5 0cb7ff390396ca2b5c7c7df1217731aa
BLAKE2b-256 c1384bddddeede605fdce4beb3ed78327364521c707aed1ba9d108bb9a9a1582

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d3776422d22f75af763dcfebad216726b6c17dfc9c09bf85903e3c9b3d414902
MD5 d064cad05f98243a5c66626a2de6a9e6
BLAKE2b-256 4b4c4f8badccb95cfec4ec85dcf54fc6020d147338bc07be436ea8171f6cf55f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 49ecb03ffe4646c3efcb4c951008c89e1d853b9cf37138973a8feda430712ce7
MD5 abd282356ff364e0fa34429214b5bb43
BLAKE2b-256 8175ed84ad0ea82dde74d45f16b77e1b2108bdc10b4fd990e00cc9e807ba578e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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

File details

Details for the file pylibsufr-0.1.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 06daf9abbd8a123ea5415836bb4d2f5ec28b4726ab063597d6cc1136043c745a
MD5 1e66fd03050c3fc8acd07d4ebd6e3057
BLAKE2b-256 e595c4b7f14905da2bcf468ac9031ea9b965e4d6f22644fc2e7aed30bb7be333

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on TravisWheelerLab/pylibsufr

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