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 *Option 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.6.tar.gz (625.0 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.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

pylibsufr-0.1.6-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.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pylibsufr-0.1.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

pylibsufr-0.1.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

pylibsufr-0.1.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pylibsufr-0.1.6-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.6-cp313-cp313t-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

pylibsufr-0.1.6-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

pylibsufr-0.1.6-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

pylibsufr-0.1.6-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.6-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.6-cp313-cp313-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

pylibsufr-0.1.6-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.6-cp313-cp313-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pylibsufr-0.1.6-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.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pylibsufr-0.1.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pylibsufr-0.1.6-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.6-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.6-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.6-cp313-cp313-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

pylibsufr-0.1.6-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.6-cp312-cp312-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pylibsufr-0.1.6-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.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pylibsufr-0.1.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pylibsufr-0.1.6-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.6-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.6-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.6-cp312-cp312-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pylibsufr-0.1.6-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.6-cp311-cp311-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pylibsufr-0.1.6-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.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pylibsufr-0.1.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pylibsufr-0.1.6-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.6-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.6-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.6-cp311-cp311-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pylibsufr-0.1.6-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.6-cp310-cp310-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pylibsufr-0.1.6-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.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pylibsufr-0.1.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pylibsufr-0.1.6-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.6-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.6-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.6-cp39-cp39-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

pylibsufr-0.1.6-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.6-cp39-cp39-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pylibsufr-0.1.6-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.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pylibsufr-0.1.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pylibsufr-0.1.6-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.6-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.6-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.6-cp38-cp38-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.8Windows x86-64

pylibsufr-0.1.6-cp38-cp38-win32.whl (1.1 MB view details)

Uploaded CPython 3.8Windows x86

pylibsufr-0.1.6-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.6-cp38-cp38-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pylibsufr-0.1.6-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.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pylibsufr-0.1.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pylibsufr-0.1.6-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.6-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.6-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.6.tar.gz.

File metadata

  • Download URL: pylibsufr-0.1.6.tar.gz
  • Upload date:
  • Size: 625.0 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.6.tar.gz
Algorithm Hash digest
SHA256 ab518e6a952c751289afa7f3270dbd51d00f9bd8f34caeb9d75b6cd2d445b4f4
MD5 1e6388a062f4fd7212044bad627dee9f
BLAKE2b-256 6e494c2fc1b114b03e0346d727ccd62d3aaee2e1dfff8f4970f04482076f4649

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6.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.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 141a7f2551c7c75ff6a1026c86e2bccb2d1234e90e0a255ea6a1e373da255d0f
MD5 3e5b7d53b7038ba5fbe8e6b478ee2177
BLAKE2b-256 63aed8936c6569e138b6fd64b0db80ce78ae24e6b5882645e6eb3c0c69067cd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aef7adba3507f4002f8f06bac0dc7011f86f20bdefd14b4de586a9d26627d8c9
MD5 b9f54ee517bb4cca65b9c03823a1c6f3
BLAKE2b-256 3f6d76fe1bc31d540897acec1bbf58621e03500ee0007d20ec20bc3871d05480

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f8a0f79e1f6dba97fe3472709e36a76fecbb9eacaf75489612124a5ccf0cde73
MD5 2fb879f04b36945af94b98f1f31435a2
BLAKE2b-256 4b664d9545bd547f35040e6bd82dc38a46ead452e4a9479780f1e44c14cf9c03

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c3fc3e020c5fd2f36048d527eda982b0b195a6f18642e6b5973cd7b92fdfe3eb
MD5 2ed8f2e2d76da19b84ecb37fad6c54ea
BLAKE2b-256 02026e1e066aaaea160ae9120accf363283d6a7802677263b99759cb9c3adaf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f30b0ec0ca560d931cd1700ceb2333fb6ab8fedb2810dcd4a70f6df2b8347e5
MD5 5d1b9a80c3850318c96be4e4e4197883
BLAKE2b-256 c15fac9d4dab39db998efcb6049f04ec78f5a419c1ff0acef4a45d7d27aa9934

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3faf2f517f7005434ef83ce001318baabcfaee022a544c38c853a48a1f33aab2
MD5 a66ac8e08fd858c66d71f0a6b725dc2a
BLAKE2b-256 ce1545a5cb4e0329c0c01195b9e49b1b3f8b9af198787c9d3b33328f37b72b04

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bebff398a35f7a5b7c95217949dae0603e09c9322e725463ed46bf5672bf1dc1
MD5 55d47582090250ae4f135bc9d1be1e2d
BLAKE2b-256 617608506a3a4ed401ddae60c8b02deea09b5f249f00020321036de7272d53d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cff2c897aefaade94e565a4c538d921075d2245c1c0cb8217c54c97a99e6c47e
MD5 66fc5df64258fd32d0b55eeeb9722371
BLAKE2b-256 1678b620577f320992bea79462ba4d2b0fc51649d01fae83b60fd7732f2cae08

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 82e970f5b23f7e4923f1325c9ac3068e7b02a4843d22ed34e0d4b637cddf6eda
MD5 9b2b6b4eacbe494460a894f37281b31b
BLAKE2b-256 0519b13b0f0e8ebab1a1926489b3673e1a603fae6e878eec88ba1dfba4872623

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f503167e159ec719e345ba7c6b316a1fd562c810a8944003269fc2a42ea94852
MD5 a2c21950c84f25d765dab9a42555fb24
BLAKE2b-256 65fb7a0eb11b591fedd2e07afb8f2e9e0c886201c8574ea53e921b9d12a56951

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e985948a19de9f141aefbfc054ca12bd46359c4acc9c8eae3b3216912c3c2902
MD5 56fb10ab03e08350df514f3553330986
BLAKE2b-256 77545c336de3f6f66da8aed280acd102702d987f9fec66705057a6c32ebc152a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d62cc51ab25ac9a3cfc93178b6630409414f882e8064b54f403067da78b87878
MD5 f5601b289435fcb443f1955774b7fefe
BLAKE2b-256 c585327524f6b2a18fc6d55aecbc57073e726aeca682b1f220ee98a0a0099338

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 704b83ade0a9b0350deda006b53a8c8593850aee5c12c8a9ceebfea55e6072a0
MD5 242e021737dadfac22d7b2387038cebc
BLAKE2b-256 a52270cede1c830e77599d47b2e5dade82717fa05d7552f340858b0c98ee3786

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c84decfad975d17925d4217e8ff0ad2fa48655b97c8c540bd8fdfbdfc32d1e6e
MD5 6a3346ce53c66a2937088ebea1d9d1ff
BLAKE2b-256 204536fad8ed2d05e9ef53d529e0f700335c51970ac10bd38fe58a000eafd022

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b32e1b48c7e03033d70b304997417e04cd0f33a46a8bbc1094831b938144c1d7
MD5 d343b5e3f3a4dff9d11b2e905dcf2fa4
BLAKE2b-256 50744107566c8ef3b12b7c6e8af61af27091cc9ec20dc54d409d8bc38ae1f197

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 939e002839161f125bbed3121e87ae88705af3636a13db57b8b3a6718136931f
MD5 a15df0b9c39eec7d304ec324cd648536
BLAKE2b-256 07236cb34b827c67d15eee4d3d7a7a5a0ebdc5f26a82c2d09da0c3d6f80a06ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f46523eab173106ad5baecfaf5c36e160b92367991d70a09951943dc6d4220cd
MD5 533fd5c409fcae91ef853fd882f169de
BLAKE2b-256 c84425a35bfc0b0466e3ef94abbdebde1f06e116789c302ec6b73237b037f234

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fe0eeb9a38a2b09fd3389fdf185bf79f6d6b8647a910e63fead63c5d109d57e6
MD5 49f71a11d405f99708e3d0cc572f785c
BLAKE2b-256 b99e6986e0900577bd49193f4100d34005db0f6117ab43a3e0d4ecc51168ac7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2df8f504b680a567b892c2c47dde19cd5dacf66b6aa121520778c32419e7882
MD5 ad9ba90fe7e33bf37dc02919697ac0b8
BLAKE2b-256 0e18640cc43346d6a27aece7e2fb362f4f63297148b68feb5f29affe60d4802f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 29ec86f29aa390d763263813f563d6807faa0e793a3cb07005dc80e010e355c3
MD5 5aae5843efc3122cf16929e94bee03e4
BLAKE2b-256 9fd5f1b767b8c4df33691c229e493bb14ca62bb25db094c67952f4a3aa5d9864

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b80e409a4d5d142922918153f42515b2524e9871e5c7b36ae5225cac0e71044e
MD5 4fe2ecd2ed464beea5ce003487409470
BLAKE2b-256 3869cf7db7af1d6a4b864507933959c6c8bc9ed32887a7110c8f87dbc7fda20e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a8d4a0121ff9083233a0554163bfbd4d1858bc81da16c015ffd45fc9e0fc730f
MD5 a68c0286ee252a36385a6b092af3f877
BLAKE2b-256 478c3482d54c35c451fb20a5c02f93f914839f397bdbeb6c663f240f4104d128

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b4d4662e4ec0bc3e37c9fc5c5bb3d81370c99f0cc82c83edbb032c5570f80653
MD5 4d885a29f46a140a5806bce67dd228be
BLAKE2b-256 eb80b68504cacd9da9e6315ab2fb0001c25b0b6894b4be296e87c9b2cd616716

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eaec1104cae387ae365dd702dd5585521e39df39253e2ee8bd03a0eee85ede19
MD5 ac38a05b9fe6941860cd1f0dd6dc1a58
BLAKE2b-256 4470ae890f9fe5f5bc85d7810f6be423c81ae8bcfec2c9a0e5ed6c6eee432c81

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 505b6a63ceb9a75d430100d6ed3a803824eb718c146f247ffec5383913891651
MD5 3e1b3b98bc421c6d756e3861e5fee107
BLAKE2b-256 8b95a8131ce297efce9e9b0ba0f9e48db64110f070243fdd34727699e84333aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7ac0e28c0d8e82a3cc50144a1325e9a02212c273e2a7515ea20e58e3b7a6d74
MD5 c79163758f521b73b1eaea1820bc1c83
BLAKE2b-256 b8862c198416998d2a5a2325e7b4b6db3ee99eaca41ed52b384e4fb567ff6822

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pylibsufr-0.1.6-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.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6494e431d8c790cee8e12f078351cac3ef49fb92b5e111cd0a02d9f42f325bc9
MD5 9d107067111b44367417ce9283dd3501
BLAKE2b-256 b4bdd1ea4cda51210b3471a3932501ae0363aeec1e76c35a3694fbfdbb15ab15

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp313-cp313-win32.whl.

File metadata

  • Download URL: pylibsufr-0.1.6-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.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 eb3d5406a25750f84c0a1a1d4866670ab90fdadccd6db8d7b513306e08f44614
MD5 342679ba9b8ab95f48f801b25727e35f
BLAKE2b-256 ee6280a8ae2f3faaefd49a76da4aeb1f37050828c7e2a223acb06ef3e6d700c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 28826e9682575b056479a2cc0ff54bd974d52e3a5ff3c72f23eb7edfa5837a3e
MD5 763f900220345f190cca49363a08b852
BLAKE2b-256 7ed6e4359d8e0b40c2fdfc34f6fbec66c146fe935951148ce42b203e03a8af34

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b0556dafb0c393f0a40f292ae390a83de17c5be1b718f5a31862e709715ff7ee
MD5 25e90f86a4fea1bcfd2fc891db004513
BLAKE2b-256 15190396d0c88a0d8ce49b93830a680a60cd9422610fd1e8e5f97c3ae2be9c9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 032ccd176ad51e345f7dd6dbc7857f3d9b497cb0ea8a0a23f5064d451e8697bd
MD5 90cbb14097aa261f6ed8b52a7f41ee0a
BLAKE2b-256 fd951f937b9acd8ba427a52af5e9366f6dddfb8b09a4ecb8032f63cfba3bd325

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3a372ca89a73443506ab6e203973ebf329141a761d107b2a99893a83288e304e
MD5 39b7772f290f2c73220257d42b6fb071
BLAKE2b-256 d631cedf1ee97f7263def519075fbad122002bd08dda3c3947a4c031c8c5dd6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f736285fca3e51368ffb23913c9e5b6e8858cb66541e395dd639dc9f836d471
MD5 3507bd37d182638908c45fbd7a2bb236
BLAKE2b-256 ed82f6a700c3fb7b7f6a75b834f868c443bd202538b35f975cf407ea84a26073

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 876df9cec7f7602ca2180a6dcd0474971d3d9cda2edf58a6163840d0a1e756c1
MD5 c93cac33a5f69f2d143a7ba5637beb51
BLAKE2b-256 7a4e28a59e247647e82fa62c1fdf42a47f9c96cade68e7ab3ce330b25843ed47

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 35a09273a85531f3354890e231da9d2cb3ef4a599427c4bdf04caeebbed23a70
MD5 16fa7180e3a7e9cda9349f2cac9ade6b
BLAKE2b-256 19653a64f5d5ae54586e563df76eca023ae1aaa6148b7a322785d87cd6e53658

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 249d6dd98056af045f54e4060a31082848cdc71cfd68c5b8b460bf2a53c528d6
MD5 7ead5801c8be429e0804c0c1b3d549f1
BLAKE2b-256 02f460ff476e1bbc1aea3af78192df39de98a14c172b067f14509f479f9c4b6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c1aba456dc05a357da3b15ba6c8a346b32149557328eccbd109b796fff6809b0
MD5 63d88746d89e2d695bb942af4581ea73
BLAKE2b-256 d31ab8fd3e913c5da663fb23400986e39014b0f75a1beb3dc8630cbe17347fbc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c0256efbcd685ccd92e131f28ce75de88547dd373dec4a28e354c4971f594f34
MD5 9f555cf0de1c952d930a90220d7c579d
BLAKE2b-256 15126c1be59f10cdd200ae691ab6afa554fc06ba0a3970be3356f5cc7e64440f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3414ba6dd4bcd9b55633e06df5382ab0875e2696f19aaa984b65a40cd7ce7cfa
MD5 6c19fc195f145930b16f389da0aa74be
BLAKE2b-256 8c1987e61865f3baffbebeab4de86dbade17ab0e99cd04850db999cb3d75e1ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 929f99cfd73b627ec88c9d9f31fb29617275d22ea74100c7da3a74c8b832eeaf
MD5 9ec804884ecd556812146f8e2f54f6f8
BLAKE2b-256 54a3fb6f3033377c7d31d5e1c41081c64ef42b6eed5d21c3c3ef13b34813f890

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pylibsufr-0.1.6-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.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c7ff3cf6800fd6c1639e60b89597385b8ec2f40c9b5540e4eb8740e3006d85eb
MD5 9b1309df875761cd8b20292303d55a49
BLAKE2b-256 1154a8b5348c333f352feede4dad641fb65077a23c9bab64df195cbcfbd25a31

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp312-cp312-win32.whl.

File metadata

  • Download URL: pylibsufr-0.1.6-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.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4ef87a0177a219934f6dfc2b22e11bd6cd4184f0b35e70016ab0747aaf5752f9
MD5 266d5694f0a038b6f692dfe933c59d4e
BLAKE2b-256 1563c248a3687a458933755a7dc11658532d7677f1b6f07c4fe57190e7952cd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 23b0d6f42a4d33cca2d518ee52df73bbab577ed851bcd53d0ea04536a8d5628f
MD5 1e836530304635d57ff235c5e04aefc3
BLAKE2b-256 75dbfc505a6f480b97656f2dea775372ad2618ad1bea888262f32d5ea10d9e83

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dd62e3c60a3f299312ed4180eab7bdfb326f10f6801bbaa510e6328ad54d2f96
MD5 c28d2392da8082f82cff1d7ce62faeac
BLAKE2b-256 2ceeac7784b7bd81bb0c8dd2e61c9b1d5de9cc953c0cb92906cbc8686e49f9a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b882e777d1f108078d1102b40d6eda18b022c5e09ffeca36d25fc68c3c0d8a53
MD5 920c6a74e518f58d302447810af06124
BLAKE2b-256 782d0cb07352c4e7affe78c7fe07f1c7566318c250b58ec158ca40131bba506a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 22b385c674254b18effe44fdb656ef7f22f35db5abc941569f7abff467634dd0
MD5 ddfc4d7806dc90c1dfe6d514ae880a88
BLAKE2b-256 f3d79d23b09c6e882295ac7fd41cd2c73a9f0617bc6464e68683f35cf777474b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1db0457147aed74bd5ca75c052dd025d107afe66c5a0680aad2ea9ae3295eb14
MD5 61882d83de8cab6a0598d68c8dd89655
BLAKE2b-256 cc612581304d28945f3d8a820cf27441b82375088edb062d0d6785f3c2f41084

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ec67d310b86919129d2f936bbbc8dd35b24ff53c67a21505a057a35b5b7624bd
MD5 7ab25bfc2f538f2e57c406401e058cf8
BLAKE2b-256 c058fc6053ee85b8ba891681379aba421b143eb84f0019564a952bf7824ed805

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fb24cfa06ff764bd0d7215cfdde4b767266de24a6bbfd38963f3a1c300c243a1
MD5 48af4bad43090389a1b53f8d66bcec10
BLAKE2b-256 1a6ffda2b590789336aa029eb331a2a6f12b433e980ff344d9371c4d732448f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 289cc8bc9914ac500fec7ed4360f04cb5bf8fc99ab7af9942526d3b97c328306
MD5 8b8dc1342886c9bb90ac071d117ff808
BLAKE2b-256 4b684d1e71c1d82077d2eefb2eb9f90830302044d2dc1366eb6acf448203eaa1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1f39bb7797287a6aac0dcc352085a49602806a321e8b774d845ef8de45d3c097
MD5 686a1dc033758d7dcc4edf0bf478797b
BLAKE2b-256 07ca4d16b1f01f4b84884e36124294c67bb0cab96f350c905ad250e7ec807914

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9c40a71b9324a66cbd978afae1904b7c38476b7e854236a73b5f3e7c33b0ecc7
MD5 eb40d23e52e94f093354a7a487472513
BLAKE2b-256 65dab2ef7b32f85776de86d997afbf2f5a90a9c944d5f6537e37d9916f6afc79

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1e13f9d8feb053cf72697548404c1b81b96a4722c703de1b1af4d876a6c475c
MD5 54cfd6cbf716a08346c9c9cd0163dac1
BLAKE2b-256 5aefe9c6fbc3f07e2da71dc879d7112623d45db74107b94829156a6150b56126

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 be8b18d64ac4223c388263b53a9b9deda3f1a418ba6e5b4451d71dcddfc9abd2
MD5 c8467bc8c15ecbcac607a6006039c055
BLAKE2b-256 052cd99b312fe38d6536fec8d60b882e0ed6590c1a7e64e66b80c6555b9806e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pylibsufr-0.1.6-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.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f59a3ec6c7f69fc538de7777516bb0a84cea02b97c08c6f99a3578087d28b630
MD5 6f9c82508f857fac826184a736c829b7
BLAKE2b-256 d34ab4ac1cc4dd7fad6669b7dffa73892564b0c728ce14e11ea30d21cb954073

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp311-cp311-win32.whl.

File metadata

  • Download URL: pylibsufr-0.1.6-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.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6a592ba4db32058168ca11e62829d3d4449ae851937176953c45e1a970b31fb8
MD5 bf2cbdf1aaae3977bb39eef5745dad32
BLAKE2b-256 7fd9065d8db69a8de8f298314429be3ce9bebdecc8ed5df9ebe22b9db6017014

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 efaf4c5312d8649f534389fae0a8bbe447088d051bceb53c3c4dd25bae63cfc4
MD5 4acfc7a05a33111d794e21881eaf5cd6
BLAKE2b-256 2fd51983403016d30a36cfda351ce5995ea9e3ce81225439ea3995e077a39907

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c688a49b999dafbf77c2f4a3da2ecc013d9c84ea1fabec16fad61785774eda9f
MD5 cb7d74d9c469e811bc426d04e8803133
BLAKE2b-256 0caace08d275b0e6b3662ece5201697b1e28c4e44203ab627139bcf58f35ee00

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 04bc5883c76a875f4bfb8fc77b7a49c96eff14d4921c84bf81a24ab97343ceae
MD5 cf697156133500b30e55e0309c07c56a
BLAKE2b-256 22f1d64adf3ae0c4c5fcc89b9ea5774eaea9965489c0552093f5a38d19f1a2d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 633e39f9fb2c797faccb5160aea917ab7d080d05c93a457b2c5607b6a635fa03
MD5 f5f1b3ae083ae8d5f9fb734d91075f91
BLAKE2b-256 9d7782c28fb18cc2f541fa929ac376936114c6c0e8a3b545bce719105390aaa1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a07588f9866196ae7bf2025c8f7400f875b1aaec447cc301d8f96de420125f5
MD5 897e50bd890e1070a18cfe05a9789aba
BLAKE2b-256 e52fcb97c8bbf888719ea5021498dc7087b175c0f10b72e356d1c1e999470e5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f7864e53862e943384ad093c6ee80758cccdcb625fb031b493aef697ed6cc983
MD5 0e698704c5a6177448ec114261556889
BLAKE2b-256 f7bcf9ae4a65f191ba6cf12f3f4a98d063e254e2e52774a23238fc51f79e9430

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fa7abe167366eab4f2dae6e8cd5eb9d1bfec7fae4b4e01d159a0f6d325708afb
MD5 eec9b2c5e4335c022d861ad1b05216ee
BLAKE2b-256 6c5657e543d3b3f8823d2476a27255a8f0ab31da06a299d06525ecbf11892b4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b1a0747e7f8cc212e0faf649eee67472e95431a24edaafa5dcfddc6b9657d485
MD5 222c7df1562bb10d645fdd1c8087e0b5
BLAKE2b-256 b6ecf5f628ef1eef83b4482a1cfc74e4d65ed11044865a7a6faf725347c1115c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c70474e3b2e5c61fff721bd9265f890715191e783556f4a1b2adc2b960906c8e
MD5 0740b63aacedf035f1dfb9988fb7c5b1
BLAKE2b-256 11a82813cf14fb3165dc97b66f8ad5f0be1082494dd29a5a01d9b1a310b16f8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6fe07436bf365164a00e7947eddb907d916e6f9cd4f92b31e1188529fa823723
MD5 1fe78fdd71be75cd39c7f66b1c56f066
BLAKE2b-256 b549a44eb5334dc8460b66c77f3c753627f818728a9e1f8a608bcf5c1d4996c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 617a38465c67ecaf90623fbf47eef2adf1823a90b8a8015ab97d94354bf090a4
MD5 73fb0233d1d1586294c55ea835e5368b
BLAKE2b-256 ac331a5d8a21055da2e9d908c5e5d430f46a2f244f6497d2284839a25816a479

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ca45a7c0c7dce7c410259b8c2d81366da8573e7d7cd2eb1e7ff3d989ad5ea14f
MD5 d57fe1c2eea5b0337183f9dcb54a8627
BLAKE2b-256 fc6ccd00ae46f857d63ca4c302659b5066f6a1784846258bc9545dfdd455b9ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pylibsufr-0.1.6-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.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5fea997a9c1d70691d2439f9155e30ebb9f3114827119d11f8e79431c530e9ed
MD5 1a5f750e1715a8b93ecc7df801f2d908
BLAKE2b-256 ac089b7ec8747f7bdc2bcb5a5f095e9429f3a304e7657fa2140556b52090d73a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp310-cp310-win32.whl.

File metadata

  • Download URL: pylibsufr-0.1.6-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.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e4b43c897d2aacab347095a4b2bd5762c9a0ec5b3e84adbaf5c33b02d595cd61
MD5 95312f42b7638629fe9aff543682e367
BLAKE2b-256 99c47262c719d8936eb20baac96827d28d0ca2af70fa309975faa3aa01300780

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 69934ad455185af1053918ad80f01d1857cf25699af8d0bad7fa329faae97e6a
MD5 7b316182728ed20ce04ec2af1a596215
BLAKE2b-256 e1c590c4fc4c96ad9d9d04bb4abb6af5a6129a32839c44b37cc3eb16cb4826ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e73110918af71e75457f89914160604198fdaaf9c1af4d4ed0e8743529e2247d
MD5 7377fa8689203f5299f50010d5a4f201
BLAKE2b-256 25677ea489d8a65ad9006115373aefe371a2b9955b4a1864d014c8e92f56de72

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6a17320f42766019c9dc3021bca0ac18d2def1628d35d6a03637aaebdd555cf2
MD5 04664704518d1f8d23f5ea09f4ef7b94
BLAKE2b-256 c202cad3266207845d84f633d5198f04a922324d54de0aab55e8e5e0b8b59f49

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 087c9b9ea80bab9e96dd171b642802e9e7130b0ae0de511d5173ad7508d77462
MD5 3c6a61d7d99c0589888e2c4f5acc2615
BLAKE2b-256 4932dfeffd120d68d9027b0aa02cfbf4371b01a88b530c532438ba7177ce0f1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6afb9d4da11a2385740c6f85f1946a9d9e4f3d7941842f5396c98132b5df83d
MD5 da6b4efb1ea441146a2e4dbdc97d9a3f
BLAKE2b-256 dc4372400ff0e419faea0db29aa01031d50775a14b0bced4ace32cccf8d0582d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d2dfa5e80bb6088c88d1c6c43296353b338cfb6a9ce76d700d37057368e419d9
MD5 6ac309f3ffcee2bea0438cbb4f2528ac
BLAKE2b-256 6613885d01e010a050cf2af4a27294c1528ffc73af1250879023412c1efdc101

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0a37f05582b0409cf922c2efcfdb88449092db4ae0750328b006196e4190da01
MD5 4efa4bdede778853e2314a82f297e5af
BLAKE2b-256 fc5c22c6290d56eb1ef805c27e42942daba2b45ff7f37f8fb8870be703da4c46

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 28db5cc9a4173645d428d5ba46bda5ef5fc71fa968753b97ff51f592172d9d57
MD5 d963f4a9280b8a86c4a1b544e3f94e49
BLAKE2b-256 ae850e6c7cb12143cba97d7f3d6b901cb088073094d3128c23a1028356a2a615

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9e4cc217df62b912b7938c4b0cbe0519fc9c8bdb84e3978e53e70719dd3cb3ab
MD5 f026c5067b7fc63044bfbb85f12b52f5
BLAKE2b-256 92118918c9ec60b7a1e5a9dff80b6e1dbc74c13076fdba1d0f20731dd546d9f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7de361dd4412382a744c4de4cd5d9ec31aa80e27785b30f68165b2bfa9ebb0e6
MD5 cf80b6e213a4d3d10d0d24e6d1182739
BLAKE2b-256 b54fa964ea1fb7135d749865168e7a3b73b4a2e4d09fde567f55bfd64596b880

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pylibsufr-0.1.6-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.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 000026d214d0823d6bef3e4adb2943003908cc27f22ce65a69527ca5858e9f1c
MD5 9c17d763746cd1753453b9221adecd48
BLAKE2b-256 05b20d0bd8c9ad2dbcaa8b61447801db76394e6da27989ed95502bd1949f3327

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp39-cp39-win32.whl.

File metadata

  • Download URL: pylibsufr-0.1.6-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.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 848bb68d64f37d0430f4ba85f1b8aaeee59afd751b3347f84fa1c8d5fdd370e5
MD5 e3ae1a971ff23da1b489ac963150b27e
BLAKE2b-256 8f59b207f917ac3e5282f2fd2f3b1c7efb7967eacd87d5298aa688decc97f5ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca883934c9716258d49205fd0b485925ab371a8853e44a894496e9cab91f9a29
MD5 756651ff980e605d06c812e17cf9de8b
BLAKE2b-256 9edb9683775d1f6e4067d1e87e01d5aad29140162c87ef016a20a17c60b8263c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8b9a06882e824c1622f0915e1622ee7460fe54c303842c756fbbf4cd3628a815
MD5 154fbae3bfce1dbb2aac019a42943097
BLAKE2b-256 41b4ef79a8bc2b7353b939edd3e70dc182f5b2fcea5c0b1fce35245d4c5e5254

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 84ec5e28c9e024d2bca7397898b7e1a241d38f108230437a72a40b3c52e8fd54
MD5 f70b67f321397ceb6953dcc5d8628abc
BLAKE2b-256 51887009363207d8ffca4f0649906d845b17950b7f8edcf542cbba656566b3d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e71aa0f632d9a2f32beebd288830012ea131a0dd8ed1e13e72f5fb4b5fdd0c05
MD5 777f6865d8b7ca4aec0e856dfc6afea2
BLAKE2b-256 10d4ada54748cf2a2c53ca3d270e1d77d9516dcd74489b343b97a76fd45758b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a9e1f9ee9cbf63fa3a53ea18d8e1f9c3a2bb0ca6d41aad54ea36aaa34004d6d1
MD5 7aed680d932384750cd7874872df47d9
BLAKE2b-256 14b87208116a3bbb671fb77be22e4c3a236db8e38f9b7223a267a05469a59559

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 afa7b794c074a1e02b27be5bcc533c07a7d68c6fa4857bcb6e7ea0f7d1861769
MD5 c0b87fe1f7416978d99933bbce6e21cc
BLAKE2b-256 ed9093b513b708ef11cd2227522c46e7e9bc12dbf25cf0cd4b43f42c5209b864

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1ff58cc2cfddb8b7adac33a41f664b6cbe4f86d1b4ff090eb7b16b43a2892d01
MD5 2a676cf1b886b724ec080335dc48ea9b
BLAKE2b-256 04c4a4e1c7f68716d7ac13868e06adef76bc38c1f1999cb9873cd77ee94a6ee4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6e7ca92dedaeec34f1e04896b8dfd7be1d6be9a3fe323344de22ee83aaf2c709
MD5 747f0ce9801c6ddcd9a4a4b664cd4dc9
BLAKE2b-256 51f35801ba6e8dcff7b44f77848d7d6197a4be75fd773078c50753b68cc90deb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 71134f356e8528226a82602ad3af6f61c7c10775f885bdd8022d5d84c5a4007e
MD5 383e80fdcfb298610a1aaeb81ba88a88
BLAKE2b-256 f2d79b10221b2166731043143efb10c44023fbd02c8b62bda07c667610b49dbd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5de4af7b12c7833a2793eea83351a12b00d593fe276e664fcf61d2810498be7e
MD5 04124b2561dbd5ed6c377b4a97660f63
BLAKE2b-256 880257a9730e072c2f1ecc5b18f91cdd41cdf6377976119fe6928c4be45613cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pylibsufr-0.1.6-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8, 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.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 27749c86e16f147765f8ab776649efa293679a8ab8c0943a22bbe824da185ede
MD5 8d02181f0a65d59f05adb5299844165b
BLAKE2b-256 2c614e23c65627228fe591c67445dfce90042a45a3ebb0c83aacd977529535d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-cp38-cp38-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.6-cp38-cp38-win32.whl.

File metadata

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

File hashes

Hashes for pylibsufr-0.1.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 8cbd9069ecaafcf05ceb01c5ff55c4e6c869c953f1ced19bf3374554072e7ae9
MD5 06be42da33aca4b4058bcaf77d61172e
BLAKE2b-256 ed0c79847f5bf8e0d65beb3d12975c3c1c75e16b4d3d3f29d65febc155347ae0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-cp38-cp38-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.6-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 82a727f7690a94e4df72bfd8f878fac138622efdbc3ec152d4ef8c5f05fd47f3
MD5 449c0d0793878535eaf6e1f1dc4972f2
BLAKE2b-256 7259b6e07c18579287776dccded9c6e0cb83be6f9b99befd709e550241ccf2b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 299282f8ceb936e3cb53f3a0194cf8e0f5aa94b63ba96f34f2cc8ca988524653
MD5 4abd9f522de1517d117ca31bee35ce79
BLAKE2b-256 04c2ee51307ab5f74c78fb222d870e71eb33fd084e1f57a0b0022facaa14c8d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8712d3870969cb83b8bb408f88b3e62114204b9244fbf37d7c0f9aa89914ce34
MD5 79c6c7ab84c6e5250338375f1aa00296
BLAKE2b-256 74020ba444e0e6c592ff3937baef663707d7fd450982d61ca806ed3ec1b260ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dbd614ee4f540ebcf5b91da6577bdff91f0d78ef05135672e483309b69f8d429
MD5 eef48743e70d632e9af757a5bab04383
BLAKE2b-256 20c2cb6a3ea527c34c3e4decb8d8b27c7ebce2a75937ce75c92f7a232024fce7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ee8fee9cb756c46289d85d2fb76708aa42fc01ee4fc677066d2bc4aae44b0d0
MD5 52b17b3074456d7b20d3cec65e63f81b
BLAKE2b-256 d816bf22d31586b2f828008431cdeedc2ef1faf89a58617647ac9cb7818fb34a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ed6c071cf63d83457decdbbd5884fd92016ee611a36fe320f22532c2a1f31bed
MD5 1337768d256df5879e922da4f776b62d
BLAKE2b-256 f0d7c6d4c21e6d7b6fb248dbf8dc2832553a689367fd173188d2c5a93f95735f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ca42eac7047558dad1b75ef26f915f101b86bacdb24b15f0e10b0afbb356b73b
MD5 e8993b14780242eaba80a2b3e1c28b20
BLAKE2b-256 e20a69278b01470133855d87bb1eb64e45a1ba1f7cc64d72d0a1c1627e68f71b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c104204d404f56578edec9d1d3910c1ec9de5a8c2d317bbbb6b445056c7f950c
MD5 1167832b1bd6ceedad411017ffb1da11
BLAKE2b-256 600e9029cdb185a98422a6305f847afac4c9b3faed43d16ee9f7cb9695207109

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6f5fec3ebc0a6aacec7ed60825bfa6c1a742645e27a7f7397a0d196d4f16d446
MD5 977415605c5c18d47f54e846ae50451f
BLAKE2b-256 9775a26a6b9451429c849dfa85c441a0d911a166ce6d5f603027beefb5421cab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pylibsufr-0.1.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 807cc34a07923ba53cc0e88edbf4e5f7feb164984c058222f3029e434039e273
MD5 31a22f685932c155d733c81d71afb983
BLAKE2b-256 b90ac4701d9e43472b4ffef3224294b8fd91359aba6eda1ddb42039ef53ea573

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibsufr-0.1.6-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