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

Uploaded Source

Built Distributions

uharfbuzz-0.27.1b1-pp39-pypy39_pp73-win_amd64.whl (421.5 kB view details)

Uploaded PyPy Windows x86-64

uharfbuzz-0.27.1b1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (630.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

uharfbuzz-0.27.1b1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (564.1 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

uharfbuzz-0.27.1b1-pp38-pypy38_pp73-win_amd64.whl (421.9 kB view details)

Uploaded PyPy Windows x86-64

uharfbuzz-0.27.1b1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (637.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

uharfbuzz-0.27.1b1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (564.1 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

uharfbuzz-0.27.1b1-pp37-pypy37_pp73-win_amd64.whl (421.9 kB view details)

Uploaded PyPy Windows x86-64

uharfbuzz-0.27.1b1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (646.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

uharfbuzz-0.27.1b1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (564.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

uharfbuzz-0.27.1b1-cp310-cp310-win_amd64.whl (430.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

uharfbuzz-0.27.1b1-cp310-cp310-win32.whl (366.5 kB view details)

Uploaded CPython 3.10 Windows x86

uharfbuzz-0.27.1b1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

uharfbuzz-0.27.1b1-cp310-cp310-macosx_11_0_arm64.whl (613.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

uharfbuzz-0.27.1b1-cp310-cp310-macosx_10_9_x86_64.whl (663.7 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

uharfbuzz-0.27.1b1-cp310-cp310-macosx_10_9_universal2.whl (1.3 MB view details)

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

uharfbuzz-0.27.1b1-cp39-cp39-win_amd64.whl (433.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

uharfbuzz-0.27.1b1-cp39-cp39-win32.whl (369.2 kB view details)

Uploaded CPython 3.9 Windows x86

uharfbuzz-0.27.1b1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

uharfbuzz-0.27.1b1-cp39-cp39-macosx_11_0_arm64.whl (616.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

uharfbuzz-0.27.1b1-cp39-cp39-macosx_10_9_x86_64.whl (668.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

uharfbuzz-0.27.1b1-cp39-cp39-macosx_10_9_universal2.whl (1.3 MB view details)

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

uharfbuzz-0.27.1b1-cp38-cp38-win_amd64.whl (433.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

uharfbuzz-0.27.1b1-cp38-cp38-win32.whl (369.0 kB view details)

Uploaded CPython 3.8 Windows x86

uharfbuzz-0.27.1b1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

uharfbuzz-0.27.1b1-cp38-cp38-macosx_11_0_arm64.whl (611.7 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

uharfbuzz-0.27.1b1-cp38-cp38-macosx_10_9_x86_64.whl (662.7 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

uharfbuzz-0.27.1b1-cp38-cp38-macosx_10_9_universal2.whl (1.3 MB view details)

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

uharfbuzz-0.27.1b1-cp37-cp37m-win_amd64.whl (430.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

uharfbuzz-0.27.1b1-cp37-cp37m-win32.whl (368.0 kB view details)

Uploaded CPython 3.7m Windows x86

uharfbuzz-0.27.1b1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.5 MB view details)

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

uharfbuzz-0.27.1b1-cp37-cp37m-macosx_10_9_x86_64.whl (660.4 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

uharfbuzz-0.27.1b1-cp36-cp36m-win_amd64.whl (508.4 kB view details)

Uploaded CPython 3.6m Windows x86-64

uharfbuzz-0.27.1b1-cp36-cp36m-win32.whl (424.2 kB view details)

Uploaded CPython 3.6m Windows x86

uharfbuzz-0.27.1b1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.5 MB view details)

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

uharfbuzz-0.27.1b1-cp36-cp36m-macosx_10_9_x86_64.whl (663.0 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file uharfbuzz-0.27.1b1.zip.

File metadata

  • Download URL: uharfbuzz-0.27.1b1.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.1b1.zip
Algorithm Hash digest
SHA256 d9caf24df4eac5946f82dbbf24e02badc916c264ae50c379152062da1e107c09
MD5 555cd5eb18abb77a97778db34fa4b738
BLAKE2b-256 bff8e5d9e2ed7d3f31a9e0c54635d3a183c085acfc52a8c6b606125356e0643d

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.27.1b1-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.27.1b1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 818054f8003551865e6c6a435e03a4e8a8c614933a64dc0fbfe59697d0526855
MD5 bca47bed0f193599b31f4ab890adc68d
BLAKE2b-256 506f5cc4814ada6b0569f21ccf068fd5f522a8661893e708241ad88789802ed3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.27.1b1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ea5e30b797b68c6ab1aaf3fede68ffb7a1bab423868e4e39ab282b54caffff2
MD5 da0244bc12cd83b543eb2bd44d46a647
BLAKE2b-256 8d87ebaf6433f23c779b4267131e3733646528c3c42298cfbc7da8ce98173d77

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.27.1b1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.27.1b1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 58e6b0d370fc1b40c3e820d4d1492d908b36d786391158e10e33cca62c15063c
MD5 fc70f8c6e545c422da05436d168ce70f
BLAKE2b-256 43f3347cbf989cadb762d80abca26b0632d2f98896e07093dd2e0bd64cc320b1

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.27.1b1-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.27.1b1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d451632ff5f2e173f41f24ac37c5cf484a9b8ede6e7b18789be5fc0ca43ecdee
MD5 9f4c00048d54015e42123d2a4d3afcaf
BLAKE2b-256 2b3e4c0cdf8c193fcc1e61ce26be85db5827b6ee4c07e2218881f6fc37d36670

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.27.1b1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6e562a62d16f5318e35b077f379c3e6eb9d1bb45b2663efe577fe1e8c0ab50f
MD5 f01d4bf4bc6189fdf91c59e427680608
BLAKE2b-256 2e11cc583a2d111e1bc236671ac3aa23604238047f18f7723162a8b468e0b8ae

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.27.1b1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.27.1b1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f5f3639ecad34de571e07696e0bd5773f36e2af28c9b84140baac30540b33e1e
MD5 d1af4c60060814befdee150dd55ecfca
BLAKE2b-256 407d0da3189e9ef03286ff825a1a5cef747ee5a487048884a13bf5a4bd7249fe

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.27.1b1-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.27.1b1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 aaad7bb4a844ff657b850f8c92917e90a9db8550ae1995b92ac68be9c89b6ef5
MD5 1fd3dc5f97e93b8059ee1cfe56d15b76
BLAKE2b-256 914c4aa4bc22da380289ca77fbd933f77b9e8e748b86f4fd9804eea0c0466933

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.27.1b1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dbe2035d62ead04a47b107b1f0bf1b5c3978a9fcc0c1735b3492d3c8f2a2894a
MD5 e093034516c127a4c8eddbe6739281f8
BLAKE2b-256 3ca0a237a34da39f54c5f7974621ea5354b397e6864366f0f5a8f45820871dd4

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.27.1b1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.27.1b1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 35467297d82f83054df3e77d6ac12823182b2e5e0d48e4517cd7e65bb94651c9
MD5 936750d7dddd8f24fd3e4637ff82474b
BLAKE2b-256 ba8a9abd1ba7a3e66e8db6fc92f4ebc54c02cde6c8e80234b3346f019c59f9ba

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.27.1b1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.27.1b1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b47b67e21ed89ec35cb5a55bfb41b1c074ca45f3c3ceefaec7f3f155b872f7d5
MD5 47e9765394e3122bd7897ff8d5c98d8b
BLAKE2b-256 18716762d211314ff036293ab5cfc562ba5e16d6b8b872df68027cddf6395abf

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.27.1b1-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.27.1b1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ed541a3de37aa1890c3b005d4889ef281554f48c5b64ae18c229456c017f4d38
MD5 b39acf30b579856f655a14e613de4b56
BLAKE2b-256 58e50730434f6c5cd8ff095c975ac8ff370e0078608e9d44c13ddc5ef386a380

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.27.1b1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.27.1b1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7f3bf93bb1d384f43d47815811e499f8cdc346313b5b24822f509c9a7b29b77
MD5 5fa53f1170069714eff92a4e7cbabcab
BLAKE2b-256 0bba23a7aa82ca50def8276a212f92efd9cf4ef9b0aa34368a0d0233a2e71217

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.27.1b1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.27.1b1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e04585ca17a42669f0877aedb75754669f91bc796ce8c599be8889fd01c125da
MD5 d772482997a78eef7017f51dc6bd8fe8
BLAKE2b-256 0b52c5eac88dace0ec4f9b8359bf2d6d3bcc80d71e4ee5ca8b8a3104f813e6f2

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.27.1b1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.27.1b1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 33b8f47d834429870dbce10c5afb5211bc1743b7cc62a9e0e995f3415eac0500
MD5 a8d272f19980d9ed85e92f184e858032
BLAKE2b-256 a5465a8e011141bc3b311a9d7a9adb6e4971c5061b6026ee2afbf76120e9c1e4

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.27.1b1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.27.1b1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 75d93757f4e37f859108de3faa16ec607705a01dc7d22ebd98689d48f4b313de
MD5 86d7dc6cfa1354cb834b19f12fc145af
BLAKE2b-256 de0a9f014c37c94fd2b364a6eb7cae42f186c9f0fca3cad149b3b0e1b16d9115

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.27.1b1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.27.1b1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 52fc9cd2052c00bfdac80035e18a4561249baf213a3ca4fa723a04f484cfb585
MD5 e7939a71d7191f943f6694675f5a08a5
BLAKE2b-256 7e4ae73266ba257434010af5e72f1a5a028cefa0d3d06ac7eae298df76f97588

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.27.1b1-cp39-cp39-win32.whl.

File metadata

  • Download URL: uharfbuzz-0.27.1b1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 369.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.1b1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e4718def3482ec67edb3c75302233c12771875d2b5b3cc3e946808d121c35c29
MD5 9142dc161ec81634b9c431f32246b118
BLAKE2b-256 6d0ebb778a6c87a7f03607d75190fead57a20fde312aacbe6d708d87dca37d83

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.27.1b1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.27.1b1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 010a2695ee2208f8327b5cd29610cef142a6de0f7e90d65a1511a55f6405077c
MD5 d9c9103359d901df42014bca141f2a3e
BLAKE2b-256 81828bc19347440e009a65cf4a9d8159f80a60e98322cf1b2dca237532f77c0b

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.27.1b1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.27.1b1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e0981e1954d7bff40794e397533c768d2f96cbcb99e16b1d7931e8b46462f80
MD5 c4b323c9ae2cd46b71a1eb30b65aca0d
BLAKE2b-256 da7ebe6f6e2ebde132350858d1b534fe0c7c19aa78dac799d9a8df8b3bdb0093

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.27.1b1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.27.1b1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 98c96d13bd5f6dc57d3044622ac856d2b9f16cdc0c571be2c0a8e3645eedc265
MD5 a9dde9822f66399d9a6ece7b27bb1be1
BLAKE2b-256 c35e9408fbf33faae180086c4c4235fc04a33cbc8f8dab3824eb536018f00d36

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.27.1b1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.27.1b1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a8ff8f03a84e9192271c407d3e6097df0e5b933b358fa2b30e947cc8d159ddaf
MD5 647f04c6129127d8f9eb4472bdfc8f67
BLAKE2b-256 f66b76b7b4a28dcd12ab6fbc17aa55c0f8bd864a895e576a98c1351205de3af8

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.27.1b1-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.27.1b1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a9c201b9b7ef7d434d841d96477d917f365189902af53fb013fd9493791cb10c
MD5 5fa7bae66edaa81417382eb92ef0b8cf
BLAKE2b-256 6cbea8aa9f2fffa4bd1a09d7800c9c595f91429196dab11dcf0ca7e929480669

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.27.1b1-cp38-cp38-win32.whl.

File metadata

  • Download URL: uharfbuzz-0.27.1b1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 369.0 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.1b1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 de8337b0b57e9c811121961ef001ca5709ae50962a32745b13a109c8a67eccd2
MD5 a559a37c5ae7d262324513832bfd6474
BLAKE2b-256 be22016a122e931547f7b24e7350a9f17ba5cb95ce2bf8a962aa230dd88b231b

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.27.1b1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.27.1b1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 419b5c0fb47ef181be4517e51207cb43bf0e235881bd325c08eb0e7052d95d4c
MD5 ab44707eec57a7f35cef77d0c2ef78a6
BLAKE2b-256 5c4c9908e8a3547f9e81fd6f0916f4bc5ef8669038631b9bad7342963edd5653

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.27.1b1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.27.1b1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab9bf50c4218e910cae2d160a1f37ef96639d27f3d75990bc84b7bc6b014c96a
MD5 5636decdcc84de0f779112bf538e7645
BLAKE2b-256 3b2cc4b33709b00383b7db326c618436548804c49c974b6eae12fd584d2a51a0

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.27.1b1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.27.1b1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4ad4992344eaea01b97772e37417bf64cd42f99a00b54a975ed24a6d5fe2d583
MD5 94c6eedd5ee2da736c4a6c61a33036bf
BLAKE2b-256 f07f5ee64a18962231d89fb3b997e80916750afe32af13032b23aab04d651208

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.27.1b1-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.27.1b1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 087cc47309bd63d1b5baea2eb011538490ed0b5ca6d41bb608434fb503198e15
MD5 adb58e496d3dcb55d201dd376b632182
BLAKE2b-256 98f602ea4a2348034e6a34dbf8941bc02d14592e3f370a9d64c131d10194b906

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.27.1b1-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.27.1b1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 d4ab3e64b1a28fb15845ccaea6b0b5de1b8c8e33d88b6e06a93f89b64446c6e1
MD5 16a70b66432bef3883d19629fd00a489
BLAKE2b-256 f95f9ab0ecea70542a5d72006e50b3f666520bd59743faea934c6b96376241a2

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.27.1b1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: uharfbuzz-0.27.1b1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 368.0 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.1b1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 d9bfeb94b63c4b50083599693591d234ecb9513061382368b9b038054c8e40b4
MD5 c9a256ab44260377076e290d1948f74c
BLAKE2b-256 fd8a9cbd4f957b185ed01c6e6af93b80e3fd157c3470ba2f71e15720d9407f3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.27.1b1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 174a00ffa28e110636c817c9b368e6635c12edc0e962bd5b6ab0618927264e90
MD5 063f7eec2df3dfafaccadaa9af94145b
BLAKE2b-256 c58000e7205dbf438d0af003eb4f420cc856bae08f762f92a444ae913a5bb226

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.27.1b1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.27.1b1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c519113aa8955506d4126dfe0ea94fda72780beba6211007da53dfd90e34f768
MD5 79a89bf568b0e603d083eaaf7e196b8a
BLAKE2b-256 795ce9ea60c4ac8d32f45ec25dd9b2e8240258f744820bdf13819352bbd1fab7

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.27.1b1-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.27.1b1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 0dc57698b5f091692c49a648aec51d9547ab8e35384aaf687aef9b9a8fb76cc2
MD5 73077968140c309b4f709ea9147b31c0
BLAKE2b-256 c209f407a3cc953cca5531807619bb6190b77cf768e437000da5727eb8b444a4

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.27.1b1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: uharfbuzz-0.27.1b1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 424.2 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.1b1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 c812d5a766fdfde889dce3a116aa85d9bed7522c5c7836434a32b8aa302b22de
MD5 8366d8aab8559294ff4671e0bde63fe2
BLAKE2b-256 4c2c99ad0beb5899cce8ea56463d59a68064bddd4edd0bc4cc6e94c497645077

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.27.1b1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73637811210a83e08ff2d972165fb7c4f31e994be851693645c6f7956c73efea
MD5 0080ec547a3aa3c50a5131a4d0906c5a
BLAKE2b-256 b816e5da666ad4866310c4a57c7f0689915b3ff0a4fab6e0fd8bcf9a4c920d68

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.27.1b1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.27.1b1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5a049ba215302e2bf2a90c7875d16d027ce793b70840ab8ad1ffebb1654fc2ef
MD5 a8e29038b538734fd0eee109b82b372c
BLAKE2b-256 05284bcdd029feb8f285ead7cd6f11f26dc8a463cce5cf37b6dad3413ed39738

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