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
    cluster = info.cluster
    x_advance = pos.x_advance
    x_offset = pos.x_offset
    y_offset = pos.y_offset
    print(f"gid{gid}={cluster}@{x_advance},{x_offset}+{y_offset}")

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.27.0.zip (1.3 MB view details)

Uploaded Source

Built Distributions

uharfbuzz-0.27.0-pp39-pypy39_pp73-win_amd64.whl (405.7 kB view details)

Uploaded PyPy Windows x86-64

uharfbuzz-0.27.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (601.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

uharfbuzz-0.27.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (535.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

uharfbuzz-0.27.0-pp38-pypy38_pp73-win_amd64.whl (405.9 kB view details)

Uploaded PyPy Windows x86-64

uharfbuzz-0.27.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (607.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

uharfbuzz-0.27.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (535.8 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

uharfbuzz-0.27.0-pp37-pypy37_pp73-win_amd64.whl (405.9 kB view details)

Uploaded PyPy Windows x86-64

uharfbuzz-0.27.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (615.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

uharfbuzz-0.27.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (536.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

uharfbuzz-0.27.0-cp310-cp310-win_amd64.whl (413.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

uharfbuzz-0.27.0-cp310-cp310-win32.whl (352.0 kB view details)

Uploaded CPython 3.10 Windows x86

uharfbuzz-0.27.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

uharfbuzz-0.27.0-cp310-cp310-macosx_11_0_arm64.whl (582.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

uharfbuzz-0.27.0-cp310-cp310-macosx_10_9_x86_64.whl (627.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

uharfbuzz-0.27.0-cp310-cp310-macosx_10_9_universal2.whl (1.2 MB view details)

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

uharfbuzz-0.27.0-cp39-cp39-win_amd64.whl (417.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

uharfbuzz-0.27.0-cp39-cp39-win32.whl (355.2 kB view details)

Uploaded CPython 3.9 Windows x86

uharfbuzz-0.27.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

uharfbuzz-0.27.0-cp39-cp39-macosx_11_0_arm64.whl (585.6 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

uharfbuzz-0.27.0-cp39-cp39-macosx_10_9_x86_64.whl (632.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

uharfbuzz-0.27.0-cp39-cp39-macosx_10_9_universal2.whl (1.2 MB view details)

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

uharfbuzz-0.27.0-cp38-cp38-win_amd64.whl (417.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

uharfbuzz-0.27.0-cp38-cp38-win32.whl (355.1 kB view details)

Uploaded CPython 3.8 Windows x86

uharfbuzz-0.27.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

uharfbuzz-0.27.0-cp38-cp38-macosx_11_0_arm64.whl (580.3 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

uharfbuzz-0.27.0-cp38-cp38-macosx_10_9_x86_64.whl (626.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

uharfbuzz-0.27.0-cp38-cp38-macosx_10_9_universal2.whl (1.2 MB view details)

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

uharfbuzz-0.27.0-cp37-cp37m-win_amd64.whl (414.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

uharfbuzz-0.27.0-cp37-cp37m-win32.whl (353.9 kB view details)

Uploaded CPython 3.7m Windows x86

uharfbuzz-0.27.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

uharfbuzz-0.27.0-cp37-cp37m-macosx_10_9_x86_64.whl (623.9 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

uharfbuzz-0.27.0-cp36-cp36m-win_amd64.whl (482.8 kB view details)

Uploaded CPython 3.6m Windows x86-64

uharfbuzz-0.27.0-cp36-cp36m-win32.whl (402.8 kB view details)

Uploaded CPython 3.6m Windows x86

uharfbuzz-0.27.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

uharfbuzz-0.27.0-cp36-cp36m-macosx_10_9_x86_64.whl (627.0 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file uharfbuzz-0.27.0.zip.

File metadata

  • Download URL: uharfbuzz-0.27.0.zip
  • Upload date:
  • Size: 1.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.5

File hashes

Hashes for uharfbuzz-0.27.0.zip
Algorithm Hash digest
SHA256 d27f99631bc40f0ce69c0f4dbecbe86208fbc211d20d8af2cc16f6f6fe9774f2
MD5 61168c84a0f1ef35f4c2931741c16c13
BLAKE2b-256 567572d6f88ba89f41a306f110178bcd90751701514d5686bfe15b1b467165e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.27.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d253e2554720176fa09dc1f8b82110963bf374669c0a444646c81870c5c86a7b
MD5 6a0a522ba7b2ba1eab45ff53c8b6d62e
BLAKE2b-256 709ffdfc8335b39b9906d3137b8f4d4e79022cd865feb0f6b80b818ff6231b5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.27.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 316ef8aac1a3ffe82b10ea75dc50be809766d1d0fbbe5fa5101fdca5f6dd6c55
MD5 f7763f290f8e8a7490399b80c6b920be
BLAKE2b-256 b3ce8211405e0f404ca3953e0b0423a3c28c15501d7decbc45d39264abda1e24

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.27.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.27.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8a4c18e7691683fb91936e6fecb7cfd19cc54c92fde272470dac1b654e286784
MD5 4c0f989d35a3f8cfa19e39792e4832c8
BLAKE2b-256 c2f12599301efd201900ea5750043f30de8d8573b9117827ee1fb90a8db37fbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.27.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4a15ef8ba0b98f7ecf232cd019935e529c420ed9aa3793a7d57fa7eb6dd8cce7
MD5 48cc546744cd007aacb55c2ee15a4d33
BLAKE2b-256 8a1b588ecdf3839b5995bf126fd8b05cbc628926b922a496f28d8ce57af5403d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.27.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2755c44d9ceeb323bd74cacb24508e7e563d1470d2da3646c549464f2b00fd8
MD5 c17d87534e0ede91692112ed2e597501
BLAKE2b-256 ca75ef192be730f8badaf3b6d75cf6f89fecd2adb7bc5b917bfb92bbcb2e1360

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.27.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4ffdcc3e356712723d8c17459f09392e552de869ec158b3fd595802f6953423e
MD5 9ba61ab548652791b65403bce7848107
BLAKE2b-256 c9f9a1a66d2112c331a4b4259103cfdfb5d455a0f5f0cdd6e32ef62f6502f872

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.27.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d1acd3472c6f5eaecdb3e39a2928986e3997b0a61cb7bfb589a5f95dad325ca6
MD5 b3b16704b6559d492f3f25ee29db8d18
BLAKE2b-256 2e714e1bfcf43f4be8f4d9e947d8511f2920beb68b4d8a69c29cb2713a89c771

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.27.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a9e5c41db6096b35d7d7f99afaa1f06de487c71e71340f91198e63ee3ec23396
MD5 a1f2fcf11a1280095484f8cbe5a9c99f
BLAKE2b-256 bb49981f468d9666287e65cc307d464b8519f1d5689ee8a23dceeb00999271d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.27.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d7c6e03a84a8820c09b8235e389013db062de34c8a5add80b7ef27287c0b3b40
MD5 360c52709132561ce3ca4d19ce2c730d
BLAKE2b-256 599aa4ec16cfd36d0ad48d196e4133d950e5162fbdf6b6e3e0efd21f1acc43d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.27.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 937607beffd4dc6d3c06966ecbd42830cce85039468247ebfdb3d63d9b7a3c22
MD5 b8fd9a165a8b78e2d452962979ae19fd
BLAKE2b-256 17b490a5c18b61c7d1b2b5ba9cc5f3b907152d5fc198033df4c4374454e1b54f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.27.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 352.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.5

File hashes

Hashes for uharfbuzz-0.27.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f73838874fd963c31c53f52e263962f924e8d2695c60a61148c6eb95e39a41da
MD5 8ee2f7e6a1d1579f5a262ab2025c112f
BLAKE2b-256 12764325a876cf57ffae3f9e4bcafbaab2aff0d62803f444cf49deb3ebb6a212

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.27.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0b6d30044da5967547a5cd7aa4d0a1e7a0572b9fff62d16a6ae4c962d3a9df6
MD5 0662ea15bb3fca4c1f64cac65d6f34de
BLAKE2b-256 6d6ebc5076cea61318d02e22ef8450edc18f2dc767c589ffe1da95c6d45feff7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.27.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b4c1c46be45ee4776c70be8bd96dede23afa2de3943fcbe708c7e49cec4867f
MD5 337c8e9e3b2fbb0b6ff928ff59ff1df4
BLAKE2b-256 8664f4827a4a8f0a001d28ffcdcc50387e7d4c595e92ae3287b37ce6e51169eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.27.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0ea031467238d2087fa30b38aae473889055deb3f545bdeaeb90eba932eae19e
MD5 a03b0bf68acb6aead5fa176d372c79a8
BLAKE2b-256 47fb2dc19f193088bf07a5715768d6b0f686d1dcbff889d2f832333cc9fae9d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.27.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 93e3596a9e130bf9aa5fe8ff5d801c00096fd84fa13c08e6db076cd96380fda2
MD5 7b4f3285a74d72dda0310fca4ff77620
BLAKE2b-256 cbf9b2ff307888d597934d6f6cfcd872b00dd12fd51ba34e8f22afd0d4a8cb09

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.27.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 417.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.5

File hashes

Hashes for uharfbuzz-0.27.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b2dd9e68c177eb259fcb00bf0adb32a10b211e46a636b3064bd6858c6a8afe2d
MD5 47ccf9ab0fe273687afd7f0ca4e5961c
BLAKE2b-256 279aa053a8d185189d8d0d659b14e55759cf53fd2c714c1b5c96f97bab655877

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.27.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 355.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.5

File hashes

Hashes for uharfbuzz-0.27.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e50df1b992e3117b928ccafbb169cdcd4e8d1304eefa460a865fe09e77e79a72
MD5 b028bc6c0c4f248006643c3303a2079e
BLAKE2b-256 fdfc41a1ca405bcbd580ce18ece8cee003b002dce30c7f8ec185f0c13389bec2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.27.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db0408472020ef6b3945646dac54eb0c0fcf8ea98688a266e4d677a3c5a61022
MD5 890c671a9ae4a23cd2314184aceecd52
BLAKE2b-256 81ee83f2d7a8283805594c913c30f1af0b67ae7a37e85d856e45f8d66017b41f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.27.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f56cacb6ac18cc90fae79285bff63e789656bbc18f58fe85389f27e1d30a0fe9
MD5 7bfc8bc6f475bbc74e5fd9950c4b42f8
BLAKE2b-256 2d4d92313eebd78ad355df7c7341e827c02ca7b7bbda9a5fa6f7267e81ca4eda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.27.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6a3cd6698c7140358ca1743b7c72a7e3e5df82b27885f799101ee88f6132bd8e
MD5 663b5061e52f40e353d7b0929e405d80
BLAKE2b-256 9794388d37935bc9be46d5b0fabe2291e6597e557f659d9f0bd4f2812c6ab701

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.27.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 868babc533a88cfdcf8c070d10e023a22c7b35d6691f3db154a183b868425576
MD5 41b8468bfad0fc24a8b06301cf17ef98
BLAKE2b-256 5e7bef5ee19205d3cf964eed614aef4a245aa3c7c97081f2a328aa88039ef886

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.27.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 417.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.5

File hashes

Hashes for uharfbuzz-0.27.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2bb662b41f60e7e8a1fc8f23cb2aac23307d66f4d6ba5481f18c507f8351cb96
MD5 09ce283b1207e24fc8f27f93bea19788
BLAKE2b-256 4461e955a27a197bc7e899b23e0b1d8411121531d0cdb14cfd18973808c2d390

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.27.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 355.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.5

File hashes

Hashes for uharfbuzz-0.27.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 9bdc864096057dac08c2c258d74b7bcf90c5ac60a0702ffb48622c42482fc1b6
MD5 51913dc03a3791f5d9b3cd665631dff5
BLAKE2b-256 8420b989bd3705eebc1deaa4b0bb2c04c49f8189f8e4b58fb2749f20f7712c7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.27.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a6e38d848ee3497328b1d2bb329c7cd5895f7b2be035c01d427956a26439f05
MD5 5f912070e27dac2bfa56232c87f50168
BLAKE2b-256 b0f07c6c2b3bf9219a629682a155d1eda366f6c0dba10d80aed6e7c953c2f1a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.27.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 16893ffd71bffcf7a467d3449a879014094eba37e685f7012f5cac793c3549b8
MD5 92bea0dbe0032ba92b2ba92a4fc45ca3
BLAKE2b-256 8701b8985ea389bd70a0c3444b1931876480ea29629a5032eba5c64635d56fb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.27.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 428de21bd17f0e4cf4894acc8df504edfcde864b8941e2340f761681443d8626
MD5 849ee8797ae6ad45d7525e2e3fe95ddb
BLAKE2b-256 6a43ebc89f549c36d277cd5ed1b83814afbe4be65821172918271f1a673f65a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.27.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 dc530e9fdad14dfde9ed9651ee0fb9816c5b5a381cdb89341536e1fd7e265fc1
MD5 3510bb9e64f64c62e4541b2e4091ea41
BLAKE2b-256 a01e6d851f452a67d94fe2af11969e36d13e63674344b2a0d25295d9c5f51955

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.27.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 8e0b66cb39ef87a0a33cc2eab5b21901c291756833bff097d2324ed15a6ada09
MD5 4bf5443872858e4ea6433d290cddc696
BLAKE2b-256 8daf5e3bb49009ef38e8b2f93866060000a0bf45a997274bac413bc6e3d0f12a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.27.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 353.9 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.5

File hashes

Hashes for uharfbuzz-0.27.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 6dcf609125a525c12ab0b24e5469c08ae666255fc7602ad94cb090e4ef1b863b
MD5 832c2d464b21324df70818c6e848d67c
BLAKE2b-256 b1e914ccddcb54060b5a5fdc1ce5540476b46d1d907331b74be339975bacb046

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.27.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2fa6cf4c510e8cedc86f06d58d57f2a617710aaca2000db51876d4ca6c81dec4
MD5 db681a2bb4b7760a6a9181e6e666031a
BLAKE2b-256 82ac65e9a3b0180dca8a7b94f0210271972559991c92a576eb6dae7e3d516607

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.27.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a2a465b9147e919c195a080096238c4beb050c6a4429123100fe0000f37b6e13
MD5 5b03d69257504025b543868c5e8adbd7
BLAKE2b-256 28114b004e2c579ff819f1f27ff1773d42ac30a657cc34138525f57601a8dd7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.27.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 9d7d0d4ba277349ab2051a26d6568a5466a256c18f8d1daa5d378f11d5e9a9c6
MD5 7bded991f467b23a07a7d1555eafcf59
BLAKE2b-256 7e7507629c12a71cac01a8b75da90ae46a7c3a9c71dbf91eb6b0b48c9412802f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.27.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 402.8 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.5

File hashes

Hashes for uharfbuzz-0.27.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 a3538fd547e2c217bfa89acde5f78bc5e71d90e4b2731d2ac32600eeca65b0d8
MD5 56aa36e8305f83e5f58e892700aa7685
BLAKE2b-256 588b291916624721bb21aba93b0ba39208e24960951e739aa934e2453bde7b52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.27.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 963ba9b9263401b13f5844bb773b1cd5b460fccb6812966e9bfbea48ce245e90
MD5 7456500b26d0f787dd5161b85da79b5f
BLAKE2b-256 fe3de1f910bbf30b66ee17772d50d5fe39b77447a6687831f0bbdaee3287f1bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.27.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 46c3223a049a69e475ba0b66bc2960ba0aef63ac2107dc7e3bdc14602c19a59c
MD5 bcd85c2df38bac1b256c0daa601f4aa9
BLAKE2b-256 0221daa3d7f7321821332284baaf796a186b7876b6196dc0e111207a85f352e7

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