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.17.1.zip (1.1 MB view details)

Uploaded Source

Built Distributions

uharfbuzz-0.17.1-pp37-pypy37_pp73-win_amd64.whl (421.5 kB view details)

Uploaded PyPy Windows x86-64

uharfbuzz-0.17.1-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (544.6 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

uharfbuzz-0.17.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (492.7 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

uharfbuzz-0.17.1-cp39-cp39-win_amd64.whl (431.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

uharfbuzz-0.17.1-cp39-cp39-win32.whl (360.4 kB view details)

Uploaded CPython 3.9 Windows x86

uharfbuzz-0.17.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ x86-64

uharfbuzz-0.17.1-cp39-cp39-macosx_11_0_arm64.whl (520.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

uharfbuzz-0.17.1-cp39-cp39-macosx_10_9_x86_64.whl (581.5 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

uharfbuzz-0.17.1-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.17.1-cp38-cp38-win_amd64.whl (432.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

uharfbuzz-0.17.1-cp38-cp38-win32.whl (360.9 kB view details)

Uploaded CPython 3.8 Windows x86

uharfbuzz-0.17.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ x86-64

uharfbuzz-0.17.1-cp38-cp38-macosx_11_0_arm64.whl (515.7 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

uharfbuzz-0.17.1-cp38-cp38-macosx_10_9_x86_64.whl (574.6 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

uharfbuzz-0.17.1-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.17.1-cp37-cp37m-win_amd64.whl (428.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

uharfbuzz-0.17.1-cp37-cp37m-win32.whl (358.5 kB view details)

Uploaded CPython 3.7m Windows x86

uharfbuzz-0.17.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (3.8 MB view details)

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

uharfbuzz-0.17.1-cp37-cp37m-macosx_10_9_x86_64.whl (572.7 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

uharfbuzz-0.17.1-cp36-cp36m-win_amd64.whl (428.9 kB view details)

Uploaded CPython 3.6m Windows x86-64

uharfbuzz-0.17.1-cp36-cp36m-win32.whl (358.7 kB view details)

Uploaded CPython 3.6m Windows x86

uharfbuzz-0.17.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (3.8 MB view details)

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

uharfbuzz-0.17.1-cp36-cp36m-macosx_10_9_x86_64.whl (575.3 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file uharfbuzz-0.17.1.zip.

File metadata

  • Download URL: uharfbuzz-0.17.1.zip
  • Upload date:
  • Size: 1.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for uharfbuzz-0.17.1.zip
Algorithm Hash digest
SHA256 5e5f8657363fb200afc2a8314b080a26d65d56a9c159785d196d8d99359a01fd
MD5 3a1a2588c7f8394b578b9fef1c5ed47f
BLAKE2b-256 c9ee324203c85ae83efbdf9f5457d99a252f9cb39458601603194b77f0353b15

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.17.1-pp37-pypy37_pp73-win_amd64.whl
  • Upload date:
  • Size: 421.5 kB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for uharfbuzz-0.17.1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2b778f32513b7937453a7b85ff9ecaae1cb4cfeb5ae90817a1847767280b1f93
MD5 4501b7f14f93a380edc7b64e03fd6e1f
BLAKE2b-256 798f0764ae90e438b53656ff83abf07948f380af24d39a1be825d4de538ad42b

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.17.1-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.17.1-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8fd5771faa8e1579e66b248146b151391a6d2c7331ccbeb719436e7110e6e08f
MD5 e000c7373ee32aed6fe60ad44b2e8a68
BLAKE2b-256 6350782fc6abd380b4122f6599ca5b05f8bcd4a111aaf1251e801fbacdfe767c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.17.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 492.7 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for uharfbuzz-0.17.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 807b59b3ddbfef722cb9c24f95f8cda9a8880fa93ea6a1b08b1535945c60461d
MD5 7fb402fdf7e832569163b2cb5dddd4e3
BLAKE2b-256 8b8f48d306ba71749d045377a0ea39aef80d474605d1bee7c13501d1789d6bbc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.17.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 431.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for uharfbuzz-0.17.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 889838a21110595ccb39c5f1ecdbb13cc0b1dd95747b71ea45e8855ab138d620
MD5 18754bb0fb94ce5c066b908fde3f982e
BLAKE2b-256 4d1dd5b1c801d019419b510121d93d9c7e0827272d9a3401a31be977ff2a4196

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.17.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 360.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for uharfbuzz-0.17.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8cfe79531e65f2afa2222e55e8ae6ba6398306178f116d2ec151d761507ef77c
MD5 52247bfb5d1001333d3c4474e4179039
BLAKE2b-256 2a2c2409076c6e032c1b9589f765f2c67770fabddb593124186a73bc19e19c7d

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.17.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.17.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cd547d5588679c799590e5adfa7d927484163d743cc70339590a45b071f84a27
MD5 b67642248ea61072b81700a6472c5ff6
BLAKE2b-256 5b36e959eaefaf75ce43083cc04d8d90eedea5fa54e11f2c1914138ab284b1d9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.17.1-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 520.3 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for uharfbuzz-0.17.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 56cb2d2ad6e60794e67cc67c30c8c76e781c5748dde59eb402a3c4419386230c
MD5 e7513e05f91fe5c789705b72297c51e6
BLAKE2b-256 c00f2b144145d1346d3f9f44f92d23c64b5536084efa56f8eafb931391b2065e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.17.1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 581.5 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for uharfbuzz-0.17.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a8bc5a882f3d1bddec67f263b03ab2bb3a088f86e93f600aefc2abc08c38567c
MD5 b9ebfdcc0d1d3c5afbcb566c462b9f28
BLAKE2b-256 83013dcefa1c9128e50ddf97ac4013547423032cce6b31d85fa3827f399c87c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.17.1-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.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for uharfbuzz-0.17.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 76527ca2edda451b4825edd290b6d320ec95356fe17a698fc9678828b720168e
MD5 0edf35a096fe19ad5281d1c88bad28f0
BLAKE2b-256 d40f0d8863beeb30f93b6ebd9ac655b7f808cba606b812784021da88a4deccb2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.17.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 432.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for uharfbuzz-0.17.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 500f581da3021e7ad4d16cb27d78436303a09ad0d1650c4b170530904e360341
MD5 adf2e6582581caeeaf307e8231e2ad23
BLAKE2b-256 dda54f2d13bac29e507a54148512c8182b8a89c897da1e3f989884c3fef882a9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.17.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 360.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for uharfbuzz-0.17.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ecd622e81fc4d42a2263900e2b6c34111ddf5cca1bfada2b934a6aa3e9d4c349
MD5 763668a8b602c1c0f76961f66d4b78f6
BLAKE2b-256 e32346d785e9dcfe8c7aa68e5a71b8bcbfc53e77cc947a0938de44c16330430d

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.17.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.17.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 edbfd952e9ee6ab0f93b4ed133debef9957867d076fa2a5aaa7a59ca0748c817
MD5 b0d9b2cad73d5f272fff260c5baec9e1
BLAKE2b-256 9185ab81e20adf4142194af3b8b5f593aa3ebc6f4c588216f8de0e8c4d1ea5e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.17.1-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 515.7 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for uharfbuzz-0.17.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8a3d9b69bb5fbea9092e84f4e6f13c33d133dcbfb21cde17a5d916ea1eecaac
MD5 d607eb34c2a7d62bc61b4effa184a935
BLAKE2b-256 3ab45f895e77e6b5f26d1c594daf2fd59effc94db44312c08b4f3a6c80405bc9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.17.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 574.6 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for uharfbuzz-0.17.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 693a9e402559e8d2a85be4750a6b73e853271034ac24822bcbee98f52f31c113
MD5 220df9aac4402533f37e433522ef0085
BLAKE2b-256 287e774629c7ea6698f5b052f92e3ca3efa0706496755718d0d750d74ea5b03d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.17.1-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.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for uharfbuzz-0.17.1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 664d787672c0937a8a989dfd3c53353f34cb6b07ec69724de09c2fd32a14fa1d
MD5 519cf259e8acb337d84c30e93ed89254
BLAKE2b-256 a844149e1a258c5c801c16ebacc614489a6566a2a19ffa1e1ef925706bf840f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.17.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 428.7 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for uharfbuzz-0.17.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f963c74c10ce181f2a43c7a991b1cf0e2603f28460c9d316d6f73112aba36359
MD5 90ff99e4918882fe745c78ed0da8b692
BLAKE2b-256 a0c668901d5a5325e90ca3a87006f41b83afc88b29a2a51b14a4f17f8deba5ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.17.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 358.5 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for uharfbuzz-0.17.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 440aae2ae438f4f9b0e327f5b07587671d72821a1db8cef6931394df1775c5b9
MD5 244475d643f8d4a634ef62ed18d4ae46
BLAKE2b-256 643deca69d0290e62fdfad0212c0258591de60c2d156426f73dc10bca657fc11

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.17.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.17.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3209c8e62f251a95f20b06f46a627fee7b4ec254925cc0704355c28f1cead5ba
MD5 ad0183721153c9128b7f3902e37858a1
BLAKE2b-256 9db0c351f2150310d179649349a4c0d4f66b2d09e02718334fb2d0cd603d037d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.17.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 572.7 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for uharfbuzz-0.17.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4a9ede8134aeccd5a84b8b70318e8e06b826bc005116183fae7488fc9ea66372
MD5 c3e7108ea972d9e6cc57383159c7e7b6
BLAKE2b-256 74c7ab24f876b6f8c4e491f5e9abdc1f289c180951c0b6826ee47366b3d8f291

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.17.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 428.9 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for uharfbuzz-0.17.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 514aba3f4677edb4fab64160dccb27b82c78026b62fd672fad664a200e5e0260
MD5 9a82810660512e7c6e38fdda7fcb0773
BLAKE2b-256 694be527f148cf2865023ec81b5f0d72f26d52835d53f6eeaeb9c94e953745bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.17.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 358.7 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for uharfbuzz-0.17.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 13d236d0acc8a6933fd0f5408e081f5474f741c8756c76b531d729975c15f60e
MD5 8131fd0184e21c05d8a169044d9ecfad
BLAKE2b-256 757a44ef33eec10b082155f0866ecab3a182bebdd630230dc465656a4b8a25be

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.17.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.17.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ae2d82cf13ed2258e75210a8597f65e92852f5d9047ec63a1ea5042d1ad95fee
MD5 96a79e28bf36de57dbaf72a4629c6f7c
BLAKE2b-256 eba148583312c7c35d90f3523b5f905c7213e03b09790f4c2d9ab59d45e6eed9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.17.1-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 575.3 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for uharfbuzz-0.17.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 72580282f3d4d5c45ead56e21a367a8879e3a77c2d8efec705c683135b9b9d47
MD5 be0d7b43c842ee6ca3c6b10a8007d888
BLAKE2b-256 0ab4deacdb3ad975fbf44f32f8843e0ff3d6a4310bc2ed949b789127e21dc9df

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