Skip to main content

Fast MUTF-8 encoder & decoder

Project description

CI

mutf-8

This package contains simple pure-python as well as C encoders and decoders for the MUTF-8 character encoding.

These days, you'll most likely encounter MUTF-8 when working on files or protocols related to the JVM. Strings in a Java .class file are encoded using MUTF-8, strings passed by the JNI, as well as strings exported by the object serializer.

This library was extracted from Lawu, a Python library for working with JVM class files.

Installation

Prebuilt binary packages are available for most platforms and Python versions. Install the package from PyPi:

pip install mutf8

Usage

Encoding and decoding is simple:

from mutf8 import encode_modified_utf8, decode_modified_utf8

unicode = decode_modified_utf8(byte_like_object)
bytes = encode_modified_utf8(unicode)

This module does not register itself globally as a codec, since importing should be side-effect-free.

Benchmarks

The C extension is dramatically faster than the pure-Python fallback — from ~10× on tiny strings (where per-call overhead dominates) to several hundred times on realistic payloads, and over 1000× when encoding large ASCII.

MUTF-8 Decoding

Input C Python Speedup
ASCII (16 B) 81.5 ± 26 ns 1.04 ± 0.18 µs 13×
ASCII (1 KB) 185 ± 38 ns 65.7 ± 8.5 µs 356×
ASCII (64 KB) 5.58 ± 0.66 µs 4.35 ± 0.23 ms 780×
CJK (16 B) 127 ± 15 ns 1.33 ± 0.15 µs 10×
CJK (1 KB) 681 ± 117 ns 99.3 ± 9.4 µs 146×
CJK (64 KB) 31.8 ± 3.3 µs 6.28 ± 0.063 ms 198×
Emoji (16 B) 100 ± 21 ns 882 ± 122 ns
Emoji (1 KB) 538 ± 119 ns 79.6 ± 6.9 µs 148×
Emoji (64 KB) 26.2 ± 4.1 µs 5.32 ± 0.13 ms 203×
Mixed (16 B) 118 ± 27 ns 2.17 ± 0.16 µs 18×
Mixed (1 KB) 860 ± 162 ns 76.7 ± 9.2 µs 89×
Mixed (64 KB) 38 ± 5 µs 5.3 ± 0.48 ms 139×

MUTF-8 Encoding

Input C Python Speedup
ASCII (16 B) 70.5 ± 5.8 ns 1.23 ± 0.15 µs 18×
ASCII (1 KB) 109 ± 16 ns 49 ± 6.2 µs 449×
ASCII (64 KB) 1.55 ± 0.27 µs 2.93 ± 0.19 ms 1889×
CJK (16 B) 81.4 ± 12 ns 2.02 ± 0.26 µs 25×
CJK (1 KB) 624 ± 127 ns 108 ± 16 µs 173×
CJK (64 KB) 32.5 ± 2.9 µs 6.8 ± 0.24 ms 209×
Emoji (16 B) 73 ± 10 ns 1.17 ± 0.12 µs 16×
Emoji (1 KB) 621 ± 76 ns 67 ± 8.5 µs 108×
Emoji (64 KB) 33.3 ± 6 µs 3.98 ± 0.12 ms 119×
Mixed (16 B) 108 ± 97 ns 2.48 ± 0.35 µs 23×
Mixed (1 KB) 1.39 ± 0.29 µs 63.3 ± 3.5 µs 45×
Mixed (64 KB) 81.2 ± 14 µs 3.91 ± 0.093 ms 48×

C Extension

The C extension is optional. If a binary package is not available, or a C compiler is not present, the pure-python version will be used instead. If you want to ensure you're using the C version, import it directly:

from mutf8.cmutf8 import decode_modified_utf8

decode_modified_utf(b'\xED\xA1\x80\xED\xB0\x80')

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

mutf8-1.1.0.tar.gz (11.8 kB view details)

Uploaded Source

Built Distributions

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

