Skip to main content

Bindings for MLA Archive manipulation

Project description

MLA Python Bindings

Python bindings for the MLA (Multi-Layer Archive) format, enabling secure, compressed, and signed archives from Python.

Installation

Install from PyPI:

pip install mla-archive

Or build from source:

Install maturin:
maturin is a tool for building and publishing Rust-based Python packages.
You can install it via pipx:

pipx install maturin

Build the Python wheel:

maturin build --release

This creates a .whl file in the target/wheels/ directory.

(Alternative) Install directly into a Python virtual environment:

python -m venv .venv
source .venv/bin/activate
maturin develop

This builds and installs the package for development.

Usage Example

import mla

def main() -> None:
    # --- Writing ---
    config: mla.WriterConfig = mla.WriterConfig.without_encryption_without_signature()
    with mla.MLAWriter("example.mla", config) as archive:
        archive[mla.EntryName("hello.txt")] = b"Hello, MLA!"
        archive[mla.EntryName("data.bin")] = b"\x00\x01\x02"
    print("Archive written: example.mla")

    # --- Reading ---
    sig_cfg: mla.SignatureConfig = mla.SignatureConfig.without_signature_verification()
    config: mla.ReaderConfig = mla.ReaderConfig.without_encryption(sig_cfg)
    with mla.MLAReader("example.mla", config) as archive:
        for name in archive.keys():
            # name is of type EntryName
            print(f"{name.raw_content_to_escaped_string()}: {archive[name].decode('utf-8')}")

if __name__ == "__main__":
    main()

Features

  • Create and extract MLA archives from Python
  • Support for compression, encryption, and signatures (if enabled in the archive)
  • Simple dictionary-like API for file access
  • Compatible with archives created by the Rust mlar CLI

API

  • mla.MLAReader(path, config) — Open an archive for reading
  • mla.MLAWriter(path, config) — Open an archive for writing
  • archive[name] = data — Add a file (write mode)
  • archive[name] — Read a file (read mode)
  • archive.finalize() — Finalize and close the archive (write mode)
  • Iteration: for name in archive: ...

See tests for more usage examples.

Type stub files

The MLA Python bindings include type stub files (.pyi) to provide static type information for tools like mypy, IDEs, and linters.

  • The bindings expose a native extension module mla.mla along with the top-level mla package.
  • To support static analysis, there are stub files both for the top-level package (mla/__init__.pyi) and the native submodule (mla/mla.pyi).
  • These stubs allow type checkers to understand the full API surface, since compiled native modules lack introspectable Python signatures.
  • When developing or modifying the bindings, ensure all .pyi files are kept alongside their respective Python or compiled modules so tools can locate them.
  • To verify your stubs correctly match the runtime API (with mypy as an example), use:
python3 -m mypy.stubtest mla

Testing

Run the test suite with:

pytest

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

mla_archive-0.6.2rc0.tar.gz (203.5 kB view details)

Uploaded Source

Built Distributions

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

mla_archive-0.6.2rc0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

