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


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

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

uharfbuzz-0.22.0-pp38-pypy38_pp73-win_amd64.whl (768.2 kB view details)

Uploaded PyPyWindows x86-64

uharfbuzz-0.22.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

uharfbuzz-0.22.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

uharfbuzz-0.22.0-pp37-pypy37_pp73-win_amd64.whl (766.1 kB view details)

Uploaded PyPyWindows x86-64

uharfbuzz-0.22.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

uharfbuzz-0.22.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (517.3 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

uharfbuzz-0.22.0-cp310-cp310-win_amd64.whl (393.3 kB view details)

Uploaded CPython 3.10Windows x86-64

uharfbuzz-0.22.0-cp310-cp310-win32.whl (335.0 kB view details)

Uploaded CPython 3.10Windows x86

uharfbuzz-0.22.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

uharfbuzz-0.22.0-cp310-cp310-macosx_11_0_arm64.whl (554.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

uharfbuzz-0.22.0-cp310-cp310-macosx_10_9_x86_64.whl (609.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

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

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

uharfbuzz-0.22.0-cp39-cp39-win_amd64.whl (393.2 kB view details)

Uploaded CPython 3.9Windows x86-64

uharfbuzz-0.22.0-cp39-cp39-win32.whl (335.0 kB view details)

Uploaded CPython 3.9Windows x86

uharfbuzz-0.22.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

uharfbuzz-0.22.0-cp39-cp39-macosx_11_0_arm64.whl (554.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

uharfbuzz-0.22.0-cp39-cp39-macosx_10_9_x86_64.whl (609.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

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

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

uharfbuzz-0.22.0-cp38-cp38-win_amd64.whl (393.2 kB view details)

Uploaded CPython 3.8Windows x86-64

uharfbuzz-0.22.0-cp38-cp38-win32.whl (334.8 kB view details)

Uploaded CPython 3.8Windows x86

uharfbuzz-0.22.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

uharfbuzz-0.22.0-cp38-cp38-macosx_11_0_arm64.whl (550.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

uharfbuzz-0.22.0-cp38-cp38-macosx_10_9_x86_64.whl (603.3 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

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

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

uharfbuzz-0.22.0-cp37-cp37m-win_amd64.whl (391.0 kB view details)

Uploaded CPython 3.7mWindows x86-64

uharfbuzz-0.22.0-cp37-cp37m-win32.whl (333.7 kB view details)

Uploaded CPython 3.7mWindows x86

uharfbuzz-0.22.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

uharfbuzz-0.22.0-cp37-cp37m-macosx_10_9_x86_64.whl (601.0 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

uharfbuzz-0.22.0-cp36-cp36m-win_amd64.whl (459.7 kB view details)

Uploaded CPython 3.6mWindows x86-64

uharfbuzz-0.22.0-cp36-cp36m-win32.whl (384.0 kB view details)

Uploaded CPython 3.6mWindows x86

uharfbuzz-0.22.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

uharfbuzz-0.22.0-cp36-cp36m-macosx_10_9_x86_64.whl (601.2 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file uharfbuzz-0.22.0.zip.

File metadata

  • Download URL: uharfbuzz-0.22.0.zip
  • Upload date:
  • Size: 1.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.22.0.zip
Algorithm Hash digest
SHA256 82b68867fffd78d84e664ee872a193a897a35f398e40095ede7759456da4ebb6
MD5 8d7bf6b28ef1875160dceafb4ac8fd9c
BLAKE2b-256 462b4838004cd1707d9852014083444410f6d86550e8c3f0154c85a01dc2a53d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.22.0-pp38-pypy38_pp73-win_amd64.whl
  • Upload date:
  • Size: 768.2 kB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.22.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7373230474a09f3b112b7bf112b96208dd16f4bb6ef8e4bee3c748e9eb0bef6d
MD5 26962b9c172b0ae44e4b28da75ea14e7
BLAKE2b-256 97d488c46f90623b026180282c50a607a195e1f8bfb79b95786d638f8ab31321

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.22.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 6.1 MB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.22.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 00f26fcd3f006b67dc20f8f1cdcf15b3410a25946b91eb21c540949bdaeefbea
MD5 25270c99c7f05a71f9c7100fbd4b2529
BLAKE2b-256 392a9e02f73b8392fcb752d0bb4c79b2557f2e29e9ab6212a18e63319d9d262e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.22.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.22.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2b8fa1e4e944910924558ef1408ee6a54e18e6261bffda88abdc3308f2102ee0
MD5 61b85773637e1b7752d1cb13f594a905
BLAKE2b-256 7bb60a4c6885efe81337ea946c7e32ff89fa47d90f028b6a6ab3b4c3e919007e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.22.0-pp37-pypy37_pp73-win_amd64.whl
  • Upload date:
  • Size: 766.1 kB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.22.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6e5d903099a467c380aa8b8e832fb684a95e28192c6bc1860d00ee5d9242bae0
MD5 4236275338d65fa92d04f863f0847977
BLAKE2b-256 a54c2a60d1a84702a195562b1f34eb563a077c64221dfd2b86cf4db621feec50

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.22.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 6.0 MB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.22.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2c4bdf22c2b9d451bdfd40fd5977ac7fef28a3dab9f0065bfb6bc1a493da163c
MD5 28cdbc013f3376644b6b494ade09925a
BLAKE2b-256 59d32b4fcb64f84e46bea6e3dc8e24ff9d1b0ac4df615bf44a4e2a3eaa22fa3e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.22.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 517.3 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.22.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8c23ba9d9f7c78d9cb33cd822e574a726f0ef2135ca506e1ba7de83bb9f4c739
MD5 05790f37c457618802f0b8ca466a0bf8
BLAKE2b-256 5449f52b584baf3f0c6eef90e11e5ccbfca20ac37ce321ca268bb394be72c6ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.22.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 393.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.22.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4c3bb2d43c2d3074b2c29b2f5963fa30f901bc7837cf8412ccf2b7f4929ae46b
MD5 f11d0fac7d3b11630215e04b3d620610
BLAKE2b-256 f2c4fb89ea98fa65cd7d909883b9c168ecbfd56e1d121bcfbca8e0cd5563b347

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.22.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 335.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.22.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 23e280c2083d72ea5a9d36e2d85fb565c514f5fca823344a7d767f9e530e2afa
MD5 4a47a9d1a2e44ac363b0d4ec20a04f88
BLAKE2b-256 77e46adbf75dd396492f9401bbff2626b8dee7982048f4285d9791a1b589699d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.22.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.22.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 361ad1c018b4f36569cd07030d69dd27ad6462f214b98c67b3b0a86031fbea9a
MD5 da8062186ca775cc6ff23ee0b53d7428
BLAKE2b-256 4c18a3e131a63155bfe4fa94eeb5070edc52f1c61afa5bf37c9e4a6b45f9a0e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.22.0-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 554.6 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.22.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c415318cc5b6c9d41fae5fd2119ce93272da854540771794a54505418e42175
MD5 6ae187ec178327f0d9a8da598e0bcfb8
BLAKE2b-256 4ff310005591449beab2ebf129c52bc0a224b4a6747b305d3c924e6ccbc3fca8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.22.0-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 609.5 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.22.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 46c456a3a23efe69d2298fe65964be0ac98e2d5dddf1aa97fa01f7bc413972c9
MD5 1edbafbd24b9f925b111dcf9f6f7f346
BLAKE2b-256 f461941f008ff67bfe53862215f9cd647119c0fff3631299d5ec3844bd6391ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.22.0-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.22.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9b19f0fdbc956c3519ccad1e0ac0750edd8f37001697f75550f161185ba6a8d0
MD5 8c514d4f839b10503f338196957fa95d
BLAKE2b-256 4bd37f0c4bab27d63cc7d6501f5f0a72c5efe69146234cce8f858e64a35d5263

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.22.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 393.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.22.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 58a90dfdbe7aa0624466f911e2cf68a62d2e7e86656e1c9975709b9246ed20b7
MD5 6f7115ec72e86448069c51edf501fdc0
BLAKE2b-256 a6d8ca034b0c9f2167b8b5e3e3190b12f8c2b5aff0f485eead229c26ba2f6430

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.22.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 335.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.22.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4e44632866da677d63d9701358bac313ac83dd28e22766a8eba7b4527c23f452
MD5 1a9643b70f1125183c23022cd43c7b0b
BLAKE2b-256 fe0b624bf769b4e69b85b85b6aa1477dec885640c62c08773a14132ef29ae841

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.22.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.22.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 12a157bd2681227b4090bf9632e9abd956b861c8dc21a3b9abe6de385ace5ed0
MD5 729ce62b134e443504a421b9d1052075
BLAKE2b-256 f287df3cb97842a5f52e14e7a9b141e8445964b58ad6d7775d1baf732425d480

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.22.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 554.6 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.22.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce0df18a78fb21b76fb32dc8722e19ff6ee03110acafda0d630d98665dceb9d8
MD5 f4c25da8a36b38079b333d64ce3e1ca6
BLAKE2b-256 1295c8251ec7eb7f3eb9883d2a9bd6b4d7b9c45368c1196378e6356fa57e5bd5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.22.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 609.4 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.22.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9c84d4cbe5989d5b9c5153e7818cb572158544bbfd3a4641eca05e30d75d0158
MD5 60b4779b5e54ecd3caa6336b65614c64
BLAKE2b-256 52678e3610c3855d37101f170ace1bec618cd75f130711253bd5dced522200e8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.22.0-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.22.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ff67f2b5a28072fe907c1adac1e0cd22f86c77a9e654628921bb9f6b7c7d130e
MD5 6ab0d3cdc5d45c658b45e709fbe87020
BLAKE2b-256 dfdcfbc5fe38d0e8effab271a8e8ef59efd6b409560a8763a65f8b39372e7edb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.22.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 393.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.22.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c1f05b6f5d4ea7d27d4d0af23b0a19a5cdefc5a7395ff1898c4e5dd4b692f72a
MD5 12f5b268252c125b5b50a5087b5336aa
BLAKE2b-256 265d25d27d836e17201ca67c6a1c66c050c5a8c838b6d7ec7f303e25afdb8346

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.22.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 334.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.22.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 04ef62d67c78b77756ecc36e5b5db23855403c5d44f920d2f46f725385a84882
MD5 fcbde87b2f21a6a6aa66915b7acdf393
BLAKE2b-256 26c7b6ef552001fe15f9765e2db8e606a8a2e12e6b16335bd809bf1dd34c7a54

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.22.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.22.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ebb8e5e4a9f49e28aad31fb12101d2317ea69675d15a917944aa5c435c10100
MD5 5db300fedad367e2499bbfdb05f76592
BLAKE2b-256 7b801ba93bbfd5ea54a5f9ac64780b80c4052bcbff0a8a982bdc5acb7992f042

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.22.0-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 550.5 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.22.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d0861335347d5337bf73e9e562f9748655c49ba62f3365149d87b5a14af2f09
MD5 fbc83cc988fa3a6a57afc9b9de9095e7
BLAKE2b-256 90093bffb1767ca16171397b586ab5d24131b751465cd6942398eac81ccabec3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.22.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 603.3 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.22.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 317af35033ea4f0c530bfce180b85c6e55c2c3a05c71b1f99a197d9df0c3689e
MD5 d27d85af25b3a6a084863f39bd388ae0
BLAKE2b-256 67951a6ac12b5c5bb0331bc91ecb449a3918ed0eb2a696ea5fcb5ba387a36f7a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.22.0-cp38-cp38-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.22.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 41275cd838a764c37b1a4cbcdeb1ccf19f8d710c276ad1f0ebb625a27fd079dc
MD5 426696be49ad66eabe42ecd19c830bc0
BLAKE2b-256 8477a83f7183cddae0261387f52d33bccd50a25f32f93972ee9052493de026f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.22.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 391.0 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.22.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 65b257aefeb6868b07896ed9f0e2a189545c26f0ca928977de8bbd01f827c0c9
MD5 82054257e7834dc977473464da42afdf
BLAKE2b-256 74c73b5bb0d2bb83e9ba07b7c8a34c5caf936914aad01ffc93dd0540a94891a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.22.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 333.7 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.22.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 20981bddab3dee2a3ca91aae631ace992621ffcfac8c9584a75c067f1c45c573
MD5 e7d86031f8e6ea63bc13c266d96fc277
BLAKE2b-256 bad76731c62e35f1c7babe03ca755e071bec5a4692aebdcb577ba3478c91b07b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.22.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 5.4 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.22.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1660324efea821cfe9962fef175f36fe1725b653a3bd48a08743dab03f4e9b8
MD5 c27a200ad837eb0404181dc2bf446e81
BLAKE2b-256 62ec05340879d1711c238dfeb472179de3c2aec89b18c4df4ea6ebd8a821e1ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.22.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 601.0 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.22.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 554dbbbfc8b9459615e19c2211536db5af72abd80e8e27657a6356e035550a62
MD5 54776a758de41058ac95e9814ac61ddd
BLAKE2b-256 2aba5b52ffe9715697d7d102730c40afb80d14c18b2e0605a0045e7752dda181

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.22.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 459.7 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.22.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 aaaf91518ff8f3b7f363fc79621fee6c3bdd9785ce8573f01ae20845d84730aa
MD5 0a83c040b81049d061c5f615a2f7b22f
BLAKE2b-256 0f4d933de61f1606c45d04fa1db7f29eaa2be0efd7b4d1c01a37bb6ab458d350

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.22.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 384.0 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.22.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 4f1b91f35c4232dd0a632bd098778ae50f97402898886a7247dc0513b980ebf8
MD5 db57f263b237dad1d1827bf9f5df8899
BLAKE2b-256 e84fa3857a508bad65d01c6456a09b33e3802e3bbd66b8d0f87413167854eae5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.22.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 5.4 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.22.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8153da1b2985431c8202d123382bc8315692c199c72babecc13c20e17c1a8b2d
MD5 f2174c4b055b0a6407945d844bff850f
BLAKE2b-256 fe8cfa440d8cc685f3b8e8bf6f04152e72bc4e5e0fcb25ad100adcb6f14f0e8c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.22.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 601.2 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.22.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f513cc4c2c05a7070ea2374401a1a30bde51faefefb0070423d8c02a921cc795
MD5 111414c63774e8356c33b8be372eed98
BLAKE2b-256 96176d3c08ed131598c6e61d4edb9f51d36c64d9651defd967269bcaa31c0640

See more details on using hashes here.

Supported by

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