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.39.5.tar.gz (1.5 MB view details)

Uploaded Source

Built Distributions

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded PyPyWindows x86-64

uharfbuzz-0.39.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded PyPyWindows x86-64

uharfbuzz-0.39.5-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded CPython 3.13Windows x86-64

uharfbuzz-0.39.5-cp313-cp313-win32.whl (944.3 kB view details)

Uploaded CPython 3.13Windows x86

uharfbuzz-0.39.5-cp313-cp313-musllinux_1_2_x86_64.whl (16.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

uharfbuzz-0.39.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

uharfbuzz-0.39.5-cp313-cp313-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

uharfbuzz-0.39.5-cp313-cp313-macosx_10_13_universal2.whl (2.8 MB view details)

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

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

Uploaded CPython 3.12Windows x86-64

uharfbuzz-0.39.5-cp312-cp312-win32.whl (945.9 kB view details)

Uploaded CPython 3.12Windows x86

uharfbuzz-0.39.5-cp312-cp312-musllinux_1_2_x86_64.whl (16.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

uharfbuzz-0.39.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

uharfbuzz-0.39.5-cp312-cp312-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

uharfbuzz-0.39.5-cp312-cp312-macosx_10_9_universal2.whl (2.8 MB view details)

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

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

Uploaded CPython 3.11Windows x86-64

uharfbuzz-0.39.5-cp311-cp311-win32.whl (946.2 kB view details)

Uploaded CPython 3.11Windows x86

uharfbuzz-0.39.5-cp311-cp311-musllinux_1_2_x86_64.whl (15.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

uharfbuzz-0.39.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

uharfbuzz-0.39.5-cp311-cp311-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

uharfbuzz-0.39.5-cp311-cp311-macosx_10_9_universal2.whl (2.8 MB view details)

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

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

Uploaded CPython 3.10Windows x86-64

uharfbuzz-0.39.5-cp310-cp310-win32.whl (944.8 kB view details)

Uploaded CPython 3.10Windows x86

uharfbuzz-0.39.5-cp310-cp310-musllinux_1_2_x86_64.whl (15.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

uharfbuzz-0.39.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

uharfbuzz-0.39.5-cp310-cp310-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

uharfbuzz-0.39.5-cp310-cp310-macosx_10_9_universal2.whl (2.8 MB view details)

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

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

Uploaded CPython 3.9Windows x86-64

uharfbuzz-0.39.5-cp39-cp39-win32.whl (944.9 kB view details)

Uploaded CPython 3.9Windows x86

uharfbuzz-0.39.5-cp39-cp39-musllinux_1_2_x86_64.whl (15.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

uharfbuzz-0.39.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

uharfbuzz-0.39.5-cp39-cp39-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

uharfbuzz-0.39.5-cp39-cp39-macosx_10_9_universal2.whl (2.8 MB view details)

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

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

Uploaded CPython 3.8Windows x86-64

uharfbuzz-0.39.5-cp38-cp38-win32.whl (947.2 kB view details)

Uploaded CPython 3.8Windows x86

uharfbuzz-0.39.5-cp38-cp38-musllinux_1_2_x86_64.whl (15.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

uharfbuzz-0.39.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

uharfbuzz-0.39.5-cp38-cp38-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

uharfbuzz-0.39.5-cp38-cp38-macosx_10_9_universal2.whl (2.8 MB view details)

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

uharfbuzz-0.39.5-cp37-cp37m-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.7mWindows x86-64

uharfbuzz-0.39.5-cp37-cp37m-win32.whl (940.1 kB view details)

Uploaded CPython 3.7mWindows x86

uharfbuzz-0.39.5-cp37-cp37m-musllinux_1_2_x86_64.whl (14.9 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

uharfbuzz-0.39.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

uharfbuzz-0.39.5-cp37-cp37m-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

uharfbuzz-0.39.5-cp36-cp36m-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.6mWindows x86-64

uharfbuzz-0.39.5-cp36-cp36m-win32.whl (1.0 MB view details)

Uploaded CPython 3.6mWindows x86

uharfbuzz-0.39.5-cp36-cp36m-musllinux_1_2_x86_64.whl (14.9 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.2+ x86-64

uharfbuzz-0.39.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

uharfbuzz-0.39.5-cp36-cp36m-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: uharfbuzz-0.39.5.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.39.5.tar.gz
Algorithm Hash digest
SHA256 66ed5c62fa886b54b8e334fd1fbe6f0b970d3853015914366293b176d7518e5d
MD5 c93b126df0e7caa00f67c81c151db933
BLAKE2b-256 1be3f4b14ae7bc2b6f2d455c6d08184145aeb2801eea2cb57bce85747c4e427e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7c883ecca81339cfca44b6d9d099b62fbbd77488ad6712b7165e4cc4884d1afe
MD5 1de6b0dc3193c66b333777c8da35c116
BLAKE2b-256 8d7e924da5c3f639ec4e07d0ec6e01c28d6b33caa4572b493725c186f262ea80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1656aac4232488102faac3b988808863298b5c5b73898d978c17c241ef09aab0
MD5 1617603a9c132c36562c72a4d07281a9
BLAKE2b-256 49e015b347ed5e6663f0555551ea1ff5b94779d346b21d3cc1fccb257d44b84b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3dc9d5f5444cea6b4347e603d88711f6ba8f02c52031c1faa8785bbdb6a2b40
MD5 677c9c2e514b860e9a35c1be621e63d8
BLAKE2b-256 2bd1e3cd036a6bc07a876a981f9e95e1ebbe555bd817d93254efb1cdd57a3e3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9348762a159c30391bb6789c864611030236f8408cf222e3416946907ab15cd5
MD5 40e9d73f1a0c871a31c1d7058a23364c
BLAKE2b-256 907c8e35430650d1f32a1703f440418179d43a5088309acbcb3fad957c846e14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0d9401ff2f98e97c14d72df327149dc9241ff1e267d94d6a27d5e2b3d5bf18be
MD5 5efc1b6b558622ef4a4933b2050adec3
BLAKE2b-256 fb236b07a25d76f8f009e4b8b152f61d7118689a457341b95ab92ea47aae2353

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9034792a03e7bcde7f77e73ffe73a20456ff4ca81602ff3cf2d51154697cec64
MD5 15a16924b9342bc5bdd1d8b11763d333
BLAKE2b-256 4ab3aa434ba189043d3d7c40eff80011b32884eb8a6053bef0419c6140a170d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f86c92bb4e259ca646c318011a052aa07c6ed0e7106405a0a410692b68f1dcbe
MD5 d13fe968f4e3b2a84537c00409dc2fd4
BLAKE2b-256 42685f8f8b7bcde422287579c4d249af2f4b37f29ed7f887ca4c87011128c321

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 59e7878f0cd4125098923fdac7b3f7cfdabc17c1e4ab0a984ccb1416b78cb831
MD5 ea3a1d28be1d9859d97db78a64e99565
BLAKE2b-256 9bed9d193075a084449ba3065eba9efb7365356d1a5247f0f18a85b3eb1cf28c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e2c2cf06a3830f6b64c888db2099aa7c30ccc0d1cb9f44958869fb4e51f9f083
MD5 5802af5d2bd3112365fee493b9d46e96
BLAKE2b-256 a8c209c06929eee41b8d85cd616ee2f5f37e3cb7b9e466357ff671ccb00e1d2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b8f8b17743b4ad02cb69b8a6c918f676090ca42276f5dd855ccce58ef0da828
MD5 1e4d104d64090cc5c65dbd8e2c93740c
BLAKE2b-256 81bea17cdedbf72588fd14f941c9fdec2e97198fac86880a15f1b90624cadeda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 90599d7e47ce6f82b10a85ee9d6edd133e4809934ab11995e21b1b4af4967294
MD5 df0d9b3dff729cc71a4862c40d6d451f
BLAKE2b-256 9ebc946405837c82f20af56ae55f6348d4020bdc39c35352d480444aa9360ea3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 df17d4584590a94c3968889a3cfa5a752005d40746fa035bfd31030075516d95
MD5 cf4bc5e8641d5670cba41e526d7e1be2
BLAKE2b-256 fcd3641b953519b3ea9260acae8eb5e2fe876a3eb72c6eb9f471a9956dfa1dee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 530520229f6324abec634bd80412bbed752c910ae5dd9d08e62b4901bcd48745
MD5 9540c9b50364eb84958377958175c26b
BLAKE2b-256 67dce4011ba9c11183fed64205c87723778cf3273064901caf8c18afa84a1fc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 42e01d6da7b922da876ce1d54c3ce62d9be4c700fa016cf2698b700555f4870e
MD5 e511778ab59426f74d61a3a0bf174c87
BLAKE2b-256 ee178bd04f53ef6e7c39fa92dac9da49b68c1e984e5887740357a7f57b6b6317

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 113425d9065b12c43364a9cc1adb6f2a94784fdb9664108d0e9d111605a4ec42
MD5 c51260d4c14f80d0a1a0425291c21965
BLAKE2b-256 621be02b881d8ac0968c0d9310f6f2549c116742626610abf41da3c839cad229

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.39.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for uharfbuzz-0.39.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 da56f678fdb0cfd2ace244feb9fa2721bfff03d8fbd7315c21e67b78be6e5281
MD5 69b8be9f787ff10ff5db9477eaa98545
BLAKE2b-256 3c0a79a77261a58b682295953dc564d35b7bba2cdc67a432cc020bb3b07eec1a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.39.5-cp313-cp313-win32.whl
  • Upload date:
  • Size: 944.3 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.39.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a2b3ca779c7e6287dbed7dc0b55f03c9204604ab02fc545b110be653eea604c7
MD5 f3ec91e15f2862d7952a3315f41e9ea8
BLAKE2b-256 7c472eaf965db78393b8d43f205323a6332ba4754298fcd898352ff19d650cd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 70e21dd0e1641a07e6d15d328117eaad0f3d9c238c796abd9b08830a6557c7af
MD5 270efa7251576bc746ba2c0ceaa5558c
BLAKE2b-256 9541090fa863aa04fb275cb19c7b4c5512aeb3d1b243641d89176fdb4ba07431

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 93afda33d2eb626a11c0a90d681c6c5d01948c54fc4dd8225caf50dfb2a7304b
MD5 c186da50b5e6877cc561e9aec8879287
BLAKE2b-256 d8504cd5ae02c653be704ea1a898ac48355a74a8b2b42a2b3b7578abaeca0d35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 999dbc59568731df40a6531d1bd55dade3786afa153f1456277fc2b88fc4da2e
MD5 cd1e01b673f034e5c4a1af96248e6451
BLAKE2b-256 92161e34d71a711a7c596664ec03bda52d4c8e39869648210309dddfcbe4cdb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2fd9aa2a6e6c409b8dfc4b2d7115b074068e6234df1dd283c4191ca7c5b67a6d
MD5 19c0c18452027830d3276fbb7d7777dc
BLAKE2b-256 88bee425609f4598ffed1269f971fe1f434f6944570d7516e3ba2693c023883c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 2a69a774e0428bc2dffa5cbee2b97ae3b1d97559f71c3895dd39188d01f2580e
MD5 3dc467977db5fb8424b32e4143276bf3
BLAKE2b-256 108d21df157b02fbbc3560c40bbe668dc9895441ea67020f5c2f21e17490fb2f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.39.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for uharfbuzz-0.39.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9272f62047ba1ce0dd085f75641c2435d72a7854d6d53ef059e9fa01bc62a81b
MD5 af17903e13577085c838fcfdc12eabc6
BLAKE2b-256 de131612d10262b6c7efd147a698ed54ad590e5d3555c1e9ff961ec32690e86b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.39.5-cp312-cp312-win32.whl
  • Upload date:
  • Size: 945.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.39.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d57f95d71981bc3a0b982dae9e73c1c96c80d770b4090719e6fedce37581fd35
MD5 5fd86e14583bef9b7f4f549c5dffe280
BLAKE2b-256 aed224d1bec0ae5bfa627dcfa45909cdfdb84d1b31bd394502703aa98ac7b742

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 31c621efe82b7ede34931e9d765fe79b93ef03eafcfc954ad21eb2d267bf55f1
MD5 a30804a7857ec941becfba092f0dac2c
BLAKE2b-256 d8aad328806a89f633e3643329a98a6365d85c61b0b83ba8686f49b8bdb73778

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b14a1e551289e5cd305ec7d57a74f194e9cf6150cb0e632a6126a2651c954973
MD5 7ac9c807c9fb0f8cd7fb76cdea0b4975
BLAKE2b-256 73f7948b75f4caef8ba44e548b9feefb0855fef7b8ed46923293ff42d376bee2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 783f9f62cbc79dde319829aeb305e40ccbdc8e3416da1f08e53463da2a332592
MD5 e8a64dac7b694e86f4e5c042dfd107ba
BLAKE2b-256 1afa9f2951e6c720aae26b0ae9d43fb1d35920d43fe754fb1c4474bfd1bb23a6

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.39.5-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cd375692db2dad9e2fc93130df2c928054f4f6b4df96e1ef205606c50e05b8b6
MD5 d0bf372e758bc30befe69b904a454c99
BLAKE2b-256 39d90d2b5a6c6e8c215108cf66a26a527a5d3d1fe87f20b5c4ae5b8de62052e7

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.39.5-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e7b833e4e62c9b2813d802425ce4b9ff12d174e261d40ac2a9501aa8fcd104e2
MD5 c83cfaac6f457084e0d5e6d35e866f38
BLAKE2b-256 85af754727a427e076179b9f82cf0ff2629a0d3d7234dc2874bb32d24abe85de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.39.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for uharfbuzz-0.39.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8577c7da85e2262b5d5d35b014e303c53f196528107d677338f2f1080ef8bd27
MD5 f5ff779e980d4253c09c773ccfd70c34
BLAKE2b-256 5bb8dbe17759b71955c6b4d1bd1f1f3812be9f221f400a3b35baeb04acd21d0a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.39.5-cp311-cp311-win32.whl
  • Upload date:
  • Size: 946.2 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.39.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f2d87e0ae13b223f3fb76984b47fbcfcf27cb2e6fbb2a1c60fbfa81a8529292a
MD5 af001604f98bd9edaea50481e047a02a
BLAKE2b-256 299666481b34802d6c40f85c2501defeb5d15d9dc1fe477ddd2a3bf2233bbfa4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ac9c58b3be2a2ed8fc608696511bf0142890ba3c07a172ca5ee8a96ce713f25
MD5 67d479a592ff65c86343b57fc9cb6edd
BLAKE2b-256 7dfada8e2ad4f2376e50c9ad3c21edb8ff08923a9f227db2e298ca3dff14aaae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c1b63023848108ae6d19c06d8a375b48670d9c645e65df251c800437812f38a2
MD5 716ceff5b87cdfce70276b5a196bc109
BLAKE2b-256 0db1c75bd6f5c5b3daefed11e6c2705c171675de5b76717f3cff88616c4e0478

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd246b29b9661a8cf6913acc240ce8bc142b6484312f4bddb728e2d54340a8aa
MD5 7d453713ae45d09d60a3afa503f8ae1c
BLAKE2b-256 e730cebe6dd7431c320944ccb9da4c87f4f09753f31eb40017bf51430e7c0f8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b86913d64f8dda6b79f38d64456cc8736e6f8137af3d9f0c53c1483f37846bfb
MD5 4d7de6795469731e7f0387e5b9bf07ab
BLAKE2b-256 77ca033d9746bf44fa70868a83c33145feb19152dd0d1d926fbe58552d257018

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f8de0f607152c36c17424cee1594b36975bafb3269d472716f3cd393e37657e2
MD5 7a4ea2fdde34f6286cb5b14e02ee8c7e
BLAKE2b-256 9536ae9a6cf260e5b6b0d525a5e41222d3f92c2896ae9610e48b2d9889d5bb27

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.39.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for uharfbuzz-0.39.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7de4c7621b9723346683699f2b1562e41ba23647d771526a6014df1fdb0ea9b6
MD5 d807d33b7cac3cac8d17e680e3de1aa3
BLAKE2b-256 c8af2d4d5646a951cdf1eaf17c33db5639ad6bfe69127c86b0d45bc096867b9c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.39.5-cp310-cp310-win32.whl
  • Upload date:
  • Size: 944.8 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.39.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 91645c2025db8d402e204ce6b1da69f3cd53ebf7bcc41f93f134de81d6238542
MD5 2a13b64599106ad1475a4ab13f2500bd
BLAKE2b-256 75f08d164f37565ee3e100424b646f40abfd0a155f36b07db4735c2cba37cfbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4bd4d683e29ba6c4fb15e8c2ee851fdc18bd483da146dc4d5838a9cf85aeca37
MD5 f140589056e2de21d26fb64dee719409
BLAKE2b-256 d75582a1e48d709a769390e6534b63245961c0af82c57ba31196da80a758b6d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6902dc803097dac97d99ecf7fbe67a5f07019a7e9663a6b3f22985f05fcf8035
MD5 0f3c377f711c79f26eee64bb16571994
BLAKE2b-256 746da5c834b3e1dd45599900ec729791cfb14bd794b8ea9f4fab81965ed7dc7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7243e3575edd26fe5814ce5aad8b8d880c6e76533b632f7898bf4510442f221
MD5 e12d468716190ae6feec2ea8751e967f
BLAKE2b-256 4546a89caedc281a52743f37653bd2c9fab0541cb610129a3b0627474d1ac379

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 53311ccc9fc7cec9599e74e41ba0c61b628c834e786958267c24e1f5cc599d1f
MD5 26260f5cd5dbc93bed41b52716a7a0b7
BLAKE2b-256 bf1a2f057d3cb1a017eb6cc37448f1f2fa9170b9318b89c8712be0134d00fc33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b504c7795c25a102c72f510665fded133146e4eb2fbef8ed0cf4bdcd87b77250
MD5 64e3b25d3b5a37d8dfad36aa59f45957
BLAKE2b-256 2c75bd8a078114664b3e1198a7768eb22dc88dfd5f596f1b187f6779d1c28842

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.39.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for uharfbuzz-0.39.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 af46200c1e5a28796f7d9b7e734daf482ad51dd983f3e46be18eb00cd1589cee
MD5 78ec4679f85ed6d34874d7324c9bcf56
BLAKE2b-256 6b6ee2e58a1180a198ba2739ad77e7813531e1d756ad8ab3586d3bb78045068d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.39.5-cp39-cp39-win32.whl
  • Upload date:
  • Size: 944.9 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.39.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ec9500721e4c7540a367f93cecae309c68996f19e7fd59491aecdec6e402d7e0
MD5 06b5b9d1354218dc45efa275d2c2fa0d
BLAKE2b-256 ed4d18f4fde7aebc42e20cef1324a83cbe17367cce6c1dec36234c5a9d7aba99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 44a4d6d126768606d80aaad9de695d9e86849de68f849477a0516f86d8ab7d64
MD5 b6e02a3af32822c9318041a04e07e9d2
BLAKE2b-256 797b39eecb4786175727b77c0caa6dd1a87a17d9f5328f59278ca82d3dc4715d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 401f37ff12fe6d4032de968e901f37553b4e255afcaa6d835e51b8407f7b7aed
MD5 0a9aed20fb225aec03fc2e0ec80bbbbc
BLAKE2b-256 d6b83d97c67d26393dde75c8ce2b8fe4ab708381015dc7b17df0fc7ff473dd1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e3c70ad848fa83cd549c1e5ac127ba6fa201c012d4af0e58d3f059b6ddd4eb64
MD5 4e4f1ecfa36dfd00dfc7053709db835a
BLAKE2b-256 d7dd6d83e3389f73b948bead1e81301f0f783770f49ea7108b539a5412373713

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 93f6a4eb194a5a115f71e26653c4b2973aaff8a7f95f301f474de6c46a82a2ca
MD5 fdba52608798b69559060f9b294bcc8d
BLAKE2b-256 c21e9d2ef40e7a6e889d54427a76aa3bf22d85ff072f34b854aae5f9ee7390fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ed79b201797730d6df398706dd1612af2f0739045281c0c51c06062bddf0da45
MD5 0d306a102c6a158701d6ddab7745cbfd
BLAKE2b-256 7db9869bb3ce899c761391798047fa8a722a41c5929dbd8803d5ce71b4d387d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.39.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for uharfbuzz-0.39.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1277ebade8ca4eed805a953eb9a1c85d24621261200044c3cd63746744ef3f6d
MD5 7a5e5f5b75dbee10b2efcfedf7d7bfa5
BLAKE2b-256 717cdec514744a14ffc26477e12703946d38c41ca2f0c22dfb209867d327beb9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.39.5-cp38-cp38-win32.whl
  • Upload date:
  • Size: 947.2 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.39.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 66fcc75369aeef4145609300fc6d4496df6962051b5eec29a5d7b06948682b24
MD5 bb6aa70605596d397c5a8c22a723ebe0
BLAKE2b-256 248488ff12f3b75f40c48857ae7ad65eb24885bb8bfef3bf100f9403709259df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 98e0be8dab4321aa4cc6c8b6050129d6b5b58c07c32fdecf27bbb6df1108912a
MD5 a97af31f69b93f7f56d961e82b6f3731
BLAKE2b-256 3943d4ee8ac5f271f063dc30467de27d8899676d1941429e409f16dc73dd5b47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 40dbbf572383148e2f3729d4b1d717ad7117a8611ab734b45bb147a100af4784
MD5 95b7675b413a071aa97d52b75e01316e
BLAKE2b-256 fd991a444ededf4f498138e9490353efc18fa09385e327c8b488b1792d129e65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 287dacf3a69c18429af3056af2445a544f2910f8a3c0006822badd408263a112
MD5 6020c2a9cb8a129e0604c88558a1e27d
BLAKE2b-256 20bbe8689c0f2eaf9bbd365822847dbf41a156a6749e0e11f08372bac640d702

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1656387136a7541afb69ea15545be1158fae6a9055461881684b902eb9b5ce53
MD5 7588489a160c2ddb74985a909eca219b
BLAKE2b-256 2c56c5139b6f212170947ac30640dbda7e1a96b24bc2b5a46a0a5e3c48081eda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e7d2de58fe8b2b2d5a65101421e9564bfce16a2d38d950cc0b982a9808fcddeb
MD5 ee6660f87b56f4a99bbc9dfaff94dad6
BLAKE2b-256 86c83494a79a279bb92675ae3f9890a6fd0f0835c3e4358b3a6782679e798c82

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.39.5-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: uharfbuzz-0.39.5-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for uharfbuzz-0.39.5-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 91bce8e86183539dbe74341aa05d7d91c12187106ab7f0576dc762f6bb813e30
MD5 c67619f4804a353c3311a83be72850c5
BLAKE2b-256 22c1f2739dd4f58aff5e4961d6f93f03ed4ac694dfe6ac10bcb47d2bae3e0a83

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.39.5-cp37-cp37m-win32.whl.

File metadata

  • Download URL: uharfbuzz-0.39.5-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 940.1 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for uharfbuzz-0.39.5-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 874554c9316d0107f304913280a440974367676850a5732eeb140cc7c7f1d86e
MD5 348dd05383d8500f959967c0b64b7f4e
BLAKE2b-256 408978c90027477595fe59d593c5431e9fe35376c87ca3c4ccaa604b3a9e15ff

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.39.5-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e8750e423ef481c9563f75b96769080ff4c45041c66a48ce9ee94c379b0bc303
MD5 03e86f1b7bd2b0fd7ea249e686579615
BLAKE2b-256 074f3b810f9f7f14836c955c03471ad792482d1e47f601a1de77eec991d6ce17

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.39.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 64aefe191faa9275fc91204b70d315ac0f408af5c899a8f6102615ba9c17f10b
MD5 a6b6731eb216408272cd391a12b3725a
BLAKE2b-256 08d06520d6091138a840a2932c5f42da53cdfede713f61fd9de57cab0346b9b7

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.39.5-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 12e2e2ddc9956fa25bdda524d4492b9cc7bf07d14a451aa0e12e53255542783e
MD5 3c7bd63588f5aa45e7e2cb675548fb27
BLAKE2b-256 d5968038807e807178a0c24a3c7251a34b5afa2581d4284a22395c66f926022c

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.39.5-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: uharfbuzz-0.39.5-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for uharfbuzz-0.39.5-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 3f8e05c6d889bbb97d6e8dedc381696bc44b388be5a4bdc744593514bfe42fea
MD5 a0aca13eef0e222291873e89ea19b907
BLAKE2b-256 5f3aa5775192ee2f85a102030d63f1a383376fa18e7a14f48c6481253d28d879

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.39.5-cp36-cp36m-win32.whl.

File metadata

  • Download URL: uharfbuzz-0.39.5-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for uharfbuzz-0.39.5-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 8380a4cb24ecdfb5a6c9cbf8b00999e382a50d6053714f5266502cd0b035447c
MD5 21ef8a5c3696f9be7547bac0f713c0d8
BLAKE2b-256 6452fa037b87221d361e71f995583ac5a9ad8f097255c4e12e41b2bcb3d2aace

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.39.5-cp36-cp36m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-cp36-cp36m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0cc454b062490f8ba4849feb94dc3d13c6ecd6664f24cdeee1240a0034d2afd4
MD5 83e2bd5d0611b36565c33c99d76e01ad
BLAKE2b-256 0b2170a1b208f41c58f49d5c3f1832da1f936e03ac63f0bda3571fded40bc5ac

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.39.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0cc89d1a0a3a2648acafa5d76039703335f436f2483e814f5c6a5a00870fe8bf
MD5 0ab785869a1cfc282f989ba70e1240a8
BLAKE2b-256 e1612263e07108831d8811adf718180df58979168d9546d0ee7add807fc1c3d5

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.39.5-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.39.5-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 091d953f7e599e1009ed2a14480c71c3e9bf9f88ad170ba7b61e34e4a2a46ae3
MD5 11eadf677a8cd0f5c3d3b0aa134481f4
BLAKE2b-256 ae8ef7695e915fb8aab9b1b7ee466d36125f958b53259ceeb1e8610bbba41515

See more details on using hashes here.

Supported by

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