Skip to main content

Streamlined Cython bindings for the harfbuzz shaping engine

Project description

Githun CI Status PyPI

uharfbuzz

Streamlined Cython bindings for the HarfBuzz shaping engine.

Example

import sys

import uharfbuzz as hb


fontfile = sys.argv[1]
text = sys.argv[2]

blob = hb.Blob.from_file_path(fontfile)
face = hb.Face(blob)
font = hb.Font(face)

buf = hb.Buffer()
buf.add_str(text)
buf.guess_segment_properties()

features = {"kern": True, "liga": True}
hb.shape(font, buf, features)

infos = buf.glyph_infos
positions = buf.glyph_positions

for info, pos in zip(infos, positions):
    gid = info.codepoint
    glyph_name = font.glyph_to_string(gid)
    cluster = info.cluster
    x_advance = pos.x_advance
    x_offset = pos.x_offset
    y_offset = pos.y_offset
    print(f"{glyph_name} gid{gid}={cluster}@{x_advance},{y_offset}+{x_advance}")

Installation

When building the uharfbuzz package, it automatically incorporates minimal HarfBuzz sources so you don't have to install the native HarfBuzz library.

However, if you want to use uharfbuzz with your system-provided HarfBuzz (e.g., if you built it from sources with custom configuration), you can set USE_SYSTEM_LIBS=1 environment variable (see example below).

USE_SYSTEM_LIBS=1 pip install uharfbuzz --no-binary :uharfbuzz:

harfbuzz installation is found using pkg-config, so you must have harfbuzz's .pc files in your system. If you've built it from sources, meson installs them automatically. Otherwise, you may want to install harfbuzz development package, like harfbuzz-devel on Fedora-derived distros.

Note: you must build HarfBuzz with experimental API support enabled.

How to make a release

Use git tag -a to make a new annotated tag, or git tag -s for a GPG-signed annotated tag, if you prefer.

Name the new tag with with a leading ‘v’ followed by three MAJOR.MINOR.PATCH digits, like in semantic versioning. Look at the existing tags for examples.

In the tag message write some short release notes describing the changes since the previous tag. The subject line will be the release name and the message body will be the release notes.

Finally, push the tag to the remote repository (e.g. assuming upstream is called origin):

$ git push origin v0.4.3

This will trigger the CI to build the distribution packages and upload them to the Python Package Index automatically, if all the tests pass successfully. The CI will also automatically create a new Github Release and use the content of the annotated git tag for the release notes.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

uharfbuzz-0.41.1.tar.gz (1.5 MB view details)

Uploaded Source

Built Distributions

uharfbuzz-0.41.1-pp310-pypy310_pp73-win_amd64.whl (1.2 MB view details)

Uploaded PyPy Windows x86-64

uharfbuzz-0.41.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

uharfbuzz-0.41.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

uharfbuzz-0.41.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (1.3 MB view details)

Uploaded PyPy macOS 10.15+ x86-64

uharfbuzz-0.41.1-pp39-pypy39_pp73-win_amd64.whl (1.2 MB view details)

Uploaded PyPy Windows x86-64

uharfbuzz-0.41.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

uharfbuzz-0.41.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

uharfbuzz-0.41.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (1.3 MB view details)

Uploaded PyPy macOS 10.15+ x86-64

uharfbuzz-0.41.1-pp38-pypy38_pp73-win_amd64.whl (1.2 MB view details)

Uploaded PyPy Windows x86-64

uharfbuzz-0.41.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

uharfbuzz-0.41.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

uharfbuzz-0.41.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

uharfbuzz-0.41.1-pp37-pypy37_pp73-win_amd64.whl (1.2 MB view details)

Uploaded PyPy Windows x86-64

uharfbuzz-0.41.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

uharfbuzz-0.41.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

uharfbuzz-0.41.1-cp313-cp313-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.13 Windows x86-64

uharfbuzz-0.41.1-cp313-cp313-win32.whl (976.4 kB view details)

Uploaded CPython 3.13 Windows x86

uharfbuzz-0.41.1-cp313-cp313-musllinux_1_2_x86_64.whl (15.3 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

uharfbuzz-0.41.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.8 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

uharfbuzz-0.41.1-cp313-cp313-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

uharfbuzz-0.41.1-cp313-cp313-macosx_10_13_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

uharfbuzz-0.41.1-cp313-cp313-macosx_10_13_universal2.whl (2.9 MB view details)

Uploaded CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64)