mla_archive-0.6.2rc0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (1.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

mla_archive-0.6.2rc0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

mla_archive-0.6.2rc0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

mla_archive-0.6.2rc0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

mla_archive-0.6.2rc0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

mla_archive-0.6.2rc0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

mla_archive-0.6.2rc0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

mla_archive-0.6.2rc0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

mla_archive-0.6.2rc0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

mla_archive-0.6.2rc0-cp314-cp314t-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

mla_archive-0.6.2rc0-cp314-cp314t-musllinux_1_2_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

mla_archive-0.6.2rc0-cp314-cp314t-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

mla_archive-0.6.2rc0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

mla_archive-0.6.2rc0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

mla_archive-0.6.2rc0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

mla_archive-0.6.2rc0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

mla_archive-0.6.2rc0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

mla_archive-0.6.2rc0-cp314-cp314-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.14Windows x86-64

mla_archive-0.6.2rc0-cp314-cp314-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

mla_archive-0.6.2rc0-cp314-cp314-musllinux_1_2_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

mla_archive-0.6.2rc0-cp314-cp314-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

mla_archive-0.6.2rc0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

mla_archive-0.6.2rc0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

mla_archive-0.6.2rc0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

mla_archive-0.6.2rc0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

mla_archive-0.6.2rc0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

mla_archive-0.6.2rc0-cp314-cp314-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

mla_archive-0.6.2rc0-cp313-cp313-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.13Windows x86-64

mla_archive-0.6.2rc0-cp313-cp313-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

mla_archive-0.6.2rc0-cp313-cp313-musllinux_1_2_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

mla_archive-0.6.2rc0-cp313-cp313-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

mla_archive-0.6.2rc0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

mla_archive-0.6.2rc0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

mla_archive-0.6.2rc0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

mla_archive-0.6.2rc0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

mla_archive-0.6.2rc0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

mla_archive-0.6.2rc0-cp313-cp313-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mla_archive-0.6.2rc0-cp312-cp312-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.12Windows x86-64

mla_archive-0.6.2rc0-cp312-cp312-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

mla_archive-0.6.2rc0-cp312-cp312-musllinux_1_2_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

mla_archive-0.6.2rc0-cp312-cp312-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

mla_archive-0.6.2rc0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mla_archive-0.6.2rc0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

mla_archive-0.6.2rc0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

mla_archive-0.6.2rc0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

mla_archive-0.6.2rc0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

mla_archive-0.6.2rc0-cp312-cp312-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mla_archive-0.6.2rc0-cp311-cp311-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.11Windows x86-64

mla_archive-0.6.2rc0-cp311-cp311-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

mla_archive-0.6.2rc0-cp311-cp311-musllinux_1_2_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

mla_archive-0.6.2rc0-cp311-cp311-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

mla_archive-0.6.2rc0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mla_archive-0.6.2rc0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

mla_archive-0.6.2rc0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

mla_archive-0.6.2rc0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

mla_archive-0.6.2rc0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

mla_archive-0.6.2rc0-cp311-cp311-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

Details for the file mla_archive-0.6.2rc0.tar.gz.

File metadata

  • Download URL: mla_archive-0.6.2rc0.tar.gz
  • Upload date:
  • Size: 203.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for mla_archive-0.6.2rc0.tar.gz
Algorithm Hash digest
SHA256 097cdddd4587988a11753a5a49d878916c3647679416e8b2968cc79ad4fee9ca
MD5 1f3f527eb3bfa8e009bd6836f3d5efe1
BLAKE2b-256 944dc9b381db2475cb52f1cd3e409835ab1d646527b2129c69141ee333424aed

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0.tar.gz:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0a03cc8db7095d9c470c9891f3d4e587cad8e0c4b52bebfcbadfb8ef6d6502ba
MD5 9f1bee7ca679c67423f5cb2994454543
BLAKE2b-256 d12bc72f517635a4963e93df72de1a10768d4e46a5b927fa48cf0dce05655472

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c9715c432113fb13c1c5dd6f30fd9c0c1c5d3d5ed94b63e4725945ed935f8136
MD5 807bddfb7ebf504b0231b66612754cd8
BLAKE2b-256 019c9d26dc493cb96c5d1f0285f8270353a12815fcf45988bbaf10a9e97550b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fd82ae3bae662fcbaa579520ff51c819ba74ac94208c08afffc680b426cfb314
MD5 efa212e52793b61d6e2107b2d795b677
BLAKE2b-256 8b3f50d49c368e213c14b8df5aa618592c073f9cb1963163716222c4780cd5ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c47c769d395dedcd7011e154c96fb3ad8e44e2ab7dba42f2bec7970e0a503b2
MD5 5b2c9606db38713b34d241e54fc49c32
BLAKE2b-256 66b0f20e7d853cdc3be3b7c214453b360b1a49fecf88a099c9dde4560ea2e66e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9cd57412330e9476fddb7d63b2888a0097424baecb650e50aa08fa8dd4c1d00a
MD5 edd0fb8a433ba0cff011e01c51f21a63
BLAKE2b-256 8dcaa88785878510e852d2ad6921ef2810f19e577ca2a161cd571a11455956dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3126fc42cc374ed12bf03f1c29c66b792db5472cf4fe90870e37e814723f1b58
MD5 3fc5dbb047644c43c73d4c5ac5688d67
BLAKE2b-256 54b889f141dde9b731928e66c937d1ca3ee6b53822bd523e0ae397ebc006e32f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 23e4e3b107c76e3c43e122409b456c57e4aff119e822d00cc7052f58322039cf
MD5 0eec3931923b32b87e389a3d8bcdb222
BLAKE2b-256 8e333913202d92c5207961efacd0cca03dcdf390756bfabb53f01a8a42a2448e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d70a8b2b817fc43700f7bb3daaeaaecd030429c0451408db80b005b6fb714c51
MD5 38b41206800171aa0e0b9190381c95b1
BLAKE2b-256 792b0355c6f3a9d392fd8ca23e7609f8718f60095954c6edffaddb2c5a252bbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c86a16b05ff2c04deaa13a9d4282f77acdb6504e4889b7fc8cbf2cdf53d041b7
MD5 9b8fc7c61878b01bec54ad40048adf91
BLAKE2b-256 15fae5116b4578cffcf7d4f5106c8a5f683d608eefff0ca161719c40e40058d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 531bfae400435bbb38c1204addff918420516850c84f6187fd082f49eab73aa2
MD5 fd8e4e073bf2c5b78806319d9b07820c
BLAKE2b-256 a8dcf1c699e5a5c5494d5bab49044f4e535ae8578904d1f9a0997570268caaab

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 87de3b3596340f757e77aae8a82fee05418db74b0327f565d1fa66548b67a243
MD5 2eb2b6465e622bf732397c6381d8facf
BLAKE2b-256 b8ae1bb80d5b58a41ed87ab99b40aaa36066437ba6fb33b4d10ecff0471b7495

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 62c07fa4068fd4d500dbddfa7a6cef459effe1545118afa4626bdc86d24cb461
MD5 3e9a9a5037b9cb48076c337432343451
BLAKE2b-256 4bd49acc0bd5c6717ca50ea17b1d2c5e191ef91856a79450bd7119ba31e15545

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d3c3825a079e2b4236328147a45df4bdd5819c28cad0c87fe61e0cdfb8072dd2
MD5 5cb5640e40d183c93a3c05b6e639688f
BLAKE2b-256 e6bcbb5884b27a9ed28c08d479634471ead0688cb709e661de2c3a27eab5138a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 073c95c49558623203bf5c4d0e84d79798fc5581dc619351ad6d49d68c306502
MD5 698ec1af37aa80ce1d8169669e9b0523
BLAKE2b-256 24ae4e775472536e1b83e6f433e3a22a7771985fea80245ae82521cd65d8f70a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4069e32e9e292883aaecb9eb80a3ff432fddd11b26eede73c917f09cd6f0c375
MD5 ecccfe9cdad1a3017e76c45139793e75
BLAKE2b-256 a988165c9e81f42b786ae6e0a95dc7a44e047b9128fd75b150c771bb05a375f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fe9c32bacb31d89effbcc43552254a6108980c42d4bb5065bac40177dd164ab5
MD5 987fff6467602a30f894a25e2eaa2ea9
BLAKE2b-256 507c7e67a1baa0ccc49c13e6f47d6d66f0f4f7bfd670b50c4d7d7ffd55efc932

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 af663aa27cd6932352381a12d313044cac10989d13822bdb8ca4da504dfd09da
MD5 e993bb85ee5306cba09ae03422443def
BLAKE2b-256 529e74f15a915ba11c8070ad4809f1daaa6b00950f430b96887f16974f85191d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d5819531eadf04c5c97d19a4894f05c870da64be8c43ce08631bbd76ac6d45a
MD5 f58025ef86f4f60342a3792dafb401ce
BLAKE2b-256 e175a86143813280fa91856992eb0440bffb6721471a65b6a2f40385cdc04708

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d33372088659d4bcce2af899cbd3c92027d93a1386cfa3863a78145593729fde
MD5 9667261dbeebe16e06429246452bfa09
BLAKE2b-256 2043797b220d0e1105491545c36870b2d123f0eceaecdaf1c7c81adb6c0b3f08

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp314-cp314-win_amd64.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ee00db49f1c6122879d7c293e240748a376f97b6b1ff600058fb2f832d6b65e
MD5 1f588abf47c37106fb65efaef2492c20
BLAKE2b-256 c23077ba5feaf9bb3082fbe7adca716e6c45ce8763d9611702f60a15c6f8ca05

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b99dc0c5100fb04f2b550d0e253b9992071a5c36057d1f1e61ce67567e3ee726
MD5 cf5e865223cd693a92d1f346695e9fd0
BLAKE2b-256 0305c312f7998127474cb4ed3ac743b7b4ccef997c1739ba57c6875ece22c833

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 64fa3fc9f76cca3c617fd9555fbab77b6351cf8e724c5ecaa865cd6f5e67f1ba
MD5 e1f3ebeb7f1171212d276c8c83131e37
BLAKE2b-256 ef986fd82150e71625aa5b20907219f93c2cb4e98dd7c8fe46706c6e3d488a3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 846ccdb1d066a64684e07d5b89e8af5669df969af63e336c52a024a4c109ed82
MD5 bd645e98a1d3f25f432003e914bbdd5d
BLAKE2b-256 68a0ffa4604e4037326a9a5da7b3de0861fa0f37af277c0d216d37d6953523d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c768e6e3b760eb68f49b60c94e1e9cbbe38b7cfd48478f4ff66de10078ccf148
MD5 f2db0f379cc4eaf58893933604e82779
BLAKE2b-256 5778c0c06f6f909cbc069bad62ae1b2074f396bf0327cc48e08f8c81d778fde3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 de33e739469ce492faadb41ca072c468eebeb72c42d957d713a75ef463b635c5
MD5 fa8d4e626348970b011d020fca9b2b6b
BLAKE2b-256 c9e1c7505c6e7cbb4ba23500781ad14a8b83fdb22bfca04ace4be3aefcb7bc7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 06ee4dbc9de0b1df5491503d76c9452aa2b8b9b40b4b9c3a4faebb6fd487b3f2
MD5 5e962b1140e500aa17e7543febd2ed2a
BLAKE2b-256 6644b72fd08ea0017f1ff73937aebd044df5aa377400d67dc42534162b95e37a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 710f67c719b87267c840300cc5c7e708a36683e2d4b6141021993c138f922279
MD5 f56e0e66bf11fa8f53d25e65e370df33
BLAKE2b-256 ec9a1cddff6282289b53d3ada44fdfae23ca95f38fefa504894e278cd606e53c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a92ddf587be8f59bba33467ba0691b1f9385fe9249877d49620b29cfcd1bbca
MD5 23d8ae26dd09bbbe685728de81425c28
BLAKE2b-256 503c0f0cc501ebff74fdc1a80fecbc015df64e034b75d87d13d4176ae1d7e393

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ce11595c9aa3d0fbd24b196ecdba4aa4bcc91c24cbbf512e835da72357fcac82
MD5 64b98221abb2be9afa9fe81503416609
BLAKE2b-256 7512d17a574c67cc6297dfe2f2461ea5c1401f7cc8be246766038d85cd0d9192

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp313-cp313-win_amd64.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ad5c7e8174a762015d9643ce63143a5348528e600ebf3d3d1a8a726c05e9a40
MD5 562ebda2e8b7ec1e5ed0952d2db10bac
BLAKE2b-256 92ce7636932b852b347785fd9cdf626b6fa02ff69e74808d48319ae7fc5fe1b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a46b43e4135fa704738289f898a4f2189cbbe487a66244c1215424a2cd4c03f5
MD5 f3c8b6f2ffa69158176adb98b5323c2d
BLAKE2b-256 ce0cd70d63ebcde80d464a307fdbacf884027db0918d0166b0ffd77c14fe2b20

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3e32f964e53a5f10f142a8829532f35f4836ad026ec8af0d530134386c3be0b9
MD5 39c4117640e887098aedda410d24ef92
BLAKE2b-256 d909bc8a4275cacf4a2ec743930eb8c1b585b3cd8af9bff248d6776a2f02b2f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3fa80c62d5a0c72b3eeea7ee05bdad3d0a641696136b5d637a0695b007b1d32e
MD5 164a9dd0e2d8f7fe8be0abd5169a14f6
BLAKE2b-256 1d558be66d3477e83f572f5742ee6b2b7f8ebf1a21dd3a19752eb9f5ea40ccde

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 400aa6dbf7e61f99bd23c9d2b2b033d7c9868bf3ac1d9fef1124511d64a30986
MD5 433a1c62b03de0195cb3c7698e235057
BLAKE2b-256 ed034ceb552da999a387ea8e80216f76dab94bcec7c017a863f3666b4489e43b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 12f93e64d620700d3fcda64ef4bd0fd48aa3a9b13602f976a344c3d1d57cecb1
MD5 813feddf437f5dd3ab1e4aadd49cda8c
BLAKE2b-256 298af355dbd16a988868d5bc4b17d398e474acd1b9e0f6754f42aafeb777cf96

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 747921f9e0316f198f6043b1cb170e5fa636b5c0f2e5043b15129f0c3f44d09c
MD5 e2ab75a697fd77d41a72382f9e0b77af
BLAKE2b-256 c03212b85e382df10b08238ac5a879a7b93268e981449774f0b3b098f9665e50

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 afa55cb957d2862b6ba240df6fe88c6a3b2723d36384f6d82c1d597892bd2285
MD5 c5f12ef2189c4aa0fc6e18b87ad3f670
BLAKE2b-256 53a8f5a96517ca1e5c7edec8ebe785d1c9166acc93390e5414874eb6f7df3f67

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7eb570c5bae402b8bf1d79edf686959f2abfeaf56127b946902939b8560fc52d
MD5 8043352230d12a6b135bf792446f34e1
BLAKE2b-256 28acf6359a029325143660a9c05fae720f1f3e757004947e41495cafaf6342eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5a1fc6d66eb992f376329fdf133e63e40be99e5738348cfa57c49cf61318e978
MD5 4d3d6e27454a687f99f9d4208ce068d0
BLAKE2b-256 3c2c7d33c5bd407556f8753ad9ec9014d0f7da7b379b1cda6b5f68b3c88cc387

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp312-cp312-win_amd64.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff5fcd04029bc7031115752738cd98fd06b639cb57545325c7981a71bfb8f9e4
MD5 0f89ca94bff62de28c949f9b7b4a2a67
BLAKE2b-256 bb8b252f2e7c54f1e4789703b19b4ec9d199951024385d572d82a11e6439d920

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 204c082214d10b0074d5d390d6b12bd5d89ae94a5e0a6a26a8d04e2ce5627e9a
MD5 d015db8ab4f405191562fd6c83261a93
BLAKE2b-256 ebf49ae4626071177d08093b5929b8e7ecb3522a1a1040c499b37b458536fdd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a0912a83ff1dbb1ea254edf784eae2d95fd7b866384b87db2de758f17819f4d8
MD5 3becc2ed156037d88f993cda66608668
BLAKE2b-256 4e6fe096ac99e5ea7f6b2045de270a09df4c8685764189f02f0b8a777eb982d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 61bdd387c16eabca82c3f50c1e0a89bcebb7ab33f8ea2bbbf7342cf58130dd1d
MD5 6537414e831dfdaea5e31fb84d5be601
BLAKE2b-256 26105e34d013bbc3d996f8b0c8e50759cea70a23fefefa3f72e30fe17bd7f062

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b5abb816da38802918d9b70781727622acfa85bd68ac7b2a5cc9a73dc5325327
MD5 c880b62a0b5b61742f1abdb46abd9060
BLAKE2b-256 2c6e8f0a321398189351fb2f893554f557768480f4e17591a88d5d117abebd4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 974da014453a03823e8ec8119d66bc73ca428cb518c58796418e982e400ccf27
MD5 e92275dc5f5052cb6fad5e026c742630
BLAKE2b-256 fac4e18e8b5dc671154cce22494b79d687e3bd210fe334914163ca5866e04a7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4b29753cddc3a2e172d97b5117c8aac4669295d08c65d6fd73f5350fd1bcbedd
MD5 224b1a4f34b4aea9661f322aefe9c9a8
BLAKE2b-256 0185708f3ecdc2b71c7d49e0facd866d2dc2e469457ae3cfadf85109f72aedde

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c412d73f51e5afae72d04570d973910ab633bcfca7b6b2d715fcc1738eec0d9f
MD5 28b843d694c14922700b077d1aa388e7
BLAKE2b-256 e5824464b03cd3027a5e26e591002a241d1e9e87d6e8487289b7df4fff8bcfc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b05069a8debfa34872dda5241535078e7488a061a902fc7a2061d3b2aee65ec
MD5 276d76b041a8d83e5573a622039bce9d
BLAKE2b-256 afafef5c32da1c61ae43ea35cf36afe586359707abd3f5f15be79b31d1aca659

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cbb4af392d2153e82614712d2e302fd3e8bf8266021a4a6275f269e301d54a03
MD5 07a40a071d17bc06cbe10d7a6e70e972
BLAKE2b-256 fc2b85ad2b1947be324185752ef3eb819ddb9b4530f533616b20d1a8ee723d64

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp311-cp311-win_amd64.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 11fb869bdb602705af9514954077264dad0b6dc1a9fd70c111187118e7ba20db
MD5 2b5bdf0a93c4f821df400d3e7b6d8bbc
BLAKE2b-256 8a89926e5e7899849a869bd4eb9f9729c42dedf55cdfbf504dfd2243c703e75c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1ea67e0df45407bc27357994d5201f34981fcd36dc7f4edffda256da0c79691c
MD5 56c52b9b9cde81ca3dc49daa78b1722c
BLAKE2b-256 237563859d6a0e9c6e15a5bec04105c3162631cd906f315cc93ddfcf95821386

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1cd0132c47dd8c70aaf6b65dfde21cbb4455bab90292ef0a15198b054c683a9b
MD5 09774bd6e6a2f8ba5a5d36cbf6c4e815
BLAKE2b-256 01e1fe07449cf113238873b9d076354358502e2782aeb3c64f8396ef61cb7bf5

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eee52acc31147fbe5d3c4e07abe4b134dbc101c11ffafcbb9520c1cbd36b2681
MD5 cab58229d9cd50162c3424f474692b9e
BLAKE2b-256 5abd06e4911a1f4fd5510d8f1b7c8864fdbb36820726345693f62850928d30cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 932eac7b9ae5553bbced43daa67852d9fbfe34be16b25bcd94a3e77df5edd057
MD5 0aeb91f6d89eeed5cb22a9cf3f38ad62
BLAKE2b-256 b5356a1f103ae7d08413bb5a62bca23fab60670223057c0e7316e8e42be6d2d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4da898152026aee3c66b31fbe0febae04bb3970520d1feaf10bab0c3d304dd74
MD5 d939845003afc4629e4521de99840713
BLAKE2b-256 ef515cda2263bf2902d181057d1cdc2be6455c464219eb40ed63e818a0b997a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e0cbe313964f2db803f9caf2fde4ca1eab036651a90978b5396c1f5d5d0a2309
MD5 3f24d4e108cd7e51f6231804f1afb267
BLAKE2b-256 0b44480d8f9e4e77ddaeb77151070eca6c80375f3c8f4ee5d7e46adccf60517d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8f2ca202f72b8a87c19929af4b5decfeb48d9824f94ac51a9a297d4b9ecde50e
MD5 77b9f37ae483adde7d2efe1504497fc5
BLAKE2b-256 919058e9eb14916ad727035df1b443d9ed43892fe43ad554caf4ebd116dff927

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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

File details

Details for the file mla_archive-0.6.2rc0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2rc0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d0c4750a7c9ed02cab72253d7e5b831763bb6420c671a668488f6566b73e749b
MD5 f2a696308eca4f8afebf1ce5729e8c62
BLAKE2b-256 704345cb011f621ffe892f5331b423df10076af48463879e120cffdb26f30316

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2rc0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: py-bindings.yml on ANSSI-FR/MLA

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