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.

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

Uploaded Source

Built Distributions

uharfbuzz-0.20.0-pp38-pypy38_pp73-win_amd64.whl (744.9 kB view details)

Uploaded PyPy Windows x86-64

uharfbuzz-0.20.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy macOS 10.9+ x86-64

uharfbuzz-0.20.0-pp37-pypy37_pp73-win_amd64.whl (742.8 kB view details)

Uploaded PyPy Windows x86-64

uharfbuzz-0.20.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

uharfbuzz-0.20.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (496.6 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

uharfbuzz-0.20.0-cp310-cp310-win_amd64.whl (381.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

uharfbuzz-0.20.0-cp310-cp310-win32.whl (321.0 kB view details)

Uploaded CPython 3.10 Windows x86

uharfbuzz-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

uharfbuzz-0.20.0-cp310-cp310-macosx_11_0_arm64.whl (537.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

uharfbuzz-0.20.0-cp310-cp310-macosx_10_9_x86_64.whl (589.9 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

uharfbuzz-0.20.0-cp310-cp310-macosx_10_9_universal2.whl (1.1 MB view details)

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

uharfbuzz-0.20.0-cp39-cp39-win_amd64.whl (381.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

uharfbuzz-0.20.0-cp39-cp39-win32.whl (320.8 kB view details)

Uploaded CPython 3.9 Windows x86

uharfbuzz-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

uharfbuzz-0.20.0-cp39-cp39-macosx_11_0_arm64.whl (536.9 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

uharfbuzz-0.20.0-cp39-cp39-macosx_10_9_x86_64.whl (589.8 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

uharfbuzz-0.20.0-cp39-cp39-macosx_10_9_universal2.whl (1.1 MB view details)

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

uharfbuzz-0.20.0-cp38-cp38-win_amd64.whl (381.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

uharfbuzz-0.20.0-cp38-cp38-win32.whl (320.8 kB view details)

Uploaded CPython 3.8 Windows x86

uharfbuzz-0.20.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

uharfbuzz-0.20.0-cp38-cp38-macosx_11_0_arm64.whl (532.2 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

uharfbuzz-0.20.0-cp38-cp38-macosx_10_9_x86_64.whl (585.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

uharfbuzz-0.20.0-cp38-cp38-macosx_10_9_universal2.whl (1.1 MB view details)

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

uharfbuzz-0.20.0-cp37-cp37m-win_amd64.whl (379.5 kB view details)

Uploaded CPython 3.7m Windows x86-64

uharfbuzz-0.20.0-cp37-cp37m-win32.whl (319.4 kB view details)

Uploaded CPython 3.7m Windows x86

uharfbuzz-0.20.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.3 MB view details)

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

uharfbuzz-0.20.0-cp37-cp37m-macosx_10_9_x86_64.whl (583.0 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

uharfbuzz-0.20.0-cp36-cp36m-win_amd64.whl (450.0 kB view details)

Uploaded CPython 3.6m Windows x86-64

uharfbuzz-0.20.0-cp36-cp36m-win32.whl (372.5 kB view details)

Uploaded CPython 3.6m Windows x86

uharfbuzz-0.20.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.3 MB view details)

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

uharfbuzz-0.20.0-cp36-cp36m-macosx_10_9_x86_64.whl (584.1 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file uharfbuzz-0.20.0.zip.

File metadata

  • Download URL: uharfbuzz-0.20.0.zip
  • Upload date:
  • Size: 1.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.20.0.zip
Algorithm Hash digest
SHA256 29a0c286c2f89d62b7b40277615111313cc27728d1c8773580b53239d10f93b0
MD5 4e8c406c96eaa9acfea176999417fc08
BLAKE2b-256 ee028b77434f5a6224e1b1ae54961c10fb7d6b5ab15f0b55e057ab6fea7d5e06

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.20.0-pp38-pypy38_pp73-win_amd64.whl
  • Upload date:
  • Size: 744.9 kB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.20.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3f6781150f5aa6436deb5e70d132eb653a9f2c9ec353d6f544b47e6c37825716
MD5 1aa190c665153256c6965df76fa6bf6d
BLAKE2b-256 e86edadf2b1e02118f267b52a0477a5992cc98efce4c2ccccea617a3f43224be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.20.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ab6581a56a62aa2eaab27505b02b8f0edcc99f365581e5158097e858c195809
MD5 f0362d517695482ce37f5742f5e1928f
BLAKE2b-256 f8cffee2fa19ddf2de49f9926c25d58624483e5b044dae3073f7e9e44b964dc9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.20.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.20.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a4d995b617f8eaad243920ad1c277fe48a7ee5ac4a65b9037292cd3c73ee395f
MD5 a4283d35f5e9a630d94792af1e07fbd2
BLAKE2b-256 2168e21e3d4950d912ae6f248eaeec3417bdc818ab7b6be3b770b7b5108476cf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.20.0-pp37-pypy37_pp73-win_amd64.whl
  • Upload date:
  • Size: 742.8 kB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.20.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 cb2b35e9dae5d6f60e54b08b4e29c2f058fb213c3367303d55284c60969bf450
MD5 2d81c76b7302f6f18f0b7ff235670b53
BLAKE2b-256 12ef9d82e222d778038adc4deb79fcdd788383599d4aed6c010a1938a24760e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.20.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 adcf707cdbcfcf219128fd17c559f43b4a189ec6c385cc082577db8d7f7a1768
MD5 a1bdfe11fad3128eedfe7003a9fa4b80
BLAKE2b-256 f3efdb81821207cf6d4b5e96c7fc7284d474f2529bc7fb425c5dc88959b74c7b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.20.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 496.6 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.20.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1609569dac1c3d1d55d288768b9c829c344b42f599133d4a2db60b9a568353b5
MD5 d266f7ec971d99cb3b8d2d89a020b66d
BLAKE2b-256 bc631e7a4338e69a429d2b2a3165fdf9ecaa658a87e30cc9db2b331d25fe1387

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.20.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 381.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.20.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c19294a05fe38e711ee6337898bde16d44278c798d851daa0ab6a23fd670ab76
MD5 aa9c492fac6cde988be232dcb5ce6e10
BLAKE2b-256 cd8cec8e805c3e2e314ea416bf0b95f33a123e3d8be60020300b5a7b5a1b8c8b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.20.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 321.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.20.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 00c9869b6cfa1c2d633b04de0460bc52d65d619ac893776a9a78e0f8ec2a8b5a
MD5 d74ae76374538fa4f88e8de68d79835d
BLAKE2b-256 c20bf691abdbbcbe9df022a587f7a6a41ae71eac2061a075cb1f045b46e1903f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f4daea96d602414f96b9d92fae0bb36d3a4c217464d2cb0d7ce299c89d08b78
MD5 7f744325106bb09571ab6fefe5b5a28a
BLAKE2b-256 1dde24e9494af2c49f2626e00ea0229cfd925a009e4c809f2830db0532da4f45

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.20.0-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 537.0 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.20.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5adfd0aad33c630595e6c59646edd28700dcdff3d7b99dd0bfa5d050844797c
MD5 b236272359e983c710d54dca2cc6f08d
BLAKE2b-256 acf6cdd64c854130786eca1d053a5e0180147742eb6f4c45d27f8383b3e942c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.20.0-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 589.9 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.20.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d13c2044e75767b744a05de9767599cdcf51568ae3720fb6dbe9d9cdfa1ae49d
MD5 3c50841c9d4517751c3c467e1a0b51da
BLAKE2b-256 3732cfeb7f94aa5a363dc23c1fbf97490a25748f8c47de2934a6e829e72c8e0b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.20.0-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.20.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9bf2c3b842dbff582b876c005b7b73bb1acb5618ac40b5a2740324cb55f873d5
MD5 5f88ed221997e8a727db8a135f95a008
BLAKE2b-256 3d6452b66d6fc823a4fd7f9f2dad6755e30eb332a5ee270dc5ea45f62089e22c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.20.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 381.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.20.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8b52783114bdd4943f81cb013daa87aa2ab187b9f5403f65fd762da368db4474
MD5 8065ccdd5d1e0d86fd27c0748819da47
BLAKE2b-256 997d3fd840e2f9a09a8af61df738fc0517d6bc77429616a2325c9d2f190ca9bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.20.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 320.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.20.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2a8a655c2eaac0040b2f1c014173ac4f1747b7a005f8309e196bc5bfc4488543
MD5 6bb5c3893fb48fc56ba3403e85846a8b
BLAKE2b-256 c241ced4e8610e25ad1ac8a2cce7434b0e58f871ecd07859d0d751bc790d4c30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2c1c0a8951b9b324527c438f58a64e659f1511344b35adea825a5ea93ad41783
MD5 47f41cfbb69f57d6a942bc199bd905e8
BLAKE2b-256 381925e572dc7f6fdff00198ebf6836bff94213c67736aa4a5afbfd82547dd8d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.20.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 536.9 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.20.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ba084bc643f8606cf43142adb9859b5a1d82272718d38aa27038552d679f5758
MD5 386eca5272b0640724ed47401f2d72f9
BLAKE2b-256 bad86b1a9c9392806f4f17608e8754f5bcd329e07c668ace8bf95381441eea16

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.20.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 589.8 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.20.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dc13d6209d93f624bc8396b42f6a47a8a749aac3cf987be3a975de2863cc491d
MD5 686f4866ccebf804c1bf413067195cc5
BLAKE2b-256 54fc2d45352403422b1358906ec5fe78af0030ca6b112986e25f59418483c979

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.20.0-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.20.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 bc4dd270b005501d224e626d61e1c83992c9abca8dd33cc90bed979cb526f6ad
MD5 bc627356ebd93f02626b817308f9f4f4
BLAKE2b-256 655a33addee4d1d1f537783d9b64daa06a974b3aca2e75cec5e79b8432fa1d77

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.20.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 381.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.20.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9f3ce032cde0f0a52f6270b9bf76045870f3b48a48c9f2e64bf8ce3acd7e1402
MD5 020e00a6b1a79c4e8c51f69b55b8c55b
BLAKE2b-256 dd91efc77a9ba282be7169855312662af62e55aef84042e8beae5767f0054539

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.20.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 320.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.20.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5aabfb082d80e996566ff22b183b50a822021f44ba9d2015c6eb92f9b8210eb2
MD5 1accada742cf2a7b78e4ce70d4540ba2
BLAKE2b-256 ee0bce26d975fabe808562c5855d2b6726e239d609bb52d2fdb858a224f7e3ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.20.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 959abc08df124446d2153c462c55cfcdb4a5c7bfbdfea9fafd71f06ed981cbc3
MD5 039e076469c52ffffb8670e0f878f301
BLAKE2b-256 a9d218bb2b2967424585779e1a9d04a1f061e5c1638f57cc07210fc44a91d5f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.20.0-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 532.2 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.20.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f46dde84ade29da8c7af849ebc9668e64ba799c94ab034801c75d99044a8f49
MD5 fed954769f8e9f29c312fcc286c0285a
BLAKE2b-256 6439957680d7f1fffc0478bc63f6bbe668e3acd370bf478be28ce2d72e382e0a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.20.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 585.4 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.20.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e36d8630ce499b6cc61d686deb399ff63ca17269000cf6647a1f549a58e64845
MD5 69d2d325c9d911214efffd8c8cacf6ee
BLAKE2b-256 c6fbd682ffde0f3fae51b59a25d271e6831f58c6714a636a41f2191a163fa0f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.20.0-cp38-cp38-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.20.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 77c017325b58d1d3da4de512582284936e18815f39b47a2619098bcf735f0864
MD5 dd35064076070216dcd671934c59c74d
BLAKE2b-256 e7abc7648b3532ff34f209c91d4cf44f9381ac37abbb521a3e9cd05c4168cf0a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.20.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 379.5 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.20.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f0efef8d81a507712f92f65b74513d6e40c79c268f1394010d946f36b8b1362a
MD5 af6cb4ed62fc4581eb5a928410a3234a
BLAKE2b-256 d90beadf3cd4f30ec0059f36d6a8bf937260a6bfe8dfff5c58bdfd66188fe106

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.20.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 319.4 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.20.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a9dbbd4a109dcfbf9127d8f261fd974be470dd2bfa8a5923ae074aead929e4bf
MD5 b6c595e01be97744d2ba1fd943a36589
BLAKE2b-256 f7370eee76404588555d7d6ec9e20bc6d2188b04bf42ce1dfc4fd2ba09f5303d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.20.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44240352ad8a88daaf0155ae7f62991d7c83d9e727d1110b4478b81c7a0f2b35
MD5 c3ef850b55aeb4f567c78f32f4ea0cb1
BLAKE2b-256 b0801fabb00e43229e7269581c0276a628b2c9601a1290b984b120914ca6deb5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.20.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 583.0 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.20.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bd41143d904e5b2d2e9239a17811c00214c07c10cc73dbab5a7bbc2e1b7d3ab8
MD5 3ac7e3750b59870902c5b5697ac6a600
BLAKE2b-256 c2e1e04672edfa0b2546d7634d2d7d2abacfb2a06ba1150f8446eaa66a2f6344

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.20.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 450.0 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.20.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 cef9971e847c897e7b533f3f8defd53528e827edf71874c0aa03d310b6112521
MD5 eabb3c86d49534b6de810666f63e69b2
BLAKE2b-256 69aaa80d3cc8fb398eaadc85ec8c6bfeba6d69203ef6786c46a9947f12400010

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.20.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 372.5 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.20.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 d57b1ac7f22803c5fe2ced49aaaf33110a5686a4710c33f3a7ce083397d7425f
MD5 a5bf1df443440ce931eb2a6ec3d62574
BLAKE2b-256 e1cfc0758161ea480a4cc1575b36e9f7dee65ac4f3b1e2a9e9305d7975aedd8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.20.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cab16e931c8de860e0c2f78b8531d7550f2ce484876f345721b5a09186467d0d
MD5 8a73d8847c3265c14a631002a865592b
BLAKE2b-256 44156c2fc7722b538edf60eeceb4b43b00c1a968ab0af894dfc1b14b9dbb287b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.20.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 584.1 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.2

File hashes

Hashes for uharfbuzz-0.20.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 42aab90355f9266e59dc881221fb5232525495ed3d5ee442b134c59fc7fa3f25
MD5 b31002bdb328d504feca692e6cadeb7f
BLAKE2b-256 56205c3f3ff3a3676f850e23af507d2611285b2151048e8dbb00cd015338cc45

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