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.2.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.2-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.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (1.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

mla_archive-0.6.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-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.2-cp314-cp314t-musllinux_1_2_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

mla_archive-0.6.2-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.2-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.2-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.2-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.2-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.2-cp314-cp314-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.14Windows x86-64

mla_archive-0.6.2-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.2-cp314-cp314-musllinux_1_2_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

mla_archive-0.6.2-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.2-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.2-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.2-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.2-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.2-cp314-cp314-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

mla_archive-0.6.2-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.2-cp313-cp313-musllinux_1_2_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

mla_archive-0.6.2-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.2-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.2-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.2-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.2-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.2-cp313-cp313-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

mla_archive-0.6.2-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.2-cp312-cp312-musllinux_1_2_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

mla_archive-0.6.2-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.2-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.2-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.2-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.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

mla_archive-0.6.2-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.2-cp311-cp311-musllinux_1_2_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

mla_archive-0.6.2-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.2-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.2-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.2-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.2-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.2-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.2.tar.gz.

File metadata

  • Download URL: mla_archive-0.6.2.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.2.tar.gz
Algorithm Hash digest
SHA256 67ac7c4d6537b57dfac88628825226659ec0da6187587f8695c6bbbb48b01da7
MD5 742d49f10913d3d74f922eb980d1a1c3
BLAKE2b-256 6473d129e0cfb47f1a7ec7cccef57cfc425fb55e3078e2ac773f658fb834a92d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2.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.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 19a0103d4379c692ab58812ca32823b13e28438ad8f8532db2822d00b26b2e1c
MD5 5dbbc8dc49850916e38d0257f2a9fbc1
BLAKE2b-256 13e852e8aa45651c585d8eeb1dff7f8cc6411293d13d3ee419eeab62c33e04f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 398ad17e11269f6e716f3f7c2b1ca5c44579ce23af5006d29ac61de3fc1934bb
MD5 0b6397a5fa56606fca018a5299cde0bd
BLAKE2b-256 6400cb3c8cfe0dd0067da6c7b5e6eb8df902153889c405ec1b2b7a99c3ce1fea

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 40693cef1de184221b1669696e74919a42cfba1c15581a36e5d129730ad3c992
MD5 7bd1521fe51dc8b7b1104598737cc8bf
BLAKE2b-256 b0ef16912c840a514b0baf163e670edb97c635205d8df64765217a7c941a4b27

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a3d023fed72594cd4584bc0fda1dab6d438c91d7b470a47aca54e970e8853a76
MD5 d0012a3fd6abd26be6d31600a7a4aff1
BLAKE2b-256 0da0887d5641fbf2eb46630cbcd0d77e18527bd383a49507dc8cf49ec9fd10fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9f63ba06b84eed857ac7c113d13c80ad821c32cc88c490e425e11c46d7cd90fd
MD5 e9819824718c82d773fce4588aa86d50
BLAKE2b-256 e0d85078ceff957bfc5dc50d9d8ac18aa21ff7809238cacee3ca79bc5be7b2d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3bc2bdd9fe40a5a93a411ced4f2c6d547532789708278ef0b8c1ab08270802d0
MD5 6bbbb79218816430f00848bff4671f4d
BLAKE2b-256 93860265761748b263716a5ce830b6803c4395967e3d8a5b4cc29f3b05ae3a20

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bf3a3ca182bfdc8ecb66d2852d08e623435b7c1acd54dd0444f37e8d1be38210
MD5 af560c9a9e266ef370424f27d5d155b8
BLAKE2b-256 5e4176dc696ac5435e91e9d2f47d72c8040de5d66b5197a6b9f618894f3ffc87

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b059305bcb2fccae649368c6d3617640b87f3bd8c53392d4513d5a6139dbf8b5
MD5 462d13c88ddeb5e12b4653b1d586e5ea
BLAKE2b-256 d661a06391830c2d4ff27037328cef1d92e174613bdb03dc7fbf47a59b5d4105

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a968110e00f96fc728d243e9362d1c722c85c2156c2e019f7d72aac24abd5cd3
MD5 9b0f186702adc6933f949b1779b43082
BLAKE2b-256 46a27ff78a7ac67e2914a95718f66530f59db1392cc3a59bb3fbf96ec219da28

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1942ed6209730c806ce6980dd333688110b65f64eb91b3cdb483d32d43ab731b
MD5 0c8e5c000e4e8887d8fef540f2a64fee
BLAKE2b-256 d24ee9c2fe2d4e69d13729f1a7d0bc5c8bcbe627023421a94f54d69313c05786

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c58d357c7543872f79225dbdd67fdc335ed72efa2163037a309ad8ba50100910
MD5 07738bb69d1323e4abe48ee292a1c3a1
BLAKE2b-256 be71555e7c5efed33a3e27accbb64ebe5e5f8462028a08c5dbe7a6a9ee8c83ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1b4cf32b4a365bcf407c3649a363ea94fafbb135f7409b8b35ef99459fc1a07d
MD5 2e7d2f7da71ebb86eab43b92f957754b
BLAKE2b-256 88ab0eb8c0759102fd22aa49671b66fc73e823b5a4fa7a51d9fb93fffc2c9df4

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2781eed99ad58bfb1fb0b60f110f0c5d586c77f541efad31891804bd21726173
MD5 e625f27792b2df114f3b20fd1f40ef27
BLAKE2b-256 1fef751df7796fd10736400d28f3305e1ce53d2b164799d5215b995093cd8316

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b06e8981322ee6f6d95016ed0da5b47160b01aca3e36caedde191da3d2e6501a
MD5 c1f639967c5dc3fb4effe657e92451e9
BLAKE2b-256 2afd0d9305627bd68876de6edcaca7dcc4aa534464958393d62e50b020e1c0b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e6b04faa19b1390ee1511f615f00d2dac6649884157eb85f1664fc7a40e6e636
MD5 3f41f8b498d9aeedbfb99ee3b386789e
BLAKE2b-256 3df3fecb198d02bf7c5a195dcc08ccda72fdd19a1fe41baaceee6638c344fa63

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0bb56797b7bffe83e55ca05c108b3e433c4b42a682daeb5f02b7aef02237b05b
MD5 aed3b566f270928ebcb063424f3e619a
BLAKE2b-256 69669010d118cee0a786fcfbfefa9f81a031064b7c6e40ca3a9c7da71a136b24

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 662e2f3fdbc389065f2c905dc55f8f8abf521c8c2ed4687ba3bd6b2c5ee75796
MD5 66a0f1624d9148cac1245a7c1b5725ad
BLAKE2b-256 25fcfbfdb3720ac28fd0951481eebdbc66e05828183e42efdf90c8cc648bc65e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9a52ba98c8b97d853175fca8785eab004dacbdff991118746a11750da4755574
MD5 23e82a6d3eaf15b3aa0b8bab5052631a
BLAKE2b-256 431c3df90d78b96374cbfa1ab105723abc17993e03ba6b513e17f843e9b03b19

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4a3280b318d350289a9abc297d95eac44e2ad2224ed19ac52cefd126ce988c96
MD5 653906cdc9a2007f03efd729387c59f8
BLAKE2b-256 17ebf07f07d481509c315bb1fb6095f3ee864d85b73b52edfbf36a042e803c47

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f6f493cb2b2a915feb3b9ffe7df417a527aca458125e023e5ef9787c0466171e
MD5 a0470d44f2b8e8a98ca4d852e00f02e1
BLAKE2b-256 2e63623a3c1c1d8eacb86943cce98486f99879165b24d9e00bc0b8bf05f47282

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6821621ef5939dcaa28cdb0f5bb4fe3b722bada0ca7ea1e5517def053e08a59b
MD5 73ff59fd5ab6cc6e025d7281aeb6621c
BLAKE2b-256 f3e1d3017e98838ab510112526801c4c82012cefbeae4d0ff03007fc462dfcec

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0f6603ef3ba7bd094eae71ec0b1978f08858ef7e7cfb3c947f24e402ed78030b
MD5 d09c272e3e5a891f463549b15cc82e9c
BLAKE2b-256 166cc154da4e8810c56bd0a1418c97ab5eb0d0e974163ee1493a6368c90a823f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5232fdef0f643ef533cb858478efa30215f2cfba367d3ae3d173bd25c1c1e97e
MD5 e409a6b120937e33a5a0a9300205d6a8
BLAKE2b-256 be06e20afe79627ee963ed92a383757befc3da985af871c1753fa0c893735e3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 025c64c97016fcc3e1b36b0b6c08d9d154279cee360036a3d85738097b2dad25
MD5 d067919a25b34c1a8f4ab1769e7e9e00
BLAKE2b-256 4ae0df710d31e4434f6c26842a8ef1912fd3b2a32e98062d6ee48b249f7d1d10

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2de245a0071528eed39940d2cb439c8bc6569daabe1ec8141996ace656684dec
MD5 587be61f583b4e63fe2ed6e27c974b54
BLAKE2b-256 16a4a08e52b1c90c9c8b228f6a646e31c583180f64bfa90ba67385e2ada6e9d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 794495afa99cf2f31bf20c30efa508d321d2d33fcefe91d19f8cb403a0440e32
MD5 454f63189ca03e7945a310cfd733a102
BLAKE2b-256 3abe72618beb0d6bff7b676fd4c2dfb8d925ef39a67d4d6e6b4e60a0deb54fa7

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 072b441c9990568f1ca3f28ffa882d9a1d86227637f0dd0b68cd4e69b5601a0d
MD5 d150c82be7557ae038ad25f20ee3e820
BLAKE2b-256 6be83926f50e1956dc56dcf57d352ed739cda9653c08cee2fa5c74089e8ac11b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2ca903105f81900ee628b803603299c40919fe30dd4c4f4cee9dd1927aca552f
MD5 698afd274643dc3af8848935cd93bdc6
BLAKE2b-256 cb6f3a53b18ecb018b34a08b556622993604f18ed314e5a6fc30cc39ab5d2a80

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d3a6a51d6e130834c4532c4697f562eccdc2a13dd615bfe97bb64fca38295834
MD5 9cbb72e193999e05f6833c7315a008c9
BLAKE2b-256 aa2f082f95ea0ecd285b07696aa893d13f9d07568df9c14c053ae7c8d3c05809

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6b346d3951f624ef8939faf33013a8fae1e5988edfd97e0baaed4379ffb62aa6
MD5 fb127f509e90fc66d32f6e961059001a
BLAKE2b-256 08205b484635a4595f85df0890863998ffdac8ecbd4a6de4408460dab7ca5088

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 78f7749a25871cdfd54233b5cc157754e58543aa2e984f929a3e8c1bb24036c9
MD5 7c684bc112ad0d8c1ebdd49d67b05d49
BLAKE2b-256 db73e21f637c5de1cd8a5ea2755aeb7caf3c71783bf69667ef3fb7113ef1a664

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 63f748cf10e9e65b84b07d430bf4b3edd3d05ac628bd160628dc88d45cc7a2d4
MD5 04e2f38af1972a1907aa66fd43f95e5f
BLAKE2b-256 2e6003549a192f58fc45dee61bd2136a3aeffaac24b7e3ddf2f11a893f812684

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 24242e217d4740365df08d59d35ad6674f2edb0120965aeffa1d405b7cadc7ef
MD5 0928522648d979956c5975300c6c8f31
BLAKE2b-256 d94b219886a55e55126fe7cc2ab9f99b12f0c5baf56dfdea614af593f2a37fd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 15518c134f0a228e18aac7406e6126db6c30a01431e53c05d6d6f5e0b01329e5
MD5 2b8c533271efe174506566d476028d44
BLAKE2b-256 ba17a8d27eaf287e40fc48a6f342a61ddee6fcbc1b0a9e397ac6b34186120f04

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 475556a22730750dbd6448b87bf4405aec8967f1f9b84688ca1815518b81330e
MD5 838a86a3277d4172e8e15af3478dff7e
BLAKE2b-256 34e868b27644faffdac2fb0d89a4710a9bc56377a7e63e960180d88aaca85f3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ac3ffd47ed8ecf9fafba1574741039d8de4df2346ac89c6c7ea2f33b3162b05d
MD5 7cfc07f8c9043694dac3c9ac13e292c3
BLAKE2b-256 3a6a7a98d72db4d4f36e93fe04bdea8f5d7cdb46a4d703b150c0d3d7a45af751

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0cd6eb55b0545c68f5d2b9c34375a8ed7d7bee7b55b86bf02acde8c6eb63c235
MD5 76b4b449e6b50ca91c8c768ab45f7675
BLAKE2b-256 c84bb23b2bb1c4eaf05b78f873dfdf3bd7ba936f4ca5fd1b28794d03d53f261a

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf3661fb2302d98f7e0f599d9bb917625dfaf71531daa94eb44fda848c08119a
MD5 a6fd66948c1f881a047f451ba1eeb0d0
BLAKE2b-256 f9e334165cabcb3121b7bbe51deb4511936fa2dc94e608e17a6d18912c4b754f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bab54ea9178626845da7793f2beab7db80c487b4237e48bd4d5cddd3ff5ae8c5
MD5 625b13893a341e540eabf2333b42f20b
BLAKE2b-256 09ecd6afa3ab4b7a80f565d81b74cd57af6c3f0116fdf001d900d58e50099b48

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9bdd4a8ed72261b102ca38022057b4595f3069fadc23d1e8af917fcb1c30c49c
MD5 12a01aa0805a09c8667b2125657aac83
BLAKE2b-256 ff38d9d24442825bfda8c3cda8faa25b3409b980900051e5ea2842b1cf93ad77

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f0fa0c6831b5f83f7515b361f273f39a9222727886a5275430b810d31b09c743
MD5 d006423c54cfe3b3bc397ecdfcc9322b
BLAKE2b-256 9fd73299f5b565dc76c55018ad750d2a453417a9974f843ce2af90b40e2baf83

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2b2725c11551b20f44879fb7882bb0a5174bcb7eed3c22201ea23e63d8ab9449
MD5 7b2f2bccbb4dc666863239dce6db2850
BLAKE2b-256 5c06d70ac293dee83537f141f29914ef46273bd8d6df125d7c8470bda9804801

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9e4b42c4e418e3f58d150687f935fb4910416e4a2022ba735fae9b31bb57307f
MD5 cf21e06179da04120c1150ce6595580b
BLAKE2b-256 b356ff095062896f6d6f02679a20991c7506c7d6d966dead94db3cda23a4b040

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cbfb94bdad9988476c5aec39b9ee0774c26f00563c890864fe81d9ef85dd00ad
MD5 8f2b111132568f429294f1466925890c
BLAKE2b-256 2af469d164e71889f9e53d7634769be064c4b5f93a4ece6e70120ab7c5b17395

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 75b40fdca67156698bce41483d5e4f95a3c8721444e033b27ca38f1f1fb514a4
MD5 341cec536e45e08878e18ad59cdf250d
BLAKE2b-256 f87ea542b0bfd3d4dc6f8c722b7f2233291f2370511c10aec0155ef62cd4cf9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 714ae04c622f6f8a2f66702098bde0ab72b98f99a880bfeb1a5f9979b49f8465
MD5 10aadf30fb0a2814f1090072fbf75461
BLAKE2b-256 bbe574d3ee737c0db52b5a0609ced5acb2c4fe5702edf5dfaaa54d971752423c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 35a06827ab626c3bba4d10431be43e32117ae0b8f171e596e5df3093aa81e0ac
MD5 4b132b91d9073fbb25ff0e32a9b6ef7c
BLAKE2b-256 370c7c6a3041a7c6284cc043199f8aa092bb432634ac22cbc512e94a1aa6f195

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 76cde85f14041b0ffb8028c12745a4518c0a3c636b23c6712dd54081a703523e
MD5 f2b0c6cf120ff10f97806f26766a5458
BLAKE2b-256 7d989f031d1aa689addf69bb58d7edd3221b4dedbc4fb339360fc28f286be6a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8a75c208821b42fdf5e9fe978f7e8d0fc402661634df2e4a5864c6567a97e0e1
MD5 54ab35053799dd8af3d66053fc5999e7
BLAKE2b-256 bfb295a5f8e057355a3b953955cf2c6adc14fb3d1e024e039fda456f3a0f801f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 416ef260dcc5d6f15fcd3444a4dc48a8b6e77be49282ba0f9ccd1b511a6dae3f
MD5 e41c76d4e45e67395cbc8e909149f9eb
BLAKE2b-256 a6507655446543af4b86154359b80f277ccea8dd4cd1d55fa7a1372bc1db621f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3cceba96e3f1dd24fd8e0dfedba00912e1f95955a3a098c23346cc328af3d594
MD5 81059a8e9b1d57749d243945853304d8
BLAKE2b-256 542bf842e221bdc62914a8cc2ea2d32b0fa72a7cc92bf11f64e1bcf214477668

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 764b7f83ff75e34a2f724f36ecb2c194486e2ffc037ef59aa628f055059d6c47
MD5 40707fe76fcee845c0432c40b61eb5b1
BLAKE2b-256 cce072651420a0eb080199d4a4ea9ae1ebbf38b7313abdd96369e0e7e0116c55

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5217db73f9362d4584d3214b9e1c94268b916320d8b6272af1ec9a6b5f4a9386
MD5 0614904b57bc60af74659873bd27bdd6
BLAKE2b-256 ad7e179ad74d75eb09e8ada6f085afcac1b19d3fa4d6fb2bcc60fb40bea1a089

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e2e9c609eb60d5162721c712d63ddc8b2492e9ed51133d8cc17c5327859a1784
MD5 f42a5071278dd8b4e6a69a66e92201e4
BLAKE2b-256 7d3f71f2c747f9d05e310619039e000ecfb502d5328899893eade72aa2446674

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3e2b50c6be3ddd1d5301986a036af8cb20c1f36cb23e5b7bd8dc8b28c38b2799
MD5 e4056034bdec7d85b25f257057ad8015
BLAKE2b-256 fe510ca8c184ed3a064ed94cdc6a51248c84ce6404349ddfdf4a87ac18ba8a71

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c1a9e42171aa0e1a69bb1212b93046c1325918505c570e5bc4fabcfaace4406e
MD5 819d5fa8642e51d4b5be4897e1185575
BLAKE2b-256 59c0635a0cd70b3ab0d56ed7cb81e7ac860a952913ce1c51d8f4e19c78580a71

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3fe6a81c703b7f1814d8507953afeccc3804d00f2eda456ee4c7acacbb1b02c5
MD5 90edfa0dcb07d7c18dea699d60b295ea
BLAKE2b-256 baaa076c76d540eeb46c0e92618d4d7f2279f9ad7dae2ec15976a2d28110c0d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mla_archive-0.6.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c7404d59c382dcf6c2f07e40bc001b1909695e01164169dc60f0f970fe31b1d
MD5 cf83d0dded89b267086e1370a170c007
BLAKE2b-256 37fdae7e0e87e6272b0a34970f062d805f0265d25e795bc42a65fcd5ec84fd7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mla_archive-0.6.2-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