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},{y_offset}+{x_advance}")

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.37.1.zip (1.7 MB view details)

Uploaded Source

Built Distributions

uharfbuzz-0.37.1-pp310-pypy310_pp73-win_amd64.whl (979.6 kB view details)

Uploaded PyPy Windows x86-64

uharfbuzz-0.37.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

uharfbuzz-0.37.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

uharfbuzz-0.37.1-pp39-pypy39_pp73-win_amd64.whl (979.5 kB view details)

Uploaded PyPy Windows x86-64

uharfbuzz-0.37.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

uharfbuzz-0.37.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

uharfbuzz-0.37.1-pp38-pypy38_pp73-win_amd64.whl (978.1 kB view details)

Uploaded PyPy Windows x86-64

uharfbuzz-0.37.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy macOS 10.9+ x86-64

uharfbuzz-0.37.1-pp37-pypy37_pp73-win_amd64.whl (978.0 kB view details)

Uploaded PyPy Windows x86-64

uharfbuzz-0.37.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

uharfbuzz-0.37.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

uharfbuzz-0.37.1-cp311-cp311-win_amd64.whl (994.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

uharfbuzz-0.37.1-cp311-cp311-win32.whl (793.8 kB view details)

Uploaded CPython 3.11 Windows x86

uharfbuzz-0.37.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

uharfbuzz-0.37.1-cp311-cp311-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

uharfbuzz-0.37.1-cp311-cp311-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

uharfbuzz-0.37.1-cp311-cp311-macosx_10_9_universal2.whl (2.5 MB view details)

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

uharfbuzz-0.37.1-cp310-cp310-win_amd64.whl (993.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

uharfbuzz-0.37.1-cp310-cp310-win32.whl (793.2 kB view details)

Uploaded CPython 3.10 Windows x86

uharfbuzz-0.37.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

uharfbuzz-0.37.1-cp310-cp310-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

uharfbuzz-0.37.1-cp310-cp310-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

uharfbuzz-0.37.1-cp310-cp310-macosx_10_9_universal2.whl (2.5 MB view details)

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

uharfbuzz-0.37.1-cp39-cp39-win_amd64.whl (993.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

uharfbuzz-0.37.1-cp39-cp39-win32.whl (793.3 kB view details)

Uploaded CPython 3.9 Windows x86

uharfbuzz-0.37.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

uharfbuzz-0.37.1-cp39-cp39-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

uharfbuzz-0.37.1-cp39-cp39-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

uharfbuzz-0.37.1-cp39-cp39-macosx_10_9_universal2.whl (2.5 MB view details)

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

uharfbuzz-0.37.1-cp38-cp38-win_amd64.whl (995.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

uharfbuzz-0.37.1-cp38-cp38-win32.whl (794.3 kB view details)

Uploaded CPython 3.8 Windows x86

uharfbuzz-0.37.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

uharfbuzz-0.37.1-cp38-cp38-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

uharfbuzz-0.37.1-cp38-cp38-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

uharfbuzz-0.37.1-cp38-cp38-macosx_10_9_universal2.whl (2.5 MB view details)

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

uharfbuzz-0.37.1-cp37-cp37m-win_amd64.whl (990.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

uharfbuzz-0.37.1-cp37-cp37m-win32.whl (791.1 kB view details)

Uploaded CPython 3.7m Windows x86

uharfbuzz-0.37.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

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

uharfbuzz-0.37.1-cp37-cp37m-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

uharfbuzz-0.37.1-cp36-cp36m-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.6m Windows x86-64

uharfbuzz-0.37.1-cp36-cp36m-win32.whl (866.7 kB view details)

Uploaded CPython 3.6m Windows x86

uharfbuzz-0.37.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

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

uharfbuzz-0.37.1-cp36-cp36m-macosx_10_9_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file uharfbuzz-0.37.1.zip.

File metadata

  • Download URL: uharfbuzz-0.37.1.zip
  • Upload date:
  • Size: 1.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for uharfbuzz-0.37.1.zip
Algorithm Hash digest
SHA256 df8bee4a05e52fc7d4ed8a9162f68752c2c11e62c1ae91d7b77abdd5f786938a
MD5 4378e4b0c06faefc6c6ee3a180ed32ab
BLAKE2b-256 7597bf5e7b17ad7eaeb77c6cb9c5e84a491b8fb01f43bbe273c1a8d61b9a19e3

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.37.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.37.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 dff63d15989f44564e8715f09e352dca07d3b7289f958fbc1cf9644db2ded2cb
MD5 9a699442078369b362dbfadb4ce217c7
BLAKE2b-256 265be4a885ec7175f08e61347cbbb15e790b39a113c3448443051e353ed71cbc

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.37.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.37.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f82eb7ae87ac86f9b946740b69b6412c7ad75120b12002f84c2c4040ca56fa3
MD5 abe841bb68c2c637f90c5d9bb4b9a332
BLAKE2b-256 206d81bff3a7b954792466293eafe415465f8f1a71b8a459e8dd5108f8371c7f

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.37.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.37.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2c8026965919c0aeda3814fa163187c0426e6a8ce2678edd347b58b9451ac3bc
MD5 e3b1172dc79473c386ad75944fce0a0c
BLAKE2b-256 0dafd3515380307f0030809cc8efe4b1cfbaaa0e4f42b2b21bdeb7e4d72a2fda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.37.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5d2baf62cae3159411e4b5677ccf11c1ab806949ce0a00763101fcadd73789f8
MD5 5e56b2a5c2a5fba63db801c672ccc0dd
BLAKE2b-256 91301f01c348817da72c02256d48b31e06c2174d53f4b03fad6dac0441c92e2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.37.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7570445a43184df557d5d2614fc2c7c3bcd4f8acb0669ae449eacfe939b9882
MD5 b324cb6bb562c2fb195c875017ed25ce
BLAKE2b-256 cd19a574977f5454a8fd28b385c5c87d72bdb36f4f5cfa6cc83d4c1e55e10b9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.37.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ec2419be310a3aec9fe83cf9709f65cc7bfeaf841118ba5135cf34cabcc90894
MD5 f9e4feecb56f5f6e3c9072b115af80a5
BLAKE2b-256 4acd450d28c216910f6c488afa825b58f5067f5b8302d323aad6ef3e6b887c79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.37.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 09d89d117f76972304d4c15362667ed5f70faa74a659bb7336d097e17f96d297
MD5 7f115b77a31d406a5797239beb4a46ee
BLAKE2b-256 50c81079878396ef33b7739e9dde54409c04ad6b81e61635c9a5b355c0eb10e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.37.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ade5f038b5d6f8dc293db578bd9c380641095f9d4385abc5c33b94045602300e
MD5 4953a1cae690cd6e3e53c77cf055bdf1
BLAKE2b-256 56e245d7168a13bf679d94dc7147b2b554377be3e1232d8d491e5c60ae9ece6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.37.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 302f8c771658f8044e331684c558295edab22f7b7c6254859789cbc5797d3713
MD5 f4d998aab841c5d8ea4d377389e38df3
BLAKE2b-256 03ca5e0aebd82237650302cc7eea151ac3776d057d0932efc9b75f64fdba5554

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.37.1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e04559d05d1b032a5cc283f5a5e59087c80b9636630230ceead783760a199c75
MD5 877bbb77a6266cba0547ebac88bf873e
BLAKE2b-256 53fe774209e18852c96c18b74c19d64fd5804063fc592b45a05040b1cc35ec47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.37.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4289fa09a97c83fef18f8f854bec6f8ee73e259e8fa831f848732c29e9e1e502
MD5 6018467c5f028369048fda5517256053
BLAKE2b-256 cb925bb045a82b902c4dfd5d4f3d51d9be3a07df14e68f5cc1d7da0d9546bf57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.37.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 143dc486991fafd5c96167521094065cf88afdff074e89280ca88f9049db6532
MD5 05d3ca51a4fab75e703a7b1bbc8275e4
BLAKE2b-256 f459ddf121c382995b62895909caaa8a376506ba3ca3675cf12563c3c3fda2f9

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.37.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.37.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 176c11aca23fcd4b2526f97487931a795835309e4c6747f1c22b27c7d0327796
MD5 8e9b82e3e4d697533bd6c864c161e724
BLAKE2b-256 8559d2ead4cb2605caa7007781d8140665ecff3cb9716d48c0992d0df1762ffe

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.37.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: uharfbuzz-0.37.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 793.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for uharfbuzz-0.37.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 41b91dfdae59ce705b38c16bc81f63d7e034fa4541701c561b27852f106e2608
MD5 861e288e20ae3e807365a0efd1586de8
BLAKE2b-256 426f00dbd20432c02f7e5154e6bafab8f7087bb94a549a4306dff4868af5a1af

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.37.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.37.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6ad0e5944c7e86d8226d6245cc2d367544704493eedbbacec62d26b8a4b4e545
MD5 742b2872dbd63e69bbd588df2839a031
BLAKE2b-256 ea0accbdf46d484827667734a0246e9dc60eba6facb96cceeb4ac96d4fa37c04

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.37.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.37.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61bd995dc888c8d223dff20da999db06af22e14985459951d8ebcacb20cf40af
MD5 1aa44e703e0fd13273d8b18fcf1b75bb
BLAKE2b-256 ab44cdb436081268a10b2bb3ae461b0937c4d33968205bb8f1d0e97d3b85f23a

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.37.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.37.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f01a582304497e090791ed80bc60a9b317dbf764c61cec187b40a89d7d617b84
MD5 5158e1712ff01d866434febe1b5e7a3f
BLAKE2b-256 d47e17f3f1179c124fcdf74b650869e4463161c9ff8b271680b68b8848acb185

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.37.1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.37.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 efa65e6d6f9d3223b81bb31c6d410bf63faf84830c803947586a9d10935d27b7
MD5 bca94283fda10a1eca3ca30f66b967ef
BLAKE2b-256 b72ee9db0de93e286a876d73da8ff1ec19316279beda923ea93b5ee7a40b5b49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.37.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b771d585800c2113380c76ced0eec68c4a427138e40651918ad20a26c7aed315
MD5 f73535b33bfa16fc0079b072bf31bbfc
BLAKE2b-256 b8355b5e60a422d8e5dcc2179fecc459f509bf8709cbab7516eeefee695fc8d5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.37.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 793.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for uharfbuzz-0.37.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 817de54b32f0e2bff2d141d9082920add3b936b35f4be151738094c72b9ee605
MD5 ada3d0f48227c11b4798107340a03e79
BLAKE2b-256 48fc9ac8337a6e52a985c188c6df4f3b4a1c91db3723671a80e465269262cfd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.37.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 750df67f2abfa7f2559f5c292cfc962009d680fe3fa19d1dcdfd701764279ed0
MD5 ab75f7e007cd8a5a83366abc5e0c3754
BLAKE2b-256 2c423708352a5115eab68de0eb2c6802864037d10bf9cbeb4b5026472152a763

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.37.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22af3d7906b6a388015c7c6e1f67792761f7afbdcb5143609179f7b428899529
MD5 af7044497334e791e742c9d0f3daf31f
BLAKE2b-256 e996693adfac9ad26746f8614c271cf3ab9fe2a27abbabd60113096fe03bf4ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.37.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bd16d05c7fecee3cadbb3657a7f07729847dcf6a4dfa0f094deba2626d2a926c
MD5 ab45fdc3b56948122c9918ca58d7c334
BLAKE2b-256 a954368583cf93a02a997766ecfc3d67c993b8354dd5dc4ab4bf6159744afd56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.37.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 fe096f46c30b3f8e217ee8ec3293831e3e7bc01db8c6192649875d4aa6e6ecc8
MD5 7e4c377d69f7a4eeadb267ebab954b78
BLAKE2b-256 4a71fc67e969854bc76d8d9961620a8c2449f293d72106dfaaf0804b72be98ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.37.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 993.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for uharfbuzz-0.37.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 dff7f795f02bc1129ff6442832f82e78d5e1a4e32fab6636ade44dfe0d90329d
MD5 526a1c932324d33f38bb536dd13a39b6
BLAKE2b-256 03d1476324cf0a43d70451147e78a2f7f9750737a24cb90e634946e07c0402ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.37.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 793.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for uharfbuzz-0.37.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 540ec2b63d9a2621988ef95f87c64dd5a8e8145b5917ab58d1e3294a5cd8ecb2
MD5 c08d232e287f1b47b39c6e70fda710d9
BLAKE2b-256 499ad243a0b17004a3a9f9cf6a4daa503eecfdbbaefd37c7f81d1ee9c6e816a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.37.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 87ba5e0287b778370c647d74f2cced32faf34c04a1b17a0b088ef5cc214a03d2
MD5 e0ca3e303f8289f7e7db99b8bd89441c
BLAKE2b-256 2e9f1ed46c6f260a1704d4695586e06814da24a405750ae504417a738e0800b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.37.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc68388b2dd734b1e32e89e000a77a949b1a90ccc76dd0503f22a63d2348b9a5
MD5 67cb013388e52204bd358909114f9556
BLAKE2b-256 b91a06d3583c55e09a1d6081f41e21b10d7bf9711384d9361727933c49421974

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.37.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a0961dd6befb2153eace305e586758cf9cd95d7ce711d50260651a19e3708a3f
MD5 b0df0cbf82cd95a1e29b89e01c571598
BLAKE2b-256 27b3cfba7974f34c10d65861da8f8ce8e3fee43e63541f976659c9cd61fef54e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.37.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0fe6633c524956fcee6556487125d261795157a9a07e6dc0dc765e10f561dfb9
MD5 133ae24559fb2b07ebcce77a9987a98e
BLAKE2b-256 a625b7fc0f42929c0d1776bdf06651eb9a7421a6242ac989f66924361625179e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.37.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 995.4 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for uharfbuzz-0.37.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1eed9bd98374d54a5fbe7f22977c7dfb77f3a39b171882ec0f97ac5a0bf18bbe
MD5 93ec406a4862f81041b155deccdd91ae
BLAKE2b-256 03352d2119f05fb7105c10268f1c7f7151a942afe6ecd4b820dd9eafa529d2f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.37.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 794.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for uharfbuzz-0.37.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b08af2ae8012c31493718c9bb2e143be979751e11b05164d954359b148363ee7
MD5 06fb788f7c3f4f21b38015d9f5a703df
BLAKE2b-256 a5109376a09064a7e5efbd6c5b6909a00e78df88273db7fa2db96348b5e71805

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.37.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 90ab1643266e80a859104e27509bba93455c97009f956dd842c725c6e113d660
MD5 83a9d511f8ecbc2d006e5fa297160867
BLAKE2b-256 8b51acf2a86c1887dfab4a30672067b4c40e54f85787b387769ac32af3dfb0fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.37.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e9f8f7a1482c961c0867626c3618b5379622c49a1f6cb6689b10660c6a5e389
MD5 875c6bcf8b0befe0013ab801e35cb066
BLAKE2b-256 921ce8ad9cb14c3e11bd3839a36a1d478e811b3b988dbbdef1da6e995268602f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.37.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3a940459f387c7891ec430ff30ee6cf09f78aaf4409d34f3be3c9d02331a15b2
MD5 3171164f695fe86f2937153f33d1fd3d
BLAKE2b-256 f4579b8fa1daf758eb9fef491ff3374fcaf5a44323540a7b2abf1b7a7bab8431

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.37.1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b80bf4579ff39be9faee48e87d3099a9ec746634120bd51b7953304b528f7d1a
MD5 2c40367ba6563a48b8c79b5140e52ca2
BLAKE2b-256 19830cea0f0691402b6a87bb6d079c1c3a5a0715bf9d18fe49a384299ade77b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.37.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 30ac53137373f0a81690efdedb4a052758114f34e803ebc4b20e7612724f42e6
MD5 67726fd22c7369cb102a554f2ffb3748
BLAKE2b-256 551ec245e8082f524be8ae8dbdd63f524852e2e322bc8665c299eddd5fdc2244

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.37.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 791.1 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for uharfbuzz-0.37.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ae33a9bdea3e871c2287a0cd5f4ea091b6f44d585975c258ee27b62d1e90125b
MD5 d7912c0c9932eca50ad7f4948cea3fa2
BLAKE2b-256 bd71d32ab2c91b8e2f57a062c9394eb803a92c08e2b659b9fb763ebfc464deb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.37.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0252ffc54dd8c40e404ac1c1495af11c7c19c8346f36701d0e670df8869f5c43
MD5 46c59e263c079a8a89a3ac1d6f430389
BLAKE2b-256 fe23ccda524d11a5e84e807384480b11de2b1ae6cdf39440af2199bc2ed38f27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.37.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4abee1bc034e14fe2ac6b52935fb5393adf52a4bf3967ac42e48458bcf87b4b0
MD5 62718eaa9ac57f3d10d55b9386535f7e
BLAKE2b-256 728079744bd9f49e10599825dc6c931fa1461dec70b3d7cf0012e2a9d02f1965

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.37.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 8baca76f322c4ccc153938ac99166b9d5323e8bbed4af37288c5a903852fba29
MD5 2a37af5fc425ebf11efbd22e99d05fd3
BLAKE2b-256 378f8fe71fc858d12b28d40b12ef9825f455f3fd3844042ccbf93aecb76c94a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.37.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 866.7 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for uharfbuzz-0.37.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 9078e39fae12e0fb87317220ae50742429bae0f55fcc24e5cd5afe13fd41c214
MD5 bda35f89accf840706ae8aa0574ecb03
BLAKE2b-256 2ed70e0f6603df5ff2d56b6205f38bd7f366d89213dcd4011d940d9b2528190e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.37.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e4f4554f77e4341cc92ecc55e53d37e341bc8c8e79c0fe5c28cdb11d0342cb06
MD5 4651003df3e11b11f924f91875e9f491
BLAKE2b-256 c1f58becd4cbc3ef2a11aac0f114e88ce5855a7451f99422ace2a2952dc535b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.37.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 10d58bf3af1b9007d68dec5f0e12e5a5a9966beb302ad56c9182252b5426723d
MD5 8c0c914cbe927a6ddf1982e6db48c5ba
BLAKE2b-256 1eab654333212081cad0ea9b558697e27aeca98b0a3cfd58e9ffa5dd13c6e56c

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