uharfbuzz-0.41.1-cp312-cp312-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.12 Windows x86-64

uharfbuzz-0.41.1-cp312-cp312-win32.whl (977.9 kB view details)

Uploaded CPython 3.12 Windows x86

uharfbuzz-0.41.1-cp312-cp312-musllinux_1_2_x86_64.whl (15.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

uharfbuzz-0.41.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

uharfbuzz-0.41.1-cp312-cp312-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

uharfbuzz-0.41.1-cp312-cp312-macosx_10_13_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

uharfbuzz-0.41.1-cp312-cp312-macosx_10_13_universal2.whl (2.9 MB view details)

Uploaded CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64)

uharfbuzz-0.41.1-cp311-cp311-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.11 Windows x86-64

uharfbuzz-0.41.1-cp311-cp311-win32.whl (980.3 kB view details)

Uploaded CPython 3.11 Windows x86

uharfbuzz-0.41.1-cp311-cp311-musllinux_1_2_x86_64.whl (15.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

uharfbuzz-0.41.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

uharfbuzz-0.41.1-cp311-cp311-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

uharfbuzz-0.41.1-cp311-cp311-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

uharfbuzz-0.41.1-cp311-cp311-macosx_10_9_universal2.whl (2.9 MB view details)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

uharfbuzz-0.41.1-cp310-cp310-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.10 Windows x86-64

uharfbuzz-0.41.1-cp310-cp310-win32.whl (979.3 kB view details)

Uploaded CPython 3.10 Windows x86

uharfbuzz-0.41.1-cp310-cp310-musllinux_1_2_x86_64.whl (15.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

uharfbuzz-0.41.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

uharfbuzz-0.41.1-cp310-cp310-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

uharfbuzz-0.41.1-cp310-cp310-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

uharfbuzz-0.41.1-cp310-cp310-macosx_10_9_universal2.whl (2.9 MB view details)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

uharfbuzz-0.41.1-cp39-cp39-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.9 Windows x86-64

uharfbuzz-0.41.1-cp39-cp39-win32.whl (979.4 kB view details)

Uploaded CPython 3.9 Windows x86

uharfbuzz-0.41.1-cp39-cp39-musllinux_1_2_x86_64.whl (15.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

uharfbuzz-0.41.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

uharfbuzz-0.41.1-cp39-cp39-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

uharfbuzz-0.41.1-cp39-cp39-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

uharfbuzz-0.41.1-cp39-cp39-macosx_10_9_universal2.whl (2.9 MB view details)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

uharfbuzz-0.41.1-cp38-cp38-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.8 Windows x86-64

uharfbuzz-0.41.1-cp38-cp38-win32.whl (982.0 kB view details)

Uploaded CPython 3.8 Windows x86

uharfbuzz-0.41.1-cp38-cp38-musllinux_1_2_x86_64.whl (15.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

uharfbuzz-0.41.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

uharfbuzz-0.41.1-cp38-cp38-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

uharfbuzz-0.41.1-cp38-cp38-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

uharfbuzz-0.41.1-cp38-cp38-macosx_10_9_universal2.whl (2.9 MB view details)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file uharfbuzz-0.41.1.tar.gz.

File metadata

  • Download URL: uharfbuzz-0.41.1.tar.gz
  • Upload date:
  • Size: 1.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for uharfbuzz-0.41.1.tar.gz
Algorithm Hash digest
SHA256 0679cda29d36c5a1345db8eb04ba1ce53791b8bbe723876d6741603c41f15c4a
MD5 06641a4ed790eaf745c89813ae776d06
BLAKE2b-256 a9a6339712153e3316a376034d974801adc0b395bb5df3c495cbffcc2d1ccf07

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5048dedfa7167f65b8db7d5402b1c325334fdf2329b89a3ecc09ed81ba845989
MD5 682581df7e8ebc8552d24c2e23e7fdf2
BLAKE2b-256 8cac34a26f75407fad5e3fec44fed53fdedc31eb9718788c5dec45d899ebbde0

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 77ae265ebde633bc88e1e46f2ea5f9956577a03a7dedcd929e5ca1b3acaa0f50
MD5 56b4fcf0b695bafcff800053aec3bf4b
BLAKE2b-256 d5c75fddd3be4b2fb9a99016a4680c2e87497f298f46e6c1bb6d438c8f0ca925

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca6fb74db52dc2c5add5a423ba325dc042e24f8dc1d7c4d338d7df609e8ecb14
MD5 5d57e8826299b624789cc9a22cbf584b
BLAKE2b-256 b9fec7b498b7bd2c4dad86bd08d7825b9a85c4a4e1ff2789cbc176a226acb9f0

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f3b77d3dac728fbaa3c5b23c3c6ec10368d906ccc128372528bcefc8b9a6c4cc
MD5 6e6665400af40bff57499360abf5d307
BLAKE2b-256 afaa7aaaeae3454136e67045a4e110ad340037d0659ba892e7768c70814f724c

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f91f56c327282d132d9a70f3ae05c9cecb37e990bce8ac41bf2a3c2be54af1b2
MD5 18442551cba81eea6fe99d45f6c56330
BLAKE2b-256 c2ed1d3b2a2ba22cd2f9828df1d478f98bab78ce44d50a564d9f54f78a4a70bc

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f11da36f78cf46a5dbe8b9694bfa442cff963b6d82f351219cdb20cf31ec3e60
MD5 b75a3a2fa6f1093ca8a02e219797798e
BLAKE2b-256 53a18dacb824acc169987e8238e6586c7305d821bf64678d1aa65edb8b29e98b

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4ea36c97b6e96f8cb51cd1b49fe9753822b5712f0bd444072922572212237168
MD5 1786381510d48404abd8acfdb4f4ddf2
BLAKE2b-256 00399e63bd99f03715536648226fcbfa3c91f9877b0976176e95bb06ab9fa4e2

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 26e4d9b672f9a711a8620b8ce88ef8fbeb1699df974ffefae912239d51b3df1e
MD5 0147ebf2efae6ac1cad1b30597e0d85f
BLAKE2b-256 af5c8814295e4d4071657b4f466e40a40b9bea164daf19a53696fb69e06e1024

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 32d87c17740819b0355b25c3e0ad19141006c5cc46be9c4302867fb8326b2f79
MD5 7389a5a4beb35ada95b9648902edc64b
BLAKE2b-256 fd805d3d59ac5bc324d21498af8dc68c0bd6fe73b97cdbe8a79a031b738592b9

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3dfe494f9106f71bb61b2d951b3fa64751bf771e579d9e765a4828d29606b1e6
MD5 c3e0e5f41caefb26091505ec0ead99b5
BLAKE2b-256 ba404a5369f309d0293bb2705847e9fc652a5d299e325e7c529b9a85e74b4359

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6a566db2dd78990ef7748aa10d3207d80b0d48f8cdb5d368bfaffffdf113e3b
MD5 0f9cf0ad14793a5a161f2cb5f2a9ad81
BLAKE2b-256 cf31130686c2587e722a3a0e316af805284f12da6318bf97e13341c12c4e511c

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 db1e834a28e852f21c4f580c46e54a2f6c7f03066a0dbfa96a58105eee2e14f2
MD5 f3cb648c269580168b4791cf51dd4829
BLAKE2b-256 59c9bbcf8f74397d1a45c816251818337ced595a7e07e28742c34f6470a5eb12

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 17d68624a6714fdbf2e8022e8c6905136a7965501d7bf36e69ca0cb742c334e9
MD5 dee5fec62cffcaf05d4090f68f2fdc4f
BLAKE2b-256 0f5acb15059d6b4f721f9949ef8c7bf3f53cdcf3f05a9e449580ed82d2601829

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 12f178181e47ebe68d307d1a217d487dce2e4322a34bc58fb8b5cd7f4ee322b2
MD5 3c279a26287c17b18e9e60141cd03894
BLAKE2b-256 d512e7a710dc8fff4cc8a7d1af69b9ba1b71a7c98669a61fd698729300ab5646

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f69056bf96a927b97f790c924226d96a462db1aefe3596d5eb48ecdd9383774e
MD5 089cd74caa5d60517d7391b06734d147
BLAKE2b-256 87030894ff06a86200aecf705e04c6b9e04f16eb2e097e9a99d9491afdd53026

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c395caf1db63713e23ee07fe3e9a7ca23d00911fa223dec00b36dffd2d56734f
MD5 4d302bf0f30cdd5f387545a47525ade7
BLAKE2b-256 48c5c42414fc514eed8aac1d6200bafa67192cbdf64f83a188267ce63cf2959e

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: uharfbuzz-0.41.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 976.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for uharfbuzz-0.41.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 eca45cd46ca409464dc3e895e2706a797f7b42d8d596ff1b7f48e887fcc2aeb4
MD5 f505df5d34ef5d71308f7de405a3478c
BLAKE2b-256 aec4b3fe2668c3bcce177a8921c1f0706fd0e76420578c0084bfd853dea9f338

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 df2ae735dc58f51bef137767bc6c6efb5c8d929bb506634129e0a538fb22d052
MD5 443121e6da4ce07450c7b29b00eb9d95
BLAKE2b-256 b959051dadceebd37d6298d6f81492abfd21a333065d201308347580bd863889

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8fceb3b11f2fea265482e835b80dde1fb5c45000c7b1da91172415044f8375fc
MD5 69d38d85867d4cca26f64c22553cd5a3
BLAKE2b-256 261db0595088204ae3c2d3ad6a91ea170c0ef269e24fc4a569b9d44bbf8cb772

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 18b5dd89340597dc7228feef5a516471bb11d6deec34d6a6c30411256c5c84ff
MD5 9a8c3c3f99167d6c37b773cafce5f1f3
BLAKE2b-256 1112a3f63f2c8ba8c196e1904941bf6d4d262616ee08b601db68dd4058ab1347

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c395363e677073cca928077b65ea2f7bbb2adaa60b9d455f7f861228f9b3f66b
MD5 023bb7b5d08fdcba54ce863ae8d4e11f
BLAKE2b-256 3b2dc3a56fd8233939a5b477894e29948aadfa8c094b15d1fae10cb2b7d0fd9f

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 9fafb3c093ea9a9f4a780fdbaf33c7c9c2463b696aefa6bbc4fec64718de28fd
MD5 a72ec6f74eed486671aa56b023aae3a0
BLAKE2b-256 ab564d44d845ab2f97b121d6aa15079d50ebaf5a89c4b5bb7b0f0c89a83ac8d9

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 51a672a41bac16237cb093ee736d21e6c13610e0bbe79b450af01650667113f7
MD5 388c4a2afd2a6b0782554747487a4661
BLAKE2b-256 76e2433349303a442ad0312dffe3191b3cfbcec2aae5f573772ec77b1ce14e73

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: uharfbuzz-0.41.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 977.9 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for uharfbuzz-0.41.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2bc13a4bd3745c46bb7c946bbeb8b6e09d69ef32595bec4cc92e32732864d4d4
MD5 094a5c692405ff089d4440c67a85aa21
BLAKE2b-256 a715172aa9ebb25eca0412f656bbe4e358a7845484de39d826f22c3004a85cab

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 01deedff6b1c7655b5f0ead6c17b3a6702738871bd29a6c858c55a5a26d0662b
MD5 bc074fdf80e1021381a51ea730017f66
BLAKE2b-256 140510ebba157f89303af3a06a1ffffc54fc58353e140a07624c829bd2941d64

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8bb381ead4033dac1a90698064a368552f59d19d272834ec427118b524e2064
MD5 8b114e6be37fe76fcb53ec5a5ae5148f
BLAKE2b-256 3a4ac1ae85ef7d9ea3d6aae84175439d00460ff0a79fde31a66576b1dfc01b5e

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 216545cf6a13d297fdc693492bb5df2e82a5de175a27f069657ccd34f14f7a74
MD5 d833e4a565f531af8189ed57f01d4d21
BLAKE2b-256 071e3139eeba946017ffdc09612269359a4699b85988c6f742b75ae3f537bbcb

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a4e86a2ca7f2760c84144f7863c27ad131539a6d5f27508f636f4706d9ad6b5d
MD5 7d6f2025688dafe8991c77aeb35361c3
BLAKE2b-256 21969769b03955607d54435f4fec0a60b1acb011c0955adf7b5c042026eb58ed

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 b59feab207988a6e6eac0cfdf23557050f33caad95531611af540900b37b7cad
MD5 53bd2c4d7ff7a6dab92345de8b3d51e7
BLAKE2b-256 ace5fdb6428ad1c101a565d683268e297a6583d71f8e2056a08c88bb55f4c6b2

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 11bd2862d70e7f43d8173c3de9dc22a0f894272918cd5dc50f2ee6f98a26f493
MD5 55080545b4c291784a0fc1545f50e95f
BLAKE2b-256 ec0b020b4bbd189ef331e96b4d09cfc13a9c2da62793007ea7a1d653e79467ce

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: uharfbuzz-0.41.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 980.3 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for uharfbuzz-0.41.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 10e58795359040406d87eee0a9d09d62789ad2402d6664c94bb8b8c02649ed02
MD5 b72f16fd01f8c1e74301c1c11f3b169d
BLAKE2b-256 a4bcf6cb82bd24b3e42617509a3defc6bedbef63bc8583f46e55e4b2845704cf

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 599463cddbd7e71347a5315df4dfdce8de756021660c2510686c5495777f8cc6
MD5 3efd665c20686c23006afeb7310f831e
BLAKE2b-256 7e49ec3e1c53daac645d651c2647fe22fd97ea02e92b5e2518cc68f5469b3cdb

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1717451368f1f9c0ed65b2b1c9a6cd382ba4f2b8564a775729a6e344cca3b297
MD5 8601851261a34a060a10c17794dcda35
BLAKE2b-256 b334b11ae924a2871f3cae233508062c018751291b9079f3e200ad4d545ffda6

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0f696c2679d4d35ec83744abd4ad2767d94b97282c709640b32882d55aa002d
MD5 97405d6321e2490b372780afb29d54c3
BLAKE2b-256 fec825adbbfb117cbb79599ae1d5067836f728d65d46bec31cbc9ed14ed4dd7f

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d959a5f80bb2e05cb819d86124374e22cebbba7310c64f38c02dce65809ef2e6
MD5 cdf1d90139827ab96a818008d66b34e8
BLAKE2b-256 ba719b3685cc804c1715f0c03952e7edad28be78dc2e46941a00af60fd01244f

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4543b97a2ec4052db0d9f00cd614800a7325b01d72808052f3d939c784254127
MD5 018d654667d74ac2b6b236fcebc7207e
BLAKE2b-256 5419d58134c83cda7e02ff9deaebe210df9f56f43c7b91c8b038433561ba965b

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 211be15ae7f6261896dfd53c223882911dff51a49faeae301705593b97bd04b5
MD5 fb1bbaa3eb3f4351b83371afc1fc3180
BLAKE2b-256 30565b67103629c5661af04b85e13adab7e4dc67f7553808af4cea1bbd606ab3

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: uharfbuzz-0.41.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 979.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for uharfbuzz-0.41.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 df40d67554fc3d609bb9ebd2f309391133c99ac8d65fe73a2cb144d081bf0ca4
MD5 cdeba202636c6a526e5b3d4504069dc4
BLAKE2b-256 aac3b48a77122aa71159f13c686fde8fbe9219941665c7b96b98bac585e3d2dc

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7bc668913803af2563756ec195b9ad1e37ed384751a62a52c34e1985893122c3
MD5 97bb82561c9af96fa710708c3ce2cc34
BLAKE2b-256 08d25133fd7db0f3e53f6d2cb698b2f8a9047c8d5888763ce6a2da621cd78988

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1b8f3735e0476ee7f03e473b8d865120f3459570f074c75de7a34dfe4b794a9c
MD5 cac748dd5f44361610e111ef18b11846
BLAKE2b-256 73d5a572e16b396c0b0cac2ea621be91fe4b4191df28ab03b91b0e405805b957

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 39d65aa40bd5e2eafe72ba97e334d3969fc436c7217871e3602434c9cdd91e1f
MD5 3d063520341df32bbd64ba87afc40043
BLAKE2b-256 11e5028be99a2e1de2c0c9a2f4dfb42349e74f7bc6c5c8494db8798a6c3aade7

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 03c4cdf3962ab389529c183ce24773167fda78391ea42b88619fd0ea4e219f88
MD5 86e68eeb776bd30bc1bff37890fbb841
BLAKE2b-256 deca450e33f87e0bc2d253a7ffd8f87dd505af4f4f71ccd61cc790f729089af3

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8eb064082f54a152b5d6f4d498e86e051d418a3d378ce559857556cf161e59a8
MD5 4b7f3ea77280d6327761dbe88575e723
BLAKE2b-256 b223343bebc6cfd17196ec7b1794216c064e828102fadab9f4fc528b559fcd6c

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 34b9b6ada01cf0601848b9a10a721b2942211bf351fe67265a44f8cd15b4fd4b
MD5 c233dac5ffc2038b68f2c9e582cf8f3e
BLAKE2b-256 32834eb346a928a87c845ad319380b0c94dc1fae4c1dbd419686c54d39a299a6

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: uharfbuzz-0.41.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 979.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for uharfbuzz-0.41.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 565b78c205591994f0085467ef7e5946e1472e4285d7d003b578594e1567359b
MD5 d03d8dbaf95a3ced45452e68ccc004ce
BLAKE2b-256 7d75ccd3f74bf8e64f03ba81ced4a3ed238b56b5002a78483d605a1bc5293e33

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ffdb8a70e3d380907570e37e809c8ed40cef0bc134d4cab8b94b9827c0681e07
MD5 f1c00805025b81fa790be6ca9b089b3a
BLAKE2b-256 4d0033b0698cf208526bc53f5a5c24482e70da8bc75fa2157a0fd212bcb0e7e4

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 127d209ad794313a25afc8469b6c728ed1722525a2c8c817ff6042ce44752fed
MD5 ce7ba277a357204fb2f233dfc740addc
BLAKE2b-256 070b32fb6e3fd3a28cbad4613d911dfe1ecdadb978f83bb58c57e9bfc82001d3

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c12fbf07ff6c83b61744dc3d62bd92c02f852a862ff7b19746dd58d025c2a98d
MD5 2f00022ecabb23322c23d5ba185c3fa4
BLAKE2b-256 c5a9301cfef5b56bfcae1702206870dcdc5490c184256f60307cd81489460989

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 edbade720d57ef71d3ce76f4096e3fe79d1bcb055cfac7542bfb18c28242ad67
MD5 a5a56e5250330adcd8de5aa04863da6e
BLAKE2b-256 0bdfd50a299fff9e107564560eb5f3a9fae69fc6861232fd877b21631014e1c7

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 89db816a185605ce95aee3ddb6cc34285c2320e2be2dd4377bee98e6a92ab9b4
MD5 cae7e01cf507c294f53e6d8e586ec51d
BLAKE2b-256 e4720b9384a976b19b36bdeba7fe02830a91c9ea2e29bba31ef83b5e70d9c8d0

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1c2329195ffe4e5e287c7fec1fa5dd13985faa293671f16679b82b183f63dbfa
MD5 6eae7c71167cef81293a5172358b0a28
BLAKE2b-256 a202676cb5f25347043ac0758ca7cefbc78ddb660ab935e36e90c98265ba3ff1

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: uharfbuzz-0.41.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 982.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for uharfbuzz-0.41.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d1bed71c958f6f59725b03ebc41fb07c9ab1aca430f740f8feff2eabffd43731
MD5 5b94a75ad84ef7d629fe71f293c21a93
BLAKE2b-256 19c883b8c8a2644c97623bcf28ded23c9a89c9da70202f9ffcad24b1e9c4edee

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7f3d232d9c79bc80cc4f4ecc29713a42a3c6a27c7520cbbb6f51ed291e8f6cd6
MD5 e2a63642d15af6c2602698df4db432df
BLAKE2b-256 5d6bc9142174388bbcc82a73a06fcec10f6b5748449cad440c78c197259c4429

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 caffa8e9327755acd85986f67a37b20841e0e057b8774eb6cc88a78b5c4947bc
MD5 cfa8be4d70624f6fb69a3666f375b05e
BLAKE2b-256 45f0a26f2b3f84d662a20a7736b8a92005d3c0961a98a04344fb3f42f5586ed9

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b435a664aec0068b4c8ff313df2358ee70b35b320f94e0e6931cb6a67db68c4c
MD5 38d1faa84d51d243bd35481d0ede46b4
BLAKE2b-256 5f51612f2f214293b66032a2d5fceac418a8b34f0e87fd9bc3633413658d610b

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 85395561b34bfb27988d613aeb0281ca3b2941a31a11b3693e2bb6ddaf3520ad
MD5 87791e51920c439de21a8afc73eb657a
BLAKE2b-256 713580cb46d3446685a9fb1021b0b991bf98a0b612393c5f3814f73bfd999c8e

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.41.1-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.41.1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 31af2b19319bb1b81b6ed18ae066ebb87e14e51000788ba5735a97d054fd6a6c
MD5 045e428910482462a5d14e875e229ad0
BLAKE2b-256 b103a43879a124321b71f4fd13a7cae7109cbc278ead45685b9e571fd0f48f99

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page