mutf8-1.1.0-cp314-cp314t-win_amd64.whl (15.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

mutf8-1.1.0-cp314-cp314t-win32.whl (14.8 kB view details)

Uploaded CPython 3.14tWindows x86

mutf8-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl (25.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

mutf8-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl (25.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

mutf8-1.1.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (26.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

mutf8-1.1.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (25.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

mutf8-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl (13.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

mutf8-1.1.0-cp314-cp314-win_amd64.whl (15.1 kB view details)

Uploaded CPython 3.14Windows x86-64

mutf8-1.1.0-cp314-cp314-win32.whl (14.7 kB view details)

Uploaded CPython 3.14Windows x86

mutf8-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (24.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

mutf8-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl (25.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

mutf8-1.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (25.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

mutf8-1.1.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (24.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

mutf8-1.1.0-cp314-cp314-macosx_11_0_arm64.whl (13.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

mutf8-1.1.0-cp313-cp313-win_amd64.whl (14.9 kB view details)

Uploaded CPython 3.13Windows x86-64

mutf8-1.1.0-cp313-cp313-win32.whl (14.5 kB view details)

Uploaded CPython 3.13Windows x86

mutf8-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (24.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

mutf8-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (25.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

mutf8-1.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (25.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

mutf8-1.1.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (24.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

mutf8-1.1.0-cp313-cp313-macosx_11_0_arm64.whl (13.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mutf8-1.1.0-cp312-cp312-win_amd64.whl (14.9 kB view details)

Uploaded CPython 3.12Windows x86-64

mutf8-1.1.0-cp312-cp312-win32.whl (14.5 kB view details)

Uploaded CPython 3.12Windows x86

mutf8-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (24.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

mutf8-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (25.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

mutf8-1.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (25.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

mutf8-1.1.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (24.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

mutf8-1.1.0-cp312-cp312-macosx_11_0_arm64.whl (13.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mutf8-1.1.0-cp311-cp311-win_amd64.whl (14.9 kB view details)

Uploaded CPython 3.11Windows x86-64

mutf8-1.1.0-cp311-cp311-win32.whl (14.5 kB view details)

Uploaded CPython 3.11Windows x86

mutf8-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (24.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

mutf8-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (25.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

mutf8-1.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (25.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

mutf8-1.1.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (24.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

mutf8-1.1.0-cp311-cp311-macosx_11_0_arm64.whl (13.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mutf8-1.1.0-cp310-cp310-win_amd64.whl (14.9 kB view details)

Uploaded CPython 3.10Windows x86-64

mutf8-1.1.0-cp310-cp310-win32.whl (14.5 kB view details)

Uploaded CPython 3.10Windows x86

mutf8-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (23.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

mutf8-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (23.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

mutf8-1.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (24.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

mutf8-1.1.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (23.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

mutf8-1.1.0-cp310-cp310-macosx_11_0_arm64.whl (13.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mutf8-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl (13.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

mutf8-1.1.0-cp39-cp39-win_amd64.whl (14.9 kB view details)

Uploaded CPython 3.9Windows x86-64

mutf8-1.1.0-cp39-cp39-win32.whl (14.5 kB view details)

Uploaded CPython 3.9Windows x86

mutf8-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (23.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

mutf8-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (23.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

mutf8-1.1.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (24.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

mutf8-1.1.0-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (23.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

mutf8-1.1.0-cp39-cp39-macosx_11_0_arm64.whl (13.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file mutf8-1.1.0.tar.gz.

File metadata

  • Download URL: mutf8-1.1.0.tar.gz
  • Upload date:
  • Size: 11.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mutf8-1.1.0.tar.gz
Algorithm Hash digest
SHA256 279796be8926ea53ac226a831727725387f3acadcfc5aa723f8a5ada559dae3a
MD5 e16db45d10100695929cce26262c7ace
BLAKE2b-256 5c74bfce3ab421b39503c6cd11a6bc812a763154082a4f69d55831d762e58fcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0.tar.gz:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: mutf8-1.1.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 15.3 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mutf8-1.1.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a441d6542d874062e8223ef868195940f281051f4eba82c2d420de12bb133415
MD5 3715188ad58aed68ea01f4ab12cf008c
BLAKE2b-256 c17f8505e1bfa0fa6110f5aeef3a5e62bb234862da3c18ad129fb8e499116ae7

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp314-cp314t-win_amd64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: mutf8-1.1.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 14.8 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mutf8-1.1.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 3ba488375e86d185c187b39d90f8894b996128f721e8ff3eae72dbf6c66d92e8
MD5 c67514db318819af5990c0943abde65b
BLAKE2b-256 29fcf75fefacb5cb7d42170628422827202770386ad98e27a0f2b59df1c605c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp314-cp314t-win32.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mutf8-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3c4ef2a7c2c807973e4e5c063cb5459f3979efe8f86f9e71eccdd86fc77b306e
MD5 85fa4ef8abb41551fc0441767e1e7f24
BLAKE2b-256 f68ef5fc3a213ed3ebe5d8912cd6ebc29c735661237a51226839d4d0aabc1fae

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mutf8-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7c257c6c88821c067a167accde6f5b4af6440d641d993a3a557e80314c076f4d
MD5 9206d695fcefc3b4c54ec3558b97f722
BLAKE2b-256 5c6a501f5b35728ede5b74460401c3c281ec54dfdd4acefd682aa7362d0575fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mutf8-1.1.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e28f11e5b8ab759fe662bad8c6cbbdab7420639613725b6875cc2c73995032d0
MD5 9ab428cdcb2e060501baa80fbe048110
BLAKE2b-256 d73fc3ba1c00f8ec49c29e77ce49e061cc1058f8c48d9ec74b7795361a3b2b0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for mutf8-1.1.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 63bdc07d838c05a5579ab00222192cf573057364e89471f8e64fbf453cfe8145
MD5 15c65bfb29e4347b9928aaf26b6b91a0
BLAKE2b-256 cbe904886543e51cf665f7cabaf1f9fed0988141c0cce9eb499ad9b60c9b3b03

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mutf8-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3364bd2f0b302be14d4d7e2ab4617bf81e99bcbd16d36cc135b344bb2aa46f84
MD5 e9cc1b5faaf39189d952df904328cbce
BLAKE2b-256 6a9ee7b9b40db43806ab5cdac20deb705f08b874a6af0ec7d4614e191334c368

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: mutf8-1.1.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 15.1 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mutf8-1.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2696f757d799fa6f43584cc201fe8bf7a882de13459c5522b169c91ce4e09560
MD5 ecdf617d20a30e2600d3b4604ca05f23
BLAKE2b-256 bc3d3afe3481fe99959a0dc0e7122d8114d50c044e227d4693ed366d96faf2ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp314-cp314-win_amd64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: mutf8-1.1.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 14.7 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mutf8-1.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 e7801dbdd5f22763f21558e817804f9eb0c8fc94f7ea238c8f5380c2e1b23b62
MD5 cd020d390138c10024010c50f23755a7
BLAKE2b-256 aa0fecf865df12af83033a585bee2c750ba7f8e919e5c5d76af3e1f91759aa37

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp314-cp314-win32.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mutf8-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea196f3a49186a3a28e583244fe893d11f1077285b939fcfecc3b5eaf58882eb
MD5 f79401a9851179b3369b27d960948839
BLAKE2b-256 7c6c5541bc1d05c153ab617dbe7e2620db01653cb4dcab753c76cea6fce59283

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mutf8-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 42abec0a8f96b03d27edd01a9e18fc375fd1be3166d8fd03b164f5b3cab0abd4
MD5 e2e822d0a815a3f040b8cb00ec557541
BLAKE2b-256 fb8d11b0b4bff9d7cfc585c9d6974e2d4846dc50c722294a06c1c0287bbac3b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mutf8-1.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d51b2297b9e0908d21ee41962305c0552d918bcbcb5733c018e98afc4c5d0da4
MD5 0fceaf8fe872c19b225c4b7abbaadd03
BLAKE2b-256 3b1430f26bbe63c0206206d06b7ab65a44ddb62408050670b01ef35a4df5693c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for mutf8-1.1.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 31e8c701128647f8795054e30b0e2f1bb0bcd6e89ab50f0cbf9803413adf98d9
MD5 b4697d6d68a0343ff58f5a15d39b2fb3
BLAKE2b-256 6964ff71996313f10fac965c99c1b2780d92105cae5ed349b4aa30d94a6b37a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mutf8-1.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81dcc89c127bf4bf7453c9790032ab2fd2881a5edd6bf464d9e737e7d8a9dcdb
MD5 4269996c5ed9025c5cd4d5e4036572d1
BLAKE2b-256 57d08114ed0298fd2d90a6a9fe24ff8b2519db800c9c8523af2b5a8b39fddb53

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: mutf8-1.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 14.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mutf8-1.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 867270fa62a507c2a80591d5f444d96f8739507cb4a135b03319e37ca727f3c7
MD5 3c1bb3e263ba4320e70e24c00c228071
BLAKE2b-256 5cdda9ee3bf536f45c7ab5d144fc240abc215c683d88e6fdbb63edd0bb64ef35

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp313-cp313-win_amd64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: mutf8-1.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 14.5 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mutf8-1.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 85ad5bb6c40ba10d18d7bf407c13a25f9fadeb27641fc691e04529609cdbcbd5
MD5 4c5e63d2cbdc5e49e5f725656c028ac0
BLAKE2b-256 469a8231b544b67a0c9383ab1e5c418526ed321eec1c432fab6aefbea7366944

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp313-cp313-win32.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mutf8-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e208659e973213c24bd78f84787adb23c0eb8beaceef77911e006a59a3bebce3
MD5 9e250814c8c1e79c7900168ab79e27f8
BLAKE2b-256 66519ea7a069459be457278cc0355c3b45ca30b4b9b930aa3095c48e8d3e4a76

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mutf8-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6914897b0b682322ef85df9ded02869207174f4ae58434b060c58e7da9adb913
MD5 c42af0917dce896003ab9e4233d3d6fe
BLAKE2b-256 467c946842eaea8772f99d44f921eb25322d3fca6126a799607a26c4a3fc19a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mutf8-1.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f904baade198aaf87910166ac0e0d8c42970a63ccc3d230e7fc626456cf22d30
MD5 8a00d13497c5db6d5ffcd7e35c19efa4
BLAKE2b-256 3c5ef3d343ac37c9818f1e7a74675b040439b024b68458a9c07265a32007d541

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for mutf8-1.1.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 7569229befe0317125802d9220e5735771e3f0ac90bda0fa4ef2dac7d27bcd3a
MD5 9d09ff0b9ad3e69cf1a03f5e01126680
BLAKE2b-256 d8b2042128bbcd8df8388fa370686a2ee1f770aed44d1f9c8d6aeda63cd10a8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mutf8-1.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2fe4c83cacf6fbd230a5a429a51afcdf56efbb7692938358b9eb572ef0cfa1f5
MD5 1332cf4a189e8bed1c00b132099f4124
BLAKE2b-256 16dfdd8db9d0318e1dbaf98cac4acc6b4a83efe4cff130b561f643bdb05a6e65

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: mutf8-1.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 14.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mutf8-1.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fce9b80cd05214a2c886ee936e587db381ea10f4c4d45ba81689c0b9b76e6ebb
MD5 26bdb62b52b0164daf02f24fb01f5396
BLAKE2b-256 de9122f6f24ed635082c349a53893cffb149b61d2223be6a7651b23d6747d1fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp312-cp312-win_amd64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: mutf8-1.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 14.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mutf8-1.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2cd6b7f78a1a9a1041e9c1b2b565cf6586aaa64cb0ab6fb20b3e08dddb759384
MD5 70174cea033468ec720c1804b8e91b59
BLAKE2b-256 99d713c3730942c8c93c8b856330e8976d6271f6dc05f6f40ffc59314316b6c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp312-cp312-win32.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mutf8-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 640f14ccb0b61c8f74de6d20291bac6512e6f1852888e3b9b2277e38291131da
MD5 16d561f11450caf5cfb8b8df8a7ff980
BLAKE2b-256 7b12f4e3e6284ad5e7164c9110786f4498d5f4ac870e142d271f2d99d53c4281

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mutf8-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3eb8e73167356159bfecbfbe30fccb5aa72167e4e56220e3e0ac0f34703a7554
MD5 eb5a1d5513f20231fd937c9921d326e2
BLAKE2b-256 26635843c0b540884cee9b72658451dc156bcd1f30ea87ad4477f6ac48b1aa6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mutf8-1.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0e1abf471047c80793a0d29b4dccdc2b93e052245f38280c852cc14f966b1b28
MD5 96eb7f3c0d331dc661a7f4d622a284a1
BLAKE2b-256 180db234f2ba0a9b91cfaf9ce1386c967a0b8284e5b1e101ee8162cf09803dd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for mutf8-1.1.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 d5e852720303c709f0b8150603032518818c56d378d17c403cb42cfe399b9bb8
MD5 98089443a1b6b970422420a18cf5c4fb
BLAKE2b-256 16c2667233e5871f4fd1cb4b4cfe6d540b5f88ff644b143bc78367cf68621eed

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mutf8-1.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d6682df2b8a7d6e8a769ae6b3295adce8ee032c020ce98f7bb31692b664882c
MD5 603d4f9c11efd840dfb4a09253499f2f
BLAKE2b-256 8335a3074929620a649c6ad0557d55eeb25d2c22d1b2470b9d1bd9dd332bede7

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: mutf8-1.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 14.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mutf8-1.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bf764c02c9c6a1806cb6523052340dbf1c45b676a180230e85ac85144aea048d
MD5 e91d2ef401e7126e2b700fb17bf41a84
BLAKE2b-256 859fab528d9f43c640eece2d3940368fa96021c9d227466752f377c21de0fe9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp311-cp311-win_amd64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: mutf8-1.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 14.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mutf8-1.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ce85b33e06592c457163c03e1856e21504286b7d3cab7dbe45cc51b8931e3b01
MD5 dc1b56f6f46ea262215855243a8e9984
BLAKE2b-256 e015dd5425ebc2c330d3b5dd69bb19d7d1ec7ab0984de30614c19066e0bfbe66

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp311-cp311-win32.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mutf8-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d2a46bf14e16011a113b7b839e3be6c1d5ccd47bc5a4897799af83309cc4ffc
MD5 6902cff5f40390f2a3d18f3f11556c72
BLAKE2b-256 052931ff1ddcb34be6b6a80e84e0836daf2cce5de4420f6bda5b2dd555682350

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mutf8-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f748e3f7dcb9f6b7e642bdf6168b72a7fd5674182a827236bf8c7165672d322b
MD5 4fed721eda641af003c329ba6b24993c
BLAKE2b-256 3f47c27bc134ad4643303d99388d6b4762b42b734fd097d5d0614c390af47110

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mutf8-1.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bbcc40de7b02f81a0c1a8bbd43ebbf9e45c7f8bf57cf9d46176c6cc9fa65e17b
MD5 60ed5d8f32a272dd9e2ccc8bb87fe635
BLAKE2b-256 fc9c3a9456bf13ba225e588adf4b091c4053b3f20099623d7dcba9883e5252c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for mutf8-1.1.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 8af3095f7afd5dfc32fb0a662eba659472357e83259b7b4f1f3298fb6d4f904d
MD5 ad45ac4bf2e8ca8b58b665b1598ef96e
BLAKE2b-256 3303eb72e6d0587fc0daeb6162258efadf2ab3a3e90d2f07a7f88c7ca7a57180

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mutf8-1.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 258e6fc37cbdb90f9ee571eb993b4632a6dd9d408159c33b72161cb5fecd00d6
MD5 168e6250bb384f2cbe54525c6b33fd3b
BLAKE2b-256 9b5b4deca08eea67d85e6ba14e7cbe0060f16a04536119499e249ff5528efa08

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: mutf8-1.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 14.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mutf8-1.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3e3cb461153512a22567ee03a2e3104c6359443161ae83ec386107fb4d09124a
MD5 2e38a19edd0d5770adf384696050875d
BLAKE2b-256 f2fcda17d272c5c393580a4038332f2a569be8fcc3dc168e5245de6e83213212

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp310-cp310-win_amd64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: mutf8-1.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 14.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mutf8-1.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f7e59cbf2e959029aecbcdb8bcb64fb6db56bf62945c44cf9a8c7b495ad36236
MD5 7dba3b0ea0ecb76c5aaa341b4455ef40
BLAKE2b-256 58acb9e45da2f00b0120f2f43fd1781dd139175bb5e1051e13af208858e639e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp310-cp310-win32.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mutf8-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 350cf53ff2922e322be8141a3b67e4455dc7df2832545113039a85697bb1b802
MD5 1c30f0f53403f826f8a3bf10c06f3a71
BLAKE2b-256 f7bca9070513ffbc221a2983bf5657a55f47b26ef350f1218ff65b86bf1912ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mutf8-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4aa9af7ce710850dae09ff5ef9bfcc27a3f48cd301b0b14d6b30a2ac12970cbf
MD5 31478ca3a147517c128125a27d9cf39f
BLAKE2b-256 5e068eeb7d5b713d95718cd556137161806a6da3840e972ec7018ceb85a2abcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mutf8-1.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fea1eaa3fc7e9da366b9199d19540d311eb2c953436936b96c6c1f9e81ebf501
MD5 7338fd5fd1f7fa8d535d9490ea2916d3
BLAKE2b-256 517d31df8202123f6d61ec001b4612bf180a04d994988d5fb7c105ef229dd47f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for mutf8-1.1.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 072ad993d20b244755a8d6ab0ba6fee5c974741dd0acf96df6cc585f0c3c61ad
MD5 5ba23a14e8f241130992ec932c7e106d
BLAKE2b-256 eeccad0e4c15567e58c9409e77f35bf209db0b2acfd715055c7a63e2755ec87c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mutf8-1.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 afd923aaf773542d2cbfb8dbe6cbc2045498efa1e72e86d1ac4d3aacf7e14941
MD5 4199e7394c15ab009e4d01c34f84e70c
BLAKE2b-256 f3028a0072308d9a0b60eb18c24356cc40320b046c376ae464cc47d8a610a86e

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for mutf8-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f6767a8e1e3dea2b8d9c98d14906049b6b63dcddc87c79e60d9c38a72b19640b
MD5 3a47fabd593fb726ec063c38eac525b8
BLAKE2b-256 190322e4f2f7feb962825dafa11a07d743ac67052c5aca5e1c80119f245a0d03

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: mutf8-1.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 14.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mutf8-1.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0cbce01f2a786db7f4bae25e9e62effe9bc0d22b01ce8dbc556b697ed7d6ce6e
MD5 ba54f7dd2763de40a490a7828e94b7c7
BLAKE2b-256 31556b78aad2814de3c13f416990f2c0809febff6e77805ac9ec792311b53146

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp39-cp39-win_amd64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: mutf8-1.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 14.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mutf8-1.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a552eb05294c7994fe515d89fd3597deb53db6468fb4734ae1171f2815ceb4fd
MD5 c3338250445869bb1504349ec99dc1c9
BLAKE2b-256 f109d95aec38e08d824d1c82599f94b9dfa46ba4c42170b12a76cbd46737636c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp39-cp39-win32.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: mutf8-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 23.1 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mutf8-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7e3447b2b0d2112dcdde6cf2136320b1ce24e35e304070b771ed4e5655762880
MD5 771aadec9d66901adaa930ec9d5ed37d
BLAKE2b-256 99fffcd14a8e64e5734fbab7d1b8f497aaf4614cf0f8c4c22093b5bb5a85eaa9

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mutf8-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ad41af698f0cb75beec439219c57120c1fd65f3e39505bff2fe6040fb2adb680
MD5 a79c8852a85aa04d40b1b7b97aa3c0c2
BLAKE2b-256 ffba796a6b1a533fb695b161bbd3be2080954127eeace30e6098fdf864673c61

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mutf8-1.1.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 680adf1cb36a7cb844aed169ff89bd0e80736ed96651eb548a9c7d5eedcfb87e
MD5 227c00e8a41e8dc6e5379705d68f0ac7
BLAKE2b-256 eebd1062685707fd9e5cf6c9cfc90211ea6ff1c4503a88d632f8ef2467135224

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for mutf8-1.1.0-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 4f1a4d81bc998ba91bdca28293f8e48876459ebaed04a9bab705c45aafcec2c1
MD5 2119499c6f5488d349bb885d4c35b320
BLAKE2b-256 6a36a31347c1d719818c7a3f8f633384451ef9e6a856b432f0d0285f8080714f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: release.yml on TkTech/mutf8

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

File details

Details for the file mutf8-1.1.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: mutf8-1.1.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 13.5 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for mutf8-1.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b1144bafc3a57aeab2a01bc0eb0521ad6be6570a95f0d52a022b2398044c09b8
MD5 54b39daae9faa75e6ca2bf58654007f0
BLAKE2b-256 dd93354b422bac99acc09c099144440933628f17cbfaa66ba206f6a2abaf3f28

See more details on using hashes here.

Provenance

The following attestation bundles were made for mutf8-1.1.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on TkTech/mutf8

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