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.24.0.zip (1.2 MB view details)

Uploaded Source

Built Distributions

uharfbuzz-0.24.0-pp38-pypy38_pp73-win_amd64.whl (833.5 kB view details)

Uploaded PyPy Windows x86-64

uharfbuzz-0.24.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

uharfbuzz-0.24.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

uharfbuzz-0.24.0-pp37-pypy37_pp73-win_amd64.whl (831.2 kB view details)

Uploaded PyPy Windows x86-64

uharfbuzz-0.24.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

uharfbuzz-0.24.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (547.3 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

uharfbuzz-0.24.0-cp310-cp310-win_amd64.whl (426.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

uharfbuzz-0.24.0-cp310-cp310-win32.whl (360.7 kB view details)

Uploaded CPython 3.10 Windows x86

uharfbuzz-0.24.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.24.0-cp310-cp310-macosx_11_0_arm64.whl (588.2 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

uharfbuzz-0.24.0-cp310-cp310-macosx_10_9_x86_64.whl (646.3 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

uharfbuzz-0.24.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.24.0-cp39-cp39-win_amd64.whl (426.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

uharfbuzz-0.24.0-cp39-cp39-win32.whl (360.6 kB view details)

Uploaded CPython 3.9 Windows x86

uharfbuzz-0.24.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.24.0-cp39-cp39-macosx_11_0_arm64.whl (588.2 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

uharfbuzz-0.24.0-cp39-cp39-macosx_10_9_x86_64.whl (646.3 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

uharfbuzz-0.24.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.24.0-cp38-cp38-win_amd64.whl (426.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

uharfbuzz-0.24.0-cp38-cp38-win32.whl (360.5 kB view details)

Uploaded CPython 3.8 Windows x86

uharfbuzz-0.24.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.24.0-cp38-cp38-macosx_11_0_arm64.whl (583.3 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

uharfbuzz-0.24.0-cp38-cp38-macosx_10_9_x86_64.whl (641.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

uharfbuzz-0.24.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.24.0-cp37-cp37m-win_amd64.whl (423.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

uharfbuzz-0.24.0-cp37-cp37m-win32.whl (359.3 kB view details)

Uploaded CPython 3.7m Windows x86

uharfbuzz-0.24.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB view details)

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

uharfbuzz-0.24.0-cp37-cp37m-macosx_10_9_x86_64.whl (639.3 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

uharfbuzz-0.24.0-cp36-cp36m-win_amd64.whl (492.1 kB view details)

Uploaded CPython 3.6m Windows x86-64

uharfbuzz-0.24.0-cp36-cp36m-win32.whl (408.6 kB view details)

Uploaded CPython 3.6m Windows x86

uharfbuzz-0.24.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB view details)

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

uharfbuzz-0.24.0-cp36-cp36m-macosx_10_9_x86_64.whl (641.4 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file uharfbuzz-0.24.0.zip.

File metadata

  • Download URL: uharfbuzz-0.24.0.zip
  • Upload date:
  • Size: 1.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.24.0.zip
Algorithm Hash digest
SHA256 96eff48ebfc4bc4c59d43a7519e931b046b8e29c1c404e805561423f99ab2210
MD5 61179a9b26a2f23da2d0ab376b38df02
BLAKE2b-256 f859f5005c177ddd914ae400364867a21d2aecc8a64e7fc233bfa0199feb139a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.24.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d8374339b385e5d9abe6cdc8f80d0a4d3949348612e397f4d94acaecf5210edf
MD5 03b942a9f0085b3b9038681172692269
BLAKE2b-256 51fe992dbfaa7ae2435594c64f942f624471522b3ba58e18c53e444028e4feb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.24.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c530f30e5fc897438a8516f06b5b944e120104fe95c8eb0c6fcbdd0d87d0b1f
MD5 0caaa55ca427e304b907956ff6ecac8a
BLAKE2b-256 be2d537bed1957da180fa50e7a0e2a532e5a6d38156765ab8019f726db50a050

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.24.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7be98d388141c2016c1e3fc6a4435ac7e12d52bd69c1431d56a1cb4cb4dd3d52
MD5 2fe504253733e75ec2b7d4b51f63a26e
BLAKE2b-256 bde77ca6a1775429dbf205e71ec72d2193e0cf103fce40f4c95c3287ff16d5dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.24.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 80ce239401a4231b918407ccaec024524588db6f94d8bc997d9452b10a2d3484
MD5 1de179834ebe79fd77baf452ac6e1c82
BLAKE2b-256 bbeaa8eb2ba7b0a0ea09d8e818809462aede1f24e0258743619f3da84a158bc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.24.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b25b5796e55c578fbab2529d1e55bc659d595359eccd105d8a93fa1ca8e79b19
MD5 47057653d0912e9f38ef5af79856e677
BLAKE2b-256 8f7bd3ddd0969428a5dc74149aa0b9f777638547b8a1672a678390a6835ee390

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.24.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1878929b47e7c3dc10f70c1083a331684328bd594fde02946bfafe32444628e3
MD5 6a851513a01023769f2fb76d4e165922
BLAKE2b-256 89aba9416d662d2d3424e01c3691c0b8845e1da8d3d2aef8c3437ebea7bdd169

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.24.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 521442630f95602e381df8d22fb1deba91b4a6b8a7b4904c16a1548b82c52548
MD5 3b981f64b76d5cc937f89833d7155873
BLAKE2b-256 f1bb946e49c6457aa51138c86dde8b88595f9250cc2a6ad84ab440073b8db510

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.24.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 360.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.24.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1beb79bf49084e25b1880fe24780c351bda9f6bf790a0be5cc299e2f5e2d93fd
MD5 cb539330fbf929406a63f3eb5fa946f6
BLAKE2b-256 33dbae63ca9d753509249fbbba01f76ff31b58df572ff23529161f3a536024f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.24.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 97318ef7368e7e1b25c0f3e0297a037b58b39225a8a6d8365293292d9d52efe2
MD5 a563fbc7583e6c742b87063b39a5926b
BLAKE2b-256 e20f70d2d86c0d26b6ef2fb44675e181cd175cada22fd36e685fa2fb44266c50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.24.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ae0ba3c3ed961b660ca9dffffb761ba5b90f8c4a50e21c367f1040fe0914e4b
MD5 a6c9af5a846ba25f9bee52a7c66413d3
BLAKE2b-256 904283d9eb81730c3852fbe4c2e0cf4b3c6076343680bc4908c45a2eeeb698f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.24.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e24788a4b382bbf9a410f3a19d8c4834a6aa375932a5172b270894265c1f8650
MD5 97b7d95d49c46838461e28704db3a08f
BLAKE2b-256 dd5900fee7af1af2edd24060b078672026f751837fdeed65c2bde305e0a6f6fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.24.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 bc208eacf9b397af013e2354dc4cb695d201d019e74d6e0d8b8c7d690b014981
MD5 74e7a7eeb6d3b58c72452a36f8bda128
BLAKE2b-256 4ee9df8729bec10db7d33b5f58edf4b5f36a2ded5593d744448ef27a89895b37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.24.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9089bc0cdea76c8ec2b58f955c5d4dac551b63191eb5872f668ff56a571e8680
MD5 38f46eaf71924512252d5dfdd86a64df
BLAKE2b-256 2813e1cf3c2108c18d58ca104aabad95d7893c3e69c647793fc59ec2d5cde79c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.24.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 360.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.24.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e5b204876377a4d4acca4d5c8a1f6d4fb11a5c747452e9007aac71f9b4e5c1dd
MD5 96e90a052a9d216ef40fa1a8d018742e
BLAKE2b-256 438a85c33b309cd25d08bb209be2c7b25c446270a92fade14676f5a62e7c826b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.24.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 72c45e40f0809edecdb734139df9de25bc43f0ec710ac0592a851681c2dce172
MD5 e9ff583a10f03dc9374803570a7d490e
BLAKE2b-256 b9cda55ba87907ae3c0e2d18703d11c5e38728c01e7cd49fd3ef9032e640e6d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.24.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ead0f0b6749f023d96f7d6ba51f3d7e1671a9e57e441419f57f178e8295b1a3b
MD5 3864deca809590c1667da5aafab88eba
BLAKE2b-256 86a0f5bed0cedc121a1df98a20b41575b6e28214d4db56f080c18077d1f818be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.24.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ff47d281af9b04c2bf205c5b9d345826a115e43fd0623479f57518d2501ecaed
MD5 0c020cfd32e4aab625bbfe085a4384a0
BLAKE2b-256 911466636bb6c6a7272cce7230e14bf7b77634e5de1e12284fe00884238204c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.24.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8f43b0795f600f7df04c4938254efb186fc6b800f3d689b5a2c4bd41e45aa012
MD5 824470e6b110c88a80df932db396940d
BLAKE2b-256 42e22180b86a333c35ccb14612b6b78d190bfe5f0db6d823631c26a1d130aee6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.24.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 56b5f83c735e7064e38de583d056821559ee17f1e89a875c066e0e79ca9bf94a
MD5 28902cb99b4fc4bdd976ea83c6c977fb
BLAKE2b-256 977ff434a86df751afa288d401a1bec699e9d0f42f58e80c3b2f9acbad8188a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.24.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 360.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.24.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 fd2fca934d2344a9620934d87d750baf14f9c8a7476dd97b73f8cdb4d7db18ec
MD5 c9ef738c6b4685c4848abf42f826d59c
BLAKE2b-256 bff12177c834a86b8f41832c8e640e280f3640ed3abecf3308391a7f0c106bbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.24.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 abbac4c3f7a9f401cca6a034c178d3ad3fed51d09874fac6d9da67eab77b2571
MD5 12f92223c922eb7ccf9a67d89fddfb43
BLAKE2b-256 5546deab9b0c7c54d1732f71c0a733f0f130cf7210f0b63bd4736ba58858f8a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.24.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be61cc1a85b7a39c115b96620b8b7b4ba87dd192092fbc5c93e56261da1bc530
MD5 859bcf387fa4378c44f4498549e69c11
BLAKE2b-256 8084999f8c2316ae84de79b556dac6715142194b74adad160483aa9c884d0dd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.24.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f7ace0605892868ec2c804def9cb948a967c348c0c3609e68d9b4a89e64cbf50
MD5 a679b56d8e25170bcdd8fea56bd2dcb3
BLAKE2b-256 90e6d0a7d7e691cac2bb904bf50c21b2e69780c0c6370acaa607107675041cd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.24.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 88b3f2c122221770033d8e191c0831d699a24356b8d9ecf939f6e6d6a9f819fd
MD5 dfee81ff1837f984235118054700c457
BLAKE2b-256 65af1e0e6cf0c1cd099e7fc33bb95cce1aea2a8f319490d00f045db5926549e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.24.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9620c05c577b2610480b60c3227a02cd6e31e9db0ce5257cdd21f049eca33ec6
MD5 8d71a373048a2c83daa0f8b4cb0b7276
BLAKE2b-256 7de72f172df8cb1687da987993b78ecb337bf10875cd89265d3a4b7e827f15a9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.24.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 359.3 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.24.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e9151ea888af94c79ff7e42816b5dd9f5a3d9c5fa5b5160bea9b782e93c900b3
MD5 9bdfb44d743331805f7f7efb5e64c96e
BLAKE2b-256 f455fb00cd55250c0597ec17c0dd63d4ed4f506e15487bb15a4279aa42392e8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.24.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a056636ead2ca590e153ce5c91746489dfadbebc3402802671554d049a4437d
MD5 db3a785e037357a0154bbd83d35655f8
BLAKE2b-256 b324f9ad10026b63a24afb7f68e0592bc198f183e9633f3c62756e9692b98974

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.24.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c7b0376204b90fcc386cf85d65d236ce7745fa87caa5e315b99f4946351aafa9
MD5 b8c9b1ff12e36209e24849aa5f5c5a30
BLAKE2b-256 72731801a752c4a4582090bf90334142601f643a8f87783d693e29aeccc3e353

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.24.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 78259621db468c04a814543827d8b1d4566b334687d736de85401d7e03660924
MD5 a48d34e0fe4797822feb5fce1d28e07d
BLAKE2b-256 eac2287ab27afd950b169bde7a32c2ac942d44c09d1dac0bb5e858703538018b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.24.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 408.6 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.24.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 e172cade169665e753fd0f42c9e7ecaef3ddcd3e408f97c36f935b22533afdf5
MD5 9b919b0c4180aef0614b05641e7fc946
BLAKE2b-256 c8149b099305b37175f728affa13045407acc889e55cf923ea41c8b0488f6aa2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.24.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 54152f2df045bded37140bba28cc66669514143bf2a41deb9b01e9e06d507c37
MD5 6280499f39f4838020a8831d01d1d354
BLAKE2b-256 ee20a3b89d7a434ba12f0de2db19e4522d3b2cd01ddf6395b4694cd04080c1a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.24.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 09542179f47bd69e8669cc467552ebbda682a423775cd6b1db18a45dec30abb6
MD5 8f44192b1b79f2e217059239def9c423
BLAKE2b-256 bb2e3647b7b3b60b34d0d054977dd3e9a71579665f26d45dc7df6edc1c7bed12

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