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.35.0.zip (1.5 MB view details)

Uploaded Source

Built Distributions

uharfbuzz-0.35.0-pp39-pypy39_pp73-win_amd64.whl (911.5 kB view details)

Uploaded PyPy Windows x86-64

uharfbuzz-0.35.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy macOS 10.9+ x86-64

uharfbuzz-0.35.0-pp38-pypy38_pp73-win_amd64.whl (912.5 kB view details)

Uploaded PyPy Windows x86-64

uharfbuzz-0.35.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy macOS 10.9+ x86-64

uharfbuzz-0.35.0-pp37-pypy37_pp73-win_amd64.whl (912.7 kB view details)

Uploaded PyPy Windows x86-64

uharfbuzz-0.35.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy macOS 10.9+ x86-64

uharfbuzz-0.35.0-cp311-cp311-win_amd64.whl (924.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

uharfbuzz-0.35.0-cp311-cp311-win32.whl (744.2 kB view details)

Uploaded CPython 3.11 Windows x86

uharfbuzz-0.35.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.9+ x86-64

uharfbuzz-0.35.0-cp311-cp311-macosx_10_9_universal2.whl (2.4 MB view details)

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

uharfbuzz-0.35.0-cp310-cp310-win_amd64.whl (925.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

uharfbuzz-0.35.0-cp310-cp310-win32.whl (744.5 kB view details)

Uploaded CPython 3.10 Windows x86

uharfbuzz-0.35.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

uharfbuzz-0.35.0-cp310-cp310-macosx_10_9_universal2.whl (2.4 MB view details)

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

uharfbuzz-0.35.0-cp39-cp39-win_amd64.whl (929.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

uharfbuzz-0.35.0-cp39-cp39-win32.whl (747.2 kB view details)

Uploaded CPython 3.9 Windows x86

uharfbuzz-0.35.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 macOS 10.9+ x86-64

uharfbuzz-0.35.0-cp39-cp39-macosx_10_9_universal2.whl (2.4 MB view details)

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

uharfbuzz-0.35.0-cp38-cp38-win_amd64.whl (929.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

uharfbuzz-0.35.0-cp38-cp38-win32.whl (747.2 kB view details)

Uploaded CPython 3.8 Windows x86

uharfbuzz-0.35.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

uharfbuzz-0.35.0-cp38-cp38-macosx_10_9_universal2.whl (2.4 MB view details)

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

uharfbuzz-0.35.0-cp37-cp37m-win_amd64.whl (925.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

uharfbuzz-0.35.0-cp37-cp37m-win32.whl (745.6 kB view details)

Uploaded CPython 3.7m Windows x86

uharfbuzz-0.35.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

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

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

Uploaded CPython 3.7m macOS 10.9+ x86-64

uharfbuzz-0.35.0-cp36-cp36m-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.6m Windows x86-64

uharfbuzz-0.35.0-cp36-cp36m-win32.whl (819.5 kB view details)

Uploaded CPython 3.6m Windows x86

uharfbuzz-0.35.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

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

uharfbuzz-0.35.0-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.35.0.zip.

File metadata

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

File hashes

Hashes for uharfbuzz-0.35.0.zip
Algorithm Hash digest
SHA256 9c5c1cc77cd258ed014ceacd117fdbc7c5b13c00ad1c6dec811e6ce5b5cc5bc5
MD5 0754ee9ddc565fcb0f4c0f3582980313
BLAKE2b-256 adf00b9203f0b239df7ae0028aa33f443d9f08888e2af119faf0f9559b752b13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.35.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 271f6615148a30c23b00c652c86042226e53739a0a02386a69383057799846fa
MD5 4d58b78229fbf3bc2cb1210f7fe27a3a
BLAKE2b-256 dca786aae4fe4f2f2c52803dc3e90b7bcbbe93ec897db66dd6ab733ec7f56fe4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.35.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d13650134b32e556fff530dc50aebe12e909ccad7e9dd99a0bedafbfcf38651
MD5 b187f77f1953a9f18f04ded8f129e770
BLAKE2b-256 1b009dc47c47db56d2a52cf72de6db96b4af8f634aa45b272500f40ef2b27e10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.35.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d7c43c409b0fc1b13562c868fbccab270e69490c7d1a1013a90232d6471c1932
MD5 a16a3b31ae93b3887ecbad329f1a7e95
BLAKE2b-256 3ba6db5d6c8206efc532fe7753585ff8c408de57d16b6e6daae7a39cf77ee447

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.35.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1c29053616e4968876b81acad55c3596029a99e25533961d4e43bdf11ba9f176
MD5 76595997855a5b3b08e736afe325da50
BLAKE2b-256 586f9e69930448ce5c890d8df20c1a2faedff902c5ae0f4407f01e03ea76e692

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.35.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 72225c950f331ddf174e9f00b865574d78c7e2539bd293acbbe745f002fb8637
MD5 91918ae52e876c8d49da83598893908d
BLAKE2b-256 90703c7366282a1e9041cc6bd03815c2ff9061dcf985edf826bc3d47b2d70daa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.35.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4a1143b45d4cb3e2c9564522b844993f28aa86cba5ca525d568cd5dda1194516
MD5 96022f3510140ce39ae6fc58bfc2178d
BLAKE2b-256 855823dfa29c3fdbb247f9f214494d4423b77a7552c7421c39a6edc34cba5ace

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.35.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b7aa7bb9664c1679861a1282f53f9f906f91688c78572fdbc055223fdb2b418a
MD5 72d614ff3a2fc9940f07dfbe32825392
BLAKE2b-256 c36a96efdb6e48db3c4020fb62b76d157ac1aa6cac67422c3804f942e665c0d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.35.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6035bdd9b9cd0f72043487cb92344f99dd7e3960b962ba10c9d308d42ffb3b96
MD5 efa0c93f10cf59cec70a640e4dacf33a
BLAKE2b-256 ee5ede183c1e7a3041028f8d7965363b68ca8d460b949a6e6ab0d87bbf977216

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.35.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 84f769275f3ea3ecb842420d2ef4262aa2e9f65bb2e07f32c5d5bc8f617768ef
MD5 c58a2dc69184549ccbe475f1123df71a
BLAKE2b-256 c770b65a048907ad9c3193308ba9d31b60573683952df9a289dbd4414f4a993f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.35.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a6678eec5f4b62ae39b485397c7f57de083f6ce979ad19f63a0b6e79a8ed42cb
MD5 390a35bd918607476c25e18f34ffb1b4
BLAKE2b-256 0ff998e22f63471f5fd9972e5b32ea42040c1861f6697820a5b91fb3f43da356

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for uharfbuzz-0.35.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b1e13941d6dcb87e92e4dda53d499032db07776c84a2ac1cb885caa975f57364
MD5 bb9aa9e2aff4a68edc2aaa3696ece098
BLAKE2b-256 46c19a45c7619312751dbb45b352c420995959fbf71c16a796dda29f5d002895

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.35.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e58f55ff2fe7f360edd5bcd9dcaecaaa3810c6af53994350026e541d80e8532a
MD5 20addb7620a99f8e577ead1ad911eb04
BLAKE2b-256 bf77aee4e2d6e544d199cda0ff199fe938f3b42d11083e47326d19910d47d7d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.35.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc8ac4662be3377fecd9c550d8ff9d7b68b0fc4c06e4a011879f8a775ce1afed
MD5 acc067fcd6af86bb7306f3ef75c35900
BLAKE2b-256 98286c70227c6feb2ccfd4e2eb378bc7c2b8f7fabd3076ace357e145d35a7979

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.35.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4b0290d9a8a69ca51011be87767f9aacec6835d3a3992f88ff1534dc30f5c3e7
MD5 ba84a2bfa84c69e528f38c0f6d4d5ccd
BLAKE2b-256 61278765c9ff5e5f24c5ac0bee153772a5e5c9e0e2c4d7b91872fcbb973f2142

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.35.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f2cbff25ea83d603aed183e21629a8b0e96e37f9ca017875400694451db8fcb3
MD5 076b59bcde5770fd6503693f62dac7bc
BLAKE2b-256 8c5eb1dc0398912260700efa70b67e5ae291a18ea541f926160e69c3ea91ff44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.35.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9bfefa4da7112be730dbd31aef088e06401cf01dd0655a7b283f8bb215608ec8
MD5 7745bc4656f5790651cd688ff8975008
BLAKE2b-256 de5e6f5184163e1f5541e5aefc4308e36e9ce53194e9809031b94cda461a2493

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for uharfbuzz-0.35.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f0d69d7db1cb388fe97228bd33ab4620b62734c182837c7a2a8da9698427e306
MD5 76c23ed4310720784a5b28771637118d
BLAKE2b-256 83ed059862053ced2dd7c43efb71606706d061dbede69e9d8e197986fc5d78b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.35.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 df2e7025c7c12be2be2165af23a358cee1b4a8c1013703af745f319c98780035
MD5 0f444a1466100fa47e93d8f4edffe04e
BLAKE2b-256 1dea2426584842de3cd709a2d18585b33e355691fd49507f8d57f06c1d80330a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.35.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb85f8bab1d76907f55cd1be61f1ad9e1a00a75af551e6c868a57fdd80e417b7
MD5 1f36494ee2768eb5631501759bfa32af
BLAKE2b-256 3936983f7b3f81ebe5fc081a902b2c7b20d840489882f8b3dc77c3cff18bc6fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.35.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7ed75f1977cb400b3d517e27b62aea4b5801e1b4efc0fe02765c1924c43b7163
MD5 921289f2f9e38c42ee233b13c9e2ec44
BLAKE2b-256 e8daeaee5f80f1800254869d7582db3fa1ec9a3722c32f69894b5b2df0ee7133

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.35.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 430dd1e3eed423789d55940367a616aa4466cd5e53c146f19d4918adbab1d041
MD5 49f56a6ce110e964ed42a9411b2b43fd
BLAKE2b-256 f5d2baa0bd9a20891467c542068ff9cb3d935aef03ec9dbb9b01c42dd0c16611

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for uharfbuzz-0.35.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5689241030596bcf9f92c77efc9130a3cfc9846b71aa14ffa12ce7eeebaf39fd
MD5 83cfb1a7ad85d4a049f74185f6974636
BLAKE2b-256 4cb2462102765231bf3fe5a0829ea745e83a910531c586154992c88c602e7f24

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for uharfbuzz-0.35.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0aaa6214193398eb8e054a967f7ef3fa2fa5f6656186081f20b09aef39f75078
MD5 9d5f3b5823fe9adca750a8f4376db39f
BLAKE2b-256 50bbb6c65926acd1a2213fb1081184d2e85061242ca31d5b9abf3f7e33b0b878

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.35.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e946f15b2e59fc0f662f6c328f186b571bd0d0b7dada4785625841dd4deccc9
MD5 3ff4a152e9d9cd151f90cf2eed77b47a
BLAKE2b-256 545cb0f5ce1cc5f4f9307cbec18d6e83d62cbafa255d5fe076a08897d4738c9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.35.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65cbaccf01e109bc7efe0bb3ff4a23408cb8c6a9a51f3f6baa3c6aae86345bad
MD5 e4dbea647371b13f088dfd210f963762
BLAKE2b-256 8392542aa5ef42794c069f8d8ed4e482216e2adcf3790a9bd9846ef498c9326f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.35.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3051da014927a494ed92463310008329b7f51b86491a2dca5f50bfed34c78370
MD5 a0394546f41970a4904bc3e202de0af2
BLAKE2b-256 8567ebe1637c2f9bda34b7480c8aef544bdf3c4aac3d9c3a05cc300fbc41c1ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.35.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 52565d76b22d537985e8dbaf7c125d579fce62e16592ac51513e000f7c9da653
MD5 c1f069b16188ca2d445e0224f0e23d76
BLAKE2b-256 4611a5732f62da9351ddf34da5dbf7090335e459ee87ac26859dc6effa10cb36

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for uharfbuzz-0.35.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a844c4eb8ab729667ce9dd0d2507f5cd22b6b5ee874d8436bfea8beb50ff8201
MD5 024874c7819f5d6807eaef8e6eaa5516
BLAKE2b-256 91675b8aab27a006444227a0734a9ccd99c9b223ccdca86d88c7f63ce673143f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for uharfbuzz-0.35.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 12a1a0c2db43c6bf4620df98b378fc4d9111a45bfd7dda2a13e2ea25301d1b5a
MD5 aefb0cfef2f1ed733bf00cd16d8a77c6
BLAKE2b-256 bfa157a7b51269dfd065da87c1bdb97b21a87f8ae841b66b6399b8a91008c35c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.35.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6976c659078ba30ba713e96674647ecab6cc659a16d781c879e9f315af487060
MD5 d2d03c92f8bc9492f23dbdc5abc9ce65
BLAKE2b-256 bbab5362e3bf761dbe5d8e9013cd56fefbf6e83a221d837aebf06910cb2e84a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.35.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 067077eeb0c7367bd0394e0c473041e1baf13e57f7b5fc06529a4c84e10e3b3f
MD5 8ece880a2cf40ab7c233c6009fdc8bc5
BLAKE2b-256 9717a3e4310fdadc70e06bc0ebef31440f125b3df97d3d82f2e6e1b44b64accd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.35.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bb184e13e10dda03a0a19711e98f26d47f67f50253dcb9c91a3b57ccd9a28ac2
MD5 acbb8f351836be8cd9e93c6dad878453
BLAKE2b-256 5eef83f09f404b03c7ce0abfe9093ba77abc051ad4e14d0d6558deab8bbd9163

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.35.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7a7bb60b01bc5c9cc681ab190fdb3170762639b3cdf00c5c456bbd58e41cd6db
MD5 8ac4ac70805b023dfa78e845ac065a44
BLAKE2b-256 5af2beec8b87d9fd2c3c55c5f457eecef91c4651ec99861758bff6fcfe23247a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.35.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 3e6e98cce23702efff8f13b15df13924230aa9b46dfa8af0d8d04836a937213f
MD5 c94b162658cd0e99957a248df5106a0b
BLAKE2b-256 c0aa29f422481e73cfae7509ab65a153465951d8032f310867de43363d06e108

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for uharfbuzz-0.35.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 2dbc7cb0d6625ae79a1485d9d2ab6c2a32bd4f70da9bb49f66b6d3cac5f12dd1
MD5 17ebda19530e365413f26815557d9093
BLAKE2b-256 059d63003a77f6548769415077cbb5e0316f1e58d85067703f011740fd26d051

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.35.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 adcab363afa90a734bcdd695a17e86fb4faa935dd09cda0621f40833dca644c5
MD5 b46b305ef3f1b2a95c59d267e6b8b66a
BLAKE2b-256 b8102b3d74b0c321ad0510692d08a62072cf0e0a30ca777eb558e1622517b090

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.35.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 75241775e56966b595883e50db702e567238cb95d782adb318ef044f5fcee127
MD5 cfa4dc6218c695fcbb714e2defe8cac8
BLAKE2b-256 48f5be2a6ffda29968ba0d4da89f7e590f1494d13b381f011c790e05cb27d9f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.35.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 a8d206802ebf55c6c647e1721718f2c98ffb27a0a6ebaa38f702bbae5900e7a1
MD5 43d24475d701411ae3b4f92acf9eb71d
BLAKE2b-256 7e888e1fa89a602098d973beb81977f084b360cf1bd7d4959c69b6ec14be90c2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for uharfbuzz-0.35.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 2f552fb77f03dc921ac9000c5dab97f4c274febb637de6b6b595a8fdeaa4bffb
MD5 65e7a6e3d0ae019b7dab1119328033d6
BLAKE2b-256 89689b80b45ff1252d0dd37591e078f63122b0c875e5cc6a960041e88299b4ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.35.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1156c2e3e6e63d99a0c80b6d0f3d1e8f97ba0cca4ad27f600cc98bd8d5b1fc41
MD5 2739a5dfe0cf9b63d359931f033bf0fa
BLAKE2b-256 0ca588754f096531156ab081cf29680b7d696ebf08add1dcd765bbf3f2d7bccc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.35.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b1864367fd4fc368b1c4244012b69476f5017dc01706026d6d61cc66533cbd3d
MD5 50455f9dbb9e66f4ee10860359b826cb
BLAKE2b-256 23b76d6b05d6e1356e0356b2c01cc34e8720fe58fa67b1fd312c07e2d753e905

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