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

Uploaded Source

Built Distributions

uharfbuzz-0.25.0-pp39-pypy39_pp73-win_amd64.whl (414.0 kB view details)

Uploaded PyPy Windows x86-64

uharfbuzz-0.25.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (607.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

uharfbuzz-0.25.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (547.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

uharfbuzz-0.25.0-pp38-pypy38_pp73-win_amd64.whl (414.1 kB view details)

Uploaded PyPy Windows x86-64

uharfbuzz-0.25.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (612.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

uharfbuzz-0.25.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (547.4 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

uharfbuzz-0.25.0-pp37-pypy37_pp73-win_amd64.whl (414.1 kB view details)

Uploaded PyPy Windows x86-64

uharfbuzz-0.25.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (622.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

uharfbuzz-0.25.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (547.5 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

uharfbuzz-0.25.0-cp310-cp310-win32.whl (360.6 kB view details)

Uploaded CPython 3.10 Windows x86

uharfbuzz-0.25.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

uharfbuzz-0.25.0-cp310-cp310-macosx_11_0_arm64.whl (588.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

uharfbuzz-0.25.0-cp310-cp310-macosx_10_9_x86_64.whl (646.7 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

uharfbuzz-0.25.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

uharfbuzz-0.25.0-cp39-cp39-macosx_11_0_arm64.whl (588.2 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

uharfbuzz-0.25.0-cp39-cp39-macosx_10_9_x86_64.whl (646.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

uharfbuzz-0.25.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.25.0-cp38-cp38-win_amd64.whl (426.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

uharfbuzz-0.25.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

uharfbuzz-0.25.0-cp38-cp38-macosx_11_0_arm64.whl (583.6 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

uharfbuzz-0.25.0-cp38-cp38-macosx_10_9_x86_64.whl (641.6 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

uharfbuzz-0.25.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.25.0-cp37-cp37m-win_amd64.whl (424.0 kB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

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

uharfbuzz-0.25.0-cp37-cp37m-macosx_10_9_x86_64.whl (639.7 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

uharfbuzz-0.25.0-cp36-cp36m-win32.whl (408.7 kB view details)

Uploaded CPython 3.6m Windows x86

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

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

uharfbuzz-0.25.0-cp36-cp36m-macosx_10_9_x86_64.whl (641.5 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file uharfbuzz-0.25.0.zip.

File metadata

  • Download URL: uharfbuzz-0.25.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.25.0.zip
Algorithm Hash digest
SHA256 5e280e76a9824246ef2dd1a8cf84493ccd082149550e54572017b6ba5187f279
MD5 4457ee8f99f5c5db0f9ec70f0dcb60d8
BLAKE2b-256 f9e34116b4cf1ca40573aa8a4703b9cb4ab9480c2f40595099b7d1598b86db39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.25.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d52c4b4e935608b9dcc56320c31a33553bffcb5f18a8d4f6e9b47dceaf898f04
MD5 f775741e9099c6f86ece28b3ddb73081
BLAKE2b-256 ecc13d1e3c29dd32b065a16697265e08d2d05a889373215751e1c644a236d0fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.25.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c5bdb1c051ee2864e743e0f6b8df9381cc24a938bc4a8339b0496919e82a2c0
MD5 b94f84316e7572741b4c9187f1441a19
BLAKE2b-256 be23fae20fcb17608985aeee2eb333e504d967d392e9be04ceb6fc2912dd60cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.25.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5f341ce523dc4465937374c04dcf6d2de45ac9a7c7828dd002eae771fc838038
MD5 2fa209d8f4ad151c0214721f2ad489e6
BLAKE2b-256 b40e92972dea4930f3916106cf22ae2ab6ddf1a5744f816c965b1d7c2e7a4060

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.25.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4b49ffa15219f7674b9c0b8c77d275187ee8d22f0be8d6986ebcfe903e96a8cf
MD5 ef5a66203e43875e6d10d442a402a257
BLAKE2b-256 b13d005a763cc33fe5a4f55136084ad1e8709f7d4c9553c88c28556b173eb927

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.25.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b060a9e4a52178c5a4ae3f2cd57084e352d48f4c87003d3deecefe0b20a5c4b7
MD5 fc3c361a6b0e6da30527e6433506ec32
BLAKE2b-256 c95ac1c4e20b2279381e1a1a535a4747682fc8b61a602f5f1c7d4cb161479aa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.25.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 55e5bd484c05a2d888f54c5816cad456e84d9ef4ac4dd0b7d357670dfb2229df
MD5 f05d22e909b86036161ae145610d862e
BLAKE2b-256 259c494760241e2e60d9f7d74b029558c9466763a588f423dd675a95573bc7e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.25.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2ee43fd75d426c60ceda20c0867692be44440c69e4e57dfc06cd251b833571ff
MD5 e02712e5c777a1a609c8706eaf317526
BLAKE2b-256 ba85d0dea4b369898570f7a402cf8f3a30ff32b594feff3aee8c9e4b69712db1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.25.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fcb631e8b6b07ab0eba76d01d604c94484d2cc1f7acb77fb5d1e7f472b7c517e
MD5 1d72853c48b54305f92ae5e6c889bf67
BLAKE2b-256 b75deb5e121f626ef2ba9a93037b8f129da3b09af661f4be93d2c09cb334083d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.25.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 341a74484a8844aa974b01e9189565ddb4111ee065a08cd9108b98596f65c192
MD5 c77da64a12c36c20d9054c6827b91fe6
BLAKE2b-256 33ec16de29a2912c7b4db43d31825d3b9fe05a45aa9a734adf350d825de23964

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.25.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9243ce563a88ea49b576b2e3db2631b2a958241ca63a6de0e3c4802437891254
MD5 ce821cdf98ff02d187f46e2756ce26ff
BLAKE2b-256 f74be25dde594060f6a8d2d396e355af9879afc086468b9d21dff32109054cb7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.25.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 360.6 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.25.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 af4af082c324693c7544a7912ef74663ac41bb59268bc813ff96f6d48c07c50b
MD5 bec8419cc68addfea7aefd83e1d0b9ad
BLAKE2b-256 70adb61c37bcaed386300714a2db211c9684b8812a6414a9e1b7216ce031f171

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.25.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d2ccddb6f44e4830db39d98c8a5daafa61bb132982323b41ec7315b872397db0
MD5 bbe9c485aba13e3faef7ac7947f4baa8
BLAKE2b-256 7e111844e55a3bdba1b896bfefb6950de661c00307df30ddac28563a171f6ae3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.25.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 260792c36691d5cfac71e89c3e8223bcd15b1b550cc523d907932247a077eed1
MD5 f9f56195c0c84874bec26d4540d98c15
BLAKE2b-256 bce30e8dc53c0daafe260cad48867d570ee9aea25c8701b7f827dcca1ec9b42f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.25.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fa642af52f4e7b5af7cae2bd5252b61aad7507634303319104770fed19f52d1b
MD5 d0eb9556b0ffbf2a62b90a06ee273979
BLAKE2b-256 115093a20c8619fcb5510fcf14be980523e951d5fe8c6099a4a1bc41bafc5bc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.25.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 66b8b004bb5c3936cb88953749ff8cfd86fa9af59caedfa758fdb4e523451840
MD5 29c7b38a9f6e604a7086207ff74bb94e
BLAKE2b-256 dc7cf2720588ff9ee1cd3c3e96aaa699c9f1fb015337d9c791c96fcee65b353f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.25.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 426.3 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.25.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ae7296d38a722aca054df269d9f55c5c90f9b4c329d2f4756f3115f16f769902
MD5 d38647943ab538ca0ca98d829638d71c
BLAKE2b-256 70a2ed58be519cffe499d390caab9a4699adb03add0d659b08fd298e98a1c15c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for uharfbuzz-0.25.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 7d94d3efc3b841f9250962b8f702c0c2b7d9309e0ffd9a2d8ac0e0d9ce41a3d8
MD5 b8f3d3fc620191c4d9ba282d830a08eb
BLAKE2b-256 d0d153e41957580ba4a5a1e5c6048bcfbe91a739bf22f1e27bf0f66a57f4a34b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.25.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3d1b2104a5c574164c0a175b55bfdcc7ed272d2362254f03bc342794208bf4c
MD5 f471231e3a116eee8a6c5655f626841d
BLAKE2b-256 7ba77c61cca54864a003b01fccf962f31e6e865caf2699a4cbfa28518e57cee5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.25.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65a6e8c8cd4250dc2047c17d9d91e3ddf1775b9360c615d69aaf96d77d2a3ed7
MD5 08fa8834ca4b3579b33c00c1692c55cc
BLAKE2b-256 45cfc92e8f35eb85538edc5661dc0d5d40df1a6b1a3014f50b675c18965ae1a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.25.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 be1b161819c87439b9a8921a52a0a5f145fc1651d6387d1b49664585d4243ac0
MD5 e8e8856cb1b8f9bc97bde65a5441fadd
BLAKE2b-256 a8a79f5b8ca76beca1ad6553002a78cd2542795968aa6af6f784b7ffd5ae612e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.25.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 51324e5f22a5de396776f2f9afa4ce7eaefdc10f5f1b2f47b99b09e8eb7186be
MD5 d444a27787d2d031b434dd1ae3432559
BLAKE2b-256 6a1f187de1b2f9a6d03a71b7c53c8d2ee0f53d04f0d8b22e1135f849c00c314c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.25.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 426.2 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.25.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0c3308b340f713e0db2af4340717c7029f23af9debfdb13892c3cf7c07becfad
MD5 08e8e1c100c4bf5c25f870cd4b6f3e8c
BLAKE2b-256 d5eaaebd333ffee533ff9780014c3c1785715fded9db3944d63b63af7900b690

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for uharfbuzz-0.25.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6b94b8ef09e2c106956fe711950bb53684fbe25975ffcbdf6c5d6cad71438ad2
MD5 569e5cae4742e3c54881d3cb21dfda3e
BLAKE2b-256 eb91837236ecb32379f63240537ab354faad5676eb526c3049adf150a78529f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.25.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4fddd2e91825b67ba9e561d81fe85ea44723fd8470cd231406f7a7447fe32353
MD5 0e4226a3932fa11246319fcfa64aa5f8
BLAKE2b-256 abddf86081f53db5114fbfebdb2bf625fc2f47ddb10ad9991573491c9d4455da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.25.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 04d9abfa9bf4fdabf57fc830f8c2d9f7327b74db50f6bbda4a1eedbbc7485faf
MD5 a432a556f80de070dc312f234ef8b684
BLAKE2b-256 15c618fd69668f77bb7fc7135e29040a128e43b83f3427c2aaa0e9ae68d3b6b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.25.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 48e44ffc439cff94547c3adcf27d4792d5cff1b343fc6fc4c7e9c07d76a9d18c
MD5 61243a1897135a08df5d5b1c88e433c0
BLAKE2b-256 89e5412143b148f30caccffabc2ed18f7135bfceea10abe321f3ceb683f4d9ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.25.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f32e690ee042891460975a1272f55ce35e676da187f127948fb47ef995826e18
MD5 c55a348e594cfdf4ce6549672bd57cd5
BLAKE2b-256 9b3deed566d8896b005c7be6c77270ac2464dd249932e1b12344ec0d2d8dd856

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.25.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 0013c8e1c9f662ebb28bcf4e41299c2da93a235a916bc5b2a6c93c8c432296ba
MD5 661ceddf013e6cfd91a2f3d7868f776d
BLAKE2b-256 3b8f55c81032c32ed5607e12b7e6ee3ab5955c2d24bb14e81a7af7d4bdeb9dc3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for uharfbuzz-0.25.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 30c9733073384581543ba054cbf2be9d7d29f9a25e4f9bf44db0d4017962e054
MD5 865cb7aa77e1cf17c3bc2c57b2bdfe6c
BLAKE2b-256 22170a826c9d435590e3a97b9ab3b7c6d78fb0467a0cec9414e8c26f97f0130e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.25.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 677e734f73a0e9d12acdc73ca37e566679aa1ee3fe41894048c9a51af84376a0
MD5 1b6960d3e213d97e7605feee4562ac16
BLAKE2b-256 2c6a3f56d97e662d2d589aa206fc0abd1fd90d25fec2eeac6bc8d7facbb2b5e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.25.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9ea9d1780aeec4c73510a7e5817b1d66a9ae7e1af0d91377677a946185502e05
MD5 5d65b33b9985a96c60a90201a9432418
BLAKE2b-256 c901699db748f20abb19e618a6c556dcdf5da8efdc261af1339f52b987d75054

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.25.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 4f93a9ec20d78e9cc44800ec0fb10a732a8283a5e00890c53674d73fd31686d4
MD5 c9a2e294dbd6efbf0ebf74603007c830
BLAKE2b-256 85f80aa633f86e3f79178437fcb83e180147169e3795b3ccaadbbc92c2934ece

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.25.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 408.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.25.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 804b576ee81d7d813559c068905bf72cbdab0a34749bb0ad11ccd67c3fba9383
MD5 973b5273eb362429da2e02cd130cba27
BLAKE2b-256 31040e2a6dca29c6c52f7c14ca5b3473f766b57a843c4f092728a997e83ffe7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.25.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f80d5eaeb336153da7c6ee3c4c266d289a793166bb95766730be3fe8f4155a7
MD5 321ede04148a782899dc83eeb63d51f3
BLAKE2b-256 21158935b3b40e2e1b67c8fc5b30e269b534f1b5fb04e20d41ac6056bee45d17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.25.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 01cad51391196a38d5470c8483e47805be09222ab0c929271e87292263cb1179
MD5 da38287ce13c7325813301ddebe55aa8
BLAKE2b-256 cf7b4576d13e421e680b6afcfeceb969850fb87c643d904d14e1e037399ac29f

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