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

Uploaded Source

Built Distributions

uharfbuzz-0.26.0-pp39-pypy39_pp73-win_amd64.whl (399.5 kB view details)

Uploaded PyPy Windows x86-64

uharfbuzz-0.26.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (586.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

uharfbuzz-0.26.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (526.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

uharfbuzz-0.26.0-pp38-pypy38_pp73-win_amd64.whl (399.7 kB view details)

Uploaded PyPy Windows x86-64

uharfbuzz-0.26.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (594.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

uharfbuzz-0.26.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (526.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

uharfbuzz-0.26.0-pp37-pypy37_pp73-win_amd64.whl (399.8 kB view details)

Uploaded PyPy Windows x86-64

uharfbuzz-0.26.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (603.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

uharfbuzz-0.26.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (526.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

uharfbuzz-0.26.0-cp310-cp310-win_amd64.whl (407.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

uharfbuzz-0.26.0-cp310-cp310-win32.whl (346.7 kB view details)

Uploaded CPython 3.10 Windows x86

uharfbuzz-0.26.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

uharfbuzz-0.26.0-cp310-cp310-macosx_11_0_arm64.whl (574.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

uharfbuzz-0.26.0-cp310-cp310-macosx_10_9_x86_64.whl (617.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

uharfbuzz-0.26.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.26.0-cp39-cp39-win_amd64.whl (411.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

uharfbuzz-0.26.0-cp39-cp39-win32.whl (349.6 kB view details)

Uploaded CPython 3.9 Windows x86

uharfbuzz-0.26.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

uharfbuzz-0.26.0-cp39-cp39-macosx_11_0_arm64.whl (577.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

uharfbuzz-0.26.0-cp39-cp39-macosx_10_9_x86_64.whl (622.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

uharfbuzz-0.26.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.26.0-cp38-cp38-win_amd64.whl (410.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

uharfbuzz-0.26.0-cp38-cp38-win32.whl (349.3 kB view details)

Uploaded CPython 3.8 Windows x86

uharfbuzz-0.26.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

uharfbuzz-0.26.0-cp38-cp38-macosx_11_0_arm64.whl (572.8 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

uharfbuzz-0.26.0-cp38-cp38-macosx_10_9_x86_64.whl (616.7 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

uharfbuzz-0.26.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.26.0-cp37-cp37m-win_amd64.whl (408.6 kB view details)

Uploaded CPython 3.7m Windows x86-64

uharfbuzz-0.26.0-cp37-cp37m-win32.whl (348.3 kB view details)

Uploaded CPython 3.7m Windows x86

uharfbuzz-0.26.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.26.0-cp37-cp37m-macosx_10_9_x86_64.whl (615.1 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

uharfbuzz-0.26.0-cp36-cp36m-win_amd64.whl (476.9 kB view details)

Uploaded CPython 3.6m Windows x86-64

uharfbuzz-0.26.0-cp36-cp36m-win32.whl (396.7 kB view details)

Uploaded CPython 3.6m Windows x86

uharfbuzz-0.26.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.26.0-cp36-cp36m-macosx_10_9_x86_64.whl (617.0 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file uharfbuzz-0.26.0.zip.

File metadata

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

File hashes

Hashes for uharfbuzz-0.26.0.zip
Algorithm Hash digest
SHA256 537d792c1a58a2d1589608ed9e2c0d529357ac42d8349882d0d96ddff82e5be3
MD5 2b3ccaf79cdbf3949b3b4571a5a2789a
BLAKE2b-256 4cf8b10a5ec6903513701666524db853e439dee4112489f90534ae9c370571a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.26.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a7695154f78442867d0889605fe84f908c6e7961dff045869fa82a706f3f0f1f
MD5 96d7120719cf13442b7a357a066d2679
BLAKE2b-256 6406ae43ea3f6c7dcb3e71f030e6306455561f5e8b776eb8a3f98d299280c0da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.26.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 df14b251f3d61cecade8a4ae31052215c8a3a868d689dc157bc0fc070750f597
MD5 c7567f14f355b7ac9f20c398fce99ae2
BLAKE2b-256 6629dbe064b7e8bb76394f33ae85ed7c751e39a836445fc0fb72033173430ed3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.26.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 52ddebb39c02bfcd0c7fa3adf2e8947ae20c29ac6d3474d510293d320f6e7f77
MD5 6476ca2d5d425120a30bdc16f5328f4b
BLAKE2b-256 8a13b3d1a91d611111b42f219a9bd9265d0b9589ce0408f6798571623708250f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.26.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1c38704094466e12c487dfc98850b2180d787a683104cb7d8de65a230af48329
MD5 db8d8a83c2f102bf98888555f9c490fa
BLAKE2b-256 b6d17673968081f872aa93e976627203f9695abfc7178d11628aff63c53ad446

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.26.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fee5cae233401856c79299511109f627ff39284380fad67a3e4d65ac66b06d6f
MD5 beb1bd72e268401f8e9a31f33cb2ea4a
BLAKE2b-256 b3d593836562eb0cf36a26f45540002e0059d47b64bb9f7374368e5a58b126cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.26.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 af18ffb6d9cdb9fd1b4e823ecebceb50fc63d2b9e7a5e51dee425868a38b61ca
MD5 590a850344d04f9d6403eac545f46e73
BLAKE2b-256 c4c73dd63e610622756965a6f85e488c48a0092f36e49591af97125b8a20b717

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.26.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6e5b0b4f259fef5aa845df17037886415f858a1329bf6b32e6265ff33e0d6f23
MD5 5ff6dc2d87c27ee65d82d74a566dfc99
BLAKE2b-256 4f044621bdbc5e514545220eac29b9ecda09282e416c53117ccdba2a1a911219

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.26.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a6dc27fd0f447c25579685585959499b835b99ae060b9aa220d58a312e2b583
MD5 560388d6bf25650afa1544024f1a118e
BLAKE2b-256 70b4316291de2caab944f396487ba9f4bff5f8750fa1479af6d4ee1ba4472a54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.26.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c8b93e08c302d766238ecf427971a3d012c69f9b0f2be1aa743d583b68cb3258
MD5 bac75eb9db6467c9b3f88f0d03bc1c0f
BLAKE2b-256 83f8e7d80d4ef79862b0f545afc211bbfe9b154bbe2b780e0f33b0d44c7f30f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.26.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1a85caa9203cb6a916d6dee60cc56e1980f6e65e50a78ef0c7de286e4a7e644d
MD5 a883b1c1a72bf6b4539d1f3ef4797722
BLAKE2b-256 c0a9a8c4550c85af3117e9f296f8eeee39dc30eda5772b162d4847a5d35c8705

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for uharfbuzz-0.26.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2833b18a2a6d6d1748e64ba375abe4d11f62e2489165fdce572708e334ff288c
MD5 73fa46365a7253f0b7f891e536c5fc71
BLAKE2b-256 6aa19c88ecd8715e1a0fd6f9528d5c545e16e0d2c25f7376aeb8740386b445cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.26.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ccee61a5391e0a1a7484a225b659401c06fdba21a0a865d9efe91eae51631ff4
MD5 f851571cdbdfc9f1c94678039a40c0f4
BLAKE2b-256 899cd1cd3a3f33137f51d7d6f7ce659cc95f50dc4fa39e547deb52cdcf05d558

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.26.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 08f2f853432b87e81417de61163d1d6e8f138d7b0935dbe1be91678c95f91056
MD5 a3845e3d074c215919e9411920dee7ac
BLAKE2b-256 520d61429acbaad63ddddc9e4bc15b5bf9aba2175a5cb2c0303d9aa2d084ead0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.26.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a354d9b8429051db901cae0b4713bcd30e794edc8a9d20ca7d4ee182e9ad24c6
MD5 bfcd9706e18bb39e52897173154e41b3
BLAKE2b-256 41ee83ec4cbde537f57e2b848b22224581f4ea106bb43ed11bb5b28a172ae093

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.26.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a95460149588098e608a33910199fbb46d413b1d042a338852727c5f339f806f
MD5 c1eb1373e8ca1e2de97d8382d9330309
BLAKE2b-256 6cac0c1b6aeeb407a9b532181a5f631bc42df2958181612391b59820bcef577a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.26.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 411.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.10.4

File hashes

Hashes for uharfbuzz-0.26.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 48a4d6662df25aae5619b4a776c421db8405c29593d821e938cfb9da1448bd4c
MD5 8d09373df3377b04b59dbf878b7a68aa
BLAKE2b-256 bdb33e61159fbc9fc9e537d41e5e1f3866169fed0fdf3c3cca8576496f5a4bda

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for uharfbuzz-0.26.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 bfc64a82a5afce72b14b5c540b0960b44b208d1be1cf5eee9c8eec55fbd4fb1c
MD5 742c425323ee5796989afc03f8f3c5ff
BLAKE2b-256 77a53335f24308ce7fd4a6255488f6dd39e2f02cae15ee500ceeff3e4d01229d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.26.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9f2f7bbb96193f9ef77cc43f36300fcaa4d959ab8c764d5696d0f157d238f36
MD5 5a6766977d38a81b320fdaf6b7413b1c
BLAKE2b-256 3f9a41698a8a63c4990cf2e1b59b5a71cc00f282def87da03eb9e48d81c1d8da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.26.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f6dcedb0cebb73411944301502fa432518042f671546b373e35ab9c3faa79fe
MD5 421648d83e11cdadf03ac46656b227d1
BLAKE2b-256 833762c60cd250b6360832ebea8368a734107d6454348280462731babfb39232

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.26.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b8572e4a4ee237850dfa36ba7f0163da729a9ba481bab71947a8123123d080a9
MD5 7f37036b0b431f9516ef48a8f0d5b415
BLAKE2b-256 702cd43705c9f083384a24040203cae7557847968110f2ece22fa3c5b2871ba0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.26.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d1f5157de05f7894d3311107c65be6e387dfee5c5198832dd8070ea45aa06fea
MD5 f38af67a14094f9f57c7cd5a30bffa35
BLAKE2b-256 5750555f8b6ffbc0759bab3db56e26d0b92c7dbac1300dbb8bc9d2207e5a0893

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.26.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 410.8 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.10.4

File hashes

Hashes for uharfbuzz-0.26.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 142d0f2a9a2252a3d05d2ef9b15796b1eee31ac5d03c1eb5e7e492fd04475cd0
MD5 3d48134dfaca41a2d7b3ac2f3ebf745c
BLAKE2b-256 fd5c5e1f8438abb17cd22dabbf83fb46ebd135c315e85fabd8c63da9ced9d301

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for uharfbuzz-0.26.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 fd92b98bb240762d74daf478b6553f2fadd7cbbc5301b69f4470da422e4298d5
MD5 20ef8da3e4e8ab5e5bdc586d4d6245ce
BLAKE2b-256 3fbc93603d6831ad6e0519ba414691fe1dd06e6b7a59f8f748199d5535f30086

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.26.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 09ebe74579c562455956c32b6fdcfa28e435aca49a5da20cb857b085c5c97629
MD5 34cb91c2400006bcb2156fd424810541
BLAKE2b-256 09815d3ab28367d28b5c023b4d7bfa19e921f27f9a06d19143b128d4cf25eafc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.26.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 80066fa003a1995e4f1c5f529e1aef25b4de88dbfbadeef8bfecfec3e7737d44
MD5 09a43b1e3cbcaf71b503baf2043a9479
BLAKE2b-256 e39a6fb8e8d8eb7dd63a17e0ffae71142e0307f04d937fe4df244e100a743daf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.26.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9e5d97677509b97f9a7190e17e425af873f734453f5f71014b473edbe95f55b6
MD5 79657729ee0187f2a06183e19a0f2242
BLAKE2b-256 52eb3a1e37e3fd8286952cecdafd6c5d0f60a044a35f1691d22b63a195f31970

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.26.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1c1c8dee9cd1c735a09ee8a6e0b8a702d34c15aff1e4e5c8ba8494a2a7eeb134
MD5 3dc88f6ba0f135b1a8f74e5b526c7f96
BLAKE2b-256 5b4cb9e9b620817cd6ca3ff20d747b0282a4abb453f0379c4466a2014f011d03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.26.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e6c315e1b98796dd7c3cb0d5c31e8e824abd881c9fd85e9cb4d80d3bd105678c
MD5 6195a5fe106607b751bb7405c3cf230a
BLAKE2b-256 fc8f4f0da7e8fc221262aa799be7d0bc8fe7924225fad1117bc1186d070aba2f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for uharfbuzz-0.26.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 0f0c5a9de0a92e5b97ed3fbc2b9b3b3f8e873a0ba1a283271c4bf62a283f852f
MD5 ecb188df09a441f0d17092730c30fabe
BLAKE2b-256 a4a56d9fd681682bd682ce412d861d4868df16bbddb2eeb1c9bd6f1f2fb20492

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.26.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c1fb1c6c7a7c59974780f4b21ab948d782fa2daaa455597e882a78297d70879b
MD5 a9f0f9bd3bc8ab0e1f1214f6d3e51020
BLAKE2b-256 2bfca021b92b0bb44e42a03d980991e5029938b90790f8b56bda865b913d83ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.26.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d513ed04361f2546c065c3991f7e11f92e322bcf45b8809d348af2fa9f45c0e4
MD5 4ad6a86202944c8fe3aade117f75b6e6
BLAKE2b-256 71094ae8e33327e717f98d8a197e742646f2284392dc5aa78a7fa664023d3481

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.26.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 97b1e43542935709b825ce5e6b15defc672a3fae2a04699017ea46388e7ef447
MD5 4c97b4f91ba8576d3eff12e7dd6f39c2
BLAKE2b-256 2dae9b46508a84cfcd2c5d3e9c812a68f6d0355654ade2e11950e26cbf0dcad4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for uharfbuzz-0.26.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 d0e91572283bbf2c91e444e9a3cb2c2dab4c8b22f8efc06754a20b74c5647894
MD5 ae79d8288543c2100a4be71000ca21e6
BLAKE2b-256 8e6ed70df1c5a0f1b8f0147d2a55667b379d0a02dfe132dce42904054d77df74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.26.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 007013188f32c235d5036e1cdcac633c295da8cf5d25991cfd49c5bca84ce242
MD5 60090ccfaee26541891744516dfb1c95
BLAKE2b-256 33e5f94d13a10e220f4fb5598112dfe3d825d56a2a2608742f4ac9005884b47f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.26.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c5606aa3e215889ee732beb455aad8c2329cb7ed51507cc4fe3a63c1fb6d187d
MD5 5d716ac0d50c2ad2ecb38ddf1a016d37
BLAKE2b-256 6fc17e127453e7ba8d6f31b7832a92dc37326ecc99d68e3f1d2b0cdcf3de7baf

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