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
    glyph_name = font.glyph_to_string(gid)
    cluster = info.cluster
    x_advance = pos.x_advance
    x_offset = pos.x_offset
    y_offset = pos.y_offset
    print(f"{glyph_name} 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.38.0.zip (1.8 MB view details)

Uploaded Source

Built Distributions

uharfbuzz-0.38.0-pp310-pypy310_pp73-win_amd64.whl (1.1 MB view details)

Uploaded PyPyWindows x86-64

uharfbuzz-0.38.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

uharfbuzz-0.38.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

uharfbuzz-0.38.0-pp39-pypy39_pp73-win_amd64.whl (1.1 MB view details)

Uploaded PyPyWindows x86-64

uharfbuzz-0.38.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

uharfbuzz-0.38.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

uharfbuzz-0.38.0-pp38-pypy38_pp73-win_amd64.whl (1.1 MB view details)

Uploaded PyPyWindows x86-64

uharfbuzz-0.38.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

uharfbuzz-0.38.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

uharfbuzz-0.38.0-pp37-pypy37_pp73-win_amd64.whl (1.1 MB view details)

Uploaded PyPyWindows x86-64

uharfbuzz-0.38.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

uharfbuzz-0.38.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

uharfbuzz-0.38.0-cp312-cp312-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.12Windows x86-64

uharfbuzz-0.38.0-cp312-cp312-win32.whl (879.3 kB view details)

Uploaded CPython 3.12Windows x86

uharfbuzz-0.38.0-cp312-cp312-musllinux_1_1_x86_64.whl (14.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

uharfbuzz-0.38.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

uharfbuzz-0.38.0-cp312-cp312-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

uharfbuzz-0.38.0-cp312-cp312-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

uharfbuzz-0.38.0-cp312-cp312-macosx_10_9_universal2.whl (2.8 MB view details)

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

uharfbuzz-0.38.0-cp311-cp311-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86-64

uharfbuzz-0.38.0-cp311-cp311-win32.whl (879.6 kB view details)

Uploaded CPython 3.11Windows x86

uharfbuzz-0.38.0-cp311-cp311-musllinux_1_1_x86_64.whl (14.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

uharfbuzz-0.38.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

uharfbuzz-0.38.0-cp311-cp311-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

uharfbuzz-0.38.0-cp311-cp311-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

uharfbuzz-0.38.0-cp311-cp311-macosx_10_9_universal2.whl (2.8 MB view details)

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

uharfbuzz-0.38.0-cp310-cp310-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86-64

uharfbuzz-0.38.0-cp310-cp310-win32.whl (878.2 kB view details)

Uploaded CPython 3.10Windows x86

uharfbuzz-0.38.0-cp310-cp310-musllinux_1_1_x86_64.whl (14.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

uharfbuzz-0.38.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

uharfbuzz-0.38.0-cp310-cp310-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

uharfbuzz-0.38.0-cp310-cp310-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

uharfbuzz-0.38.0-cp310-cp310-macosx_10_9_universal2.whl (2.8 MB view details)

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

uharfbuzz-0.38.0-cp39-cp39-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.9Windows x86-64

uharfbuzz-0.38.0-cp39-cp39-win32.whl (878.2 kB view details)

Uploaded CPython 3.9Windows x86

uharfbuzz-0.38.0-cp39-cp39-musllinux_1_1_x86_64.whl (14.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

uharfbuzz-0.38.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

uharfbuzz-0.38.0-cp39-cp39-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

uharfbuzz-0.38.0-cp39-cp39-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

uharfbuzz-0.38.0-cp39-cp39-macosx_10_9_universal2.whl (2.8 MB view details)

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

uharfbuzz-0.38.0-cp38-cp38-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.8Windows x86-64

uharfbuzz-0.38.0-cp38-cp38-win32.whl (880.1 kB view details)

Uploaded CPython 3.8Windows x86

uharfbuzz-0.38.0-cp38-cp38-musllinux_1_1_x86_64.whl (15.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

uharfbuzz-0.38.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

uharfbuzz-0.38.0-cp38-cp38-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

uharfbuzz-0.38.0-cp38-cp38-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

uharfbuzz-0.38.0-cp38-cp38-macosx_10_9_universal2.whl (2.8 MB view details)

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

uharfbuzz-0.38.0-cp37-cp37m-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.7mWindows x86-64

uharfbuzz-0.38.0-cp37-cp37m-win32.whl (874.9 kB view details)

Uploaded CPython 3.7mWindows x86

uharfbuzz-0.38.0-cp37-cp37m-musllinux_1_1_x86_64.whl (14.7 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

uharfbuzz-0.38.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

uharfbuzz-0.38.0-cp37-cp37m-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

uharfbuzz-0.38.0-cp36-cp36m-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.6mWindows x86-64

uharfbuzz-0.38.0-cp36-cp36m-win32.whl (959.6 kB view details)

Uploaded CPython 3.6mWindows x86

uharfbuzz-0.38.0-cp36-cp36m-musllinux_1_1_x86_64.whl (14.6 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ x86-64

uharfbuzz-0.38.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

uharfbuzz-0.38.0-cp36-cp36m-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file uharfbuzz-0.38.0.zip.

File metadata

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

File hashes

Hashes for uharfbuzz-0.38.0.zip
Algorithm Hash digest
SHA256 755eb50b7c1f87a151ca0b73ecabffea50d7f5ceecef36b08f72062de408d35c
MD5 48d98b3b94455ad7d05d9d0749896fa0
BLAKE2b-256 f360736a2c29e14bad543c61bc2e693148db383921c3ca68105992b4113eff39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6d8640e72a6ee8d7b2dbce674f64cf0a4f6df37f4068921841dc843615bf2171
MD5 650169675f859cfbad5be6bdfef64ed6
BLAKE2b-256 c766ae232edc2bc7116b8d362dfb75224096dad42e9aa846f5eda2c6abd6a909

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6adf7db60aea9972e44e4b9c02111fda33c775cdda9c56fe7d2733f05d736e0b
MD5 358af4a347139bec29251ff208671962
BLAKE2b-256 85a238b5d940ad3e3cc83a213165cd02033c4ef6437f615950646dffc6befe23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 394d7ba9a659da818f4af7d03868ebf4bdd3adebd1340455338ee35e0f09e642
MD5 c157bf73ca5a34f48d41010975f21130
BLAKE2b-256 a6d6a8f823bab3df80e81125b8894b0e8757c5b339087fb89959b9fd79333cac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1a1862e2a7b8199b3725d0014507f91e3e86885669e7002315220d50a5cfeb3b
MD5 f3ac352d07f53aec981a4a583812a0b0
BLAKE2b-256 4daa51a261a6b964748351e91c0c8af892d6b24e7e41906c5df1dd9e09649db8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e524f52835d4a24c41c825b9a68aff245594765e72f0c4b14b1b7f49953b8168
MD5 0adcfdd9d74b7ab6dfabb41860ef98f8
BLAKE2b-256 3f09a0fdc57de91c38ae8c48c3064724fb923215c4cd5cc8fa18fb4ccfe64864

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 14b85b84fd296c16fa597d586b3da176fd5312665f8661f1474f378f4fdc3605
MD5 9f2776e5ce5827138e74a8d49b813976
BLAKE2b-256 98a97b15178a9efe6bb7f66387ab3855d71463fb57a75038ea9419ce812e06fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7bfcfc4e958cff333cef576b98a7691cdb0bb38d3d546341bcb3e13f4e328bed
MD5 0f4c0273497866e78e43e98894247a67
BLAKE2b-256 3ddb1f1e18e2e8e12e30c5059eab37b2ca51ee6d13e40e72049c25f5e53aa4f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8cd27d42e2a2d3e54c9417ae66906cc9d0c5211c6befffb69271895311c393f8
MD5 57eac47854320c079c7a4917315c5dd0
BLAKE2b-256 6db516a91b317ebfa8c3b3c8ad13694436e9424560163252b66d4c7b487f3723

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8d2816b3400bf960a64e63d94674b31be93d90da285c65868780a2b67abd4605
MD5 82b0cb44b9fc1614b491f92c304ed007
BLAKE2b-256 e239676d6c9d73ed0e92f4ef3e8f28ef8b30470e5a2cc0343500e623f88f6f52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 979f90fb62d09e20c7bbca3e5858468f95dc48cd7261bf50bad1cb2f1571ff1a
MD5 0b82d577114b11d1e14fc0cfbe7f0205
BLAKE2b-256 9a39a8dd5125120a38709320ec6bfe65a0099d0acfb5c07b894bf23752e7fbc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 556457a5cc59810ef30d1c6b39378f2163c89422aafa92fc94b6c2cdd767a445
MD5 2d609ccd95db3730dab87b0bf1460d4e
BLAKE2b-256 bd85d43d1452758c9c82b224d77d3709cb9ec280d99377ac6eb991abb58ab998

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f8c5906dc6b2d45c404cda72bb2ed236655f25fe42e214a8275284fdbc83d94c
MD5 11cbf68847c9d3b05951b5b6dc126007
BLAKE2b-256 8943e8f59a31205fccb5ad83494378e05b4643b44341e5e582aec686c925bddb

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.38.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: uharfbuzz-0.38.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for uharfbuzz-0.38.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b36a77130a5e79facec8c946f32fdc1be8ebb2b702a1cc1045debe0cc07a5993
MD5 8c178a1ff28258f15aa35d282f23e7ea
BLAKE2b-256 6e969ff2c35f477a6db8959733bd228309cac3bd4bb7952d37a281ee7ebad199

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.38.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: uharfbuzz-0.38.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 879.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for uharfbuzz-0.38.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8d05ec142cca164e73d91090e21b6d11c1edddcd7c34cd7841279b50d2e8efe4
MD5 918ad75b8cdb8daf606b30f9db2c7198
BLAKE2b-256 7f8779ed0fefbf490531a75fb778cc83b85c83e8acb25dd3a06f2e8bf51b7aaf

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.38.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 219bfdeaaf340fde1ba4360ff40386b72ffc9e8b5587be8f570317710bf4c066
MD5 ba33f6c2974037377f54675067562563
BLAKE2b-256 703dd524dd1ebf9163bd4d77e529c9dd7f113680d76adc5459ba2db0e95a2ca3

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.38.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 30b64a702d903aa68077b809cc99adb8a67db95a5e20738d225b492f29c42e26
MD5 ab2b3502a64ffc23bcfbd4ea72a01c25
BLAKE2b-256 3faa42f975c524a0552b527e0c6e1a4c8b494258278746affed16300cf8812e9

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.38.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 42dfbdf3f7ae5a28ccec79726275846b4e26f2749cc19afa86564553fd9726dc
MD5 30f9c47402bd06da91331667707a6c0f
BLAKE2b-256 4db17f8b2d3d03dbb0dbf25a35083a578e3f8a6c5007652ec6b0bdd787292a95

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.38.0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 35f020d9699512d79fd427d92d58bd0c60d3712531b35aa3cf7bc657a83100d7
MD5 3e38acbe34f250e0cbd62ef5f4c2b3c6
BLAKE2b-256 8d91b828925879958551885b90ab976338558a33d150662e397d2e9705375e38

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.38.0-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2b0007fe2e3020d6ec6f19fa8cdcccd91fff853be15b8d9a26f91980101c8e0f
MD5 17f5bb6f364df53d4ebbc03d515a0be6
BLAKE2b-256 a8e4a69d6dd27f41eba5ca3dbc19b59727e33812f5884504e250151a2f2bb846

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.38.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for uharfbuzz-0.38.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 facad02e35aed0e5d8998fb492d13ebf71f737612db0173b9298b01c2bd2d37b
MD5 06e701429dd31495c6f4324d5053e16f
BLAKE2b-256 40e7ef1cf2cd9b2d2ba23bd1f81053c2e3b4448c957425038dcb63bde5bdc77e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for uharfbuzz-0.38.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1fe8f7addf2ad463fd20ee9eec4bec0e03e7c8b02390115d0c6ea9b5e990dd51
MD5 83901f14ef0ef4750695a7875db2a85b
BLAKE2b-256 57b8af52f9e2175b04a8086534fa22fc169ee30e49b1aa8a2726c8e0ad50b6d8

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.38.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9d82317dd78023a70cca77a794ab983ffdae2b399187a024258e06f4026b7018
MD5 bbd3f997922f5746190d254e0dd3f071
BLAKE2b-256 0b475e9e1a138315df363bdf43352113c85c3060bd414f5d89b97ef783be0a5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7fe7919105386037cfce7d8d8fba493e9fba6a95962d0f82ca3771a5a7808c0
MD5 bd3a2dbf85c5539bea093e7fccbdaca2
BLAKE2b-256 cd14bae12f54bb255a9bf96b10497a9368d88c80e4514c70c9438e8574f202a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e867b26cd54c25845da3e1af7d6b47f8654178346ad01e5a861052194cc87a6e
MD5 bc5f299897d0d9c1ca5600f790900f1c
BLAKE2b-256 145dfa476becd4f6d9d9bd9fd385e11a97c42398be0e731db16d143359cc6d62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4fb6cb7ee41ddb65367490125a50eeeb326d773c5f9ec3611719203bef12148d
MD5 f65f6ae3b9763504193d7eda483187f7
BLAKE2b-256 7bf61adf7198b786836d932807a53431ea7b9275caf23cb01898a70501e4e2eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3655b856f13f7921e9375ff7a769894cacb97e86ea6b41d65a4b6f29d10f2c1f
MD5 0a1321382e7b8a3756dcf67dc390dbab
BLAKE2b-256 2d67658514f5f102e9706b1e2f584c08414679d40b9e243e6e2f4260ea789031

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.38.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for uharfbuzz-0.38.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 93d1faea6fe894a54b5ebed73a6d6ca33f9158767820cfd8d70d84d50e0a5d02
MD5 f12aeb0d4af452c817cb09a7c1f86c24
BLAKE2b-256 e40e0a9f4ebd65b06d283263ae4d0d73624f95f7e678ae1464f908b149726231

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for uharfbuzz-0.38.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 40c80dc44a410fcdeefecb4754ad2f659fe96574f64e7d567c3f6fdc4eed4ba1
MD5 98fba1bef18a3455b25d49890f54937a
BLAKE2b-256 83a9a37a89ca22eea29932452951c7e0bdb5708119b45c5c6ed01139f628ac0c

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.38.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0ca98844bf69a7441bd3fe30195a5820655c7aa0bb7a2e87c36f6e28b3922bad
MD5 5e0506ec5fb4eaa109cb03245f9d6385
BLAKE2b-256 45e5684560ef5d3527450212ff43135e74c4bcae772c6273f626a81a6b968cc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3b98a34fb697a1601286fd7a0305b8a5ce41bbf37c6e297a9f5a011f5730aa26
MD5 564917f3544c6eedf6cf6291dac5c822
BLAKE2b-256 6a0aa51bbb7fd0fd02bf18673d0504bd234ce5d20a8af0c24d39d1d903038c2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a53501eb0d93a936207d6b296bcf5a29d527e1981a7d2044758e5b2fbf1ca0f
MD5 f81c49ebd2021e930dc3cb1c9106b340
BLAKE2b-256 29bf25ab9d7de08cc77929d74ffd3bfd5478eada5c9483d7ec3d25c8969e9d82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8459eed532f0e82538f15e65cd297fe46e85883ad723fc220cc090abd2c089e5
MD5 b8b43be03f43ee8a339b56930d7fd73c
BLAKE2b-256 5ce4487dc6c48e07faa3c63eee2e687c0983a01b3153cd570bbb540a10d093e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7439bdb727579e1ea78eb931656626be2de24c2d6f02f8d4ef9c36fc4fb1d6b3
MD5 50fbe6bd045b44f1169cd111bb1e7d53
BLAKE2b-256 780ca0dc2b3737b6f1b4dfafc2bcfa5a1d166e078c2c2fc10140ca0898f9f7aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.38.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for uharfbuzz-0.38.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f4b6e594df3c8ea5ec5db99c60cb3b8bca2b4e8acaa0eec6729ebc3368eab708
MD5 fde4178b486c4275ccd242887956ee65
BLAKE2b-256 60ca0b8f55df923ff8d1f76480e4801c03f0cffa0b6e9714199f5b72d09c26d0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for uharfbuzz-0.38.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 246d923eb7d43a400ca0af7843d9d4653607becba04a7877243700eba9eb86e1
MD5 6756ea071940462c1e92467178245af3
BLAKE2b-256 5cca1c033de245d5fce3eed0f00b710884d96d114e5dddbf691c6fb916dcedfd

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.38.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6b8575c56d6596140e15b1cedc9c84e14543e26be592b1eeab6a47608ecbd8b1
MD5 d834dae34fbe6271eb46c50a5e21aad1
BLAKE2b-256 37c1ab51ce633c9bc86501b636177543f5a6a1ea36012c822a0a48f6185b607d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 053abcbf0d1acf6eb9f876c6fd18ac0c610ac09d2ad2fc7e3bf646d11a3d104b
MD5 da5e741feb6b9df6a06a713925dfc38b
BLAKE2b-256 36bee53764d1bac0da2b94bb8a832284982e2bbeee56c28118759c32e0c640fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60c9ab1f118fd441e1d82c34192eb0caca238b141aeca053e46f106fd09ea4ae
MD5 3391d00460bcba7f9002f46f3ef3669f
BLAKE2b-256 8f65aebff40116ce39ccac18e15653c6628d8c076f2e25de1424480997af661c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b2804f44afc4b5cb0109179341b584c68c323e9a3f16b437f8a4f6c0c71a17d1
MD5 f0fdd608a795578cc88a89812fd31ad4
BLAKE2b-256 e96818e58f5ae69b8d7e5ecdeaae892dd9ab70209cffaf56082678562d92447c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f1b0b7edc8e3fd71b32efd483fd554e99406db17ce772ff09bd65e87f18834a9
MD5 8208d1d3fb9eb8951927bf59544fdff8
BLAKE2b-256 b9ef5bc12a35bd3ec60a2c082b8bccf936186742c381b32968f3eda759bf6f26

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.38.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for uharfbuzz-0.38.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9456e9a1b0adca0fc5c03f0a328d083dc503021cc61a599307fc43ec52f14f45
MD5 80c735a1eabd8b761bc3499f09638477
BLAKE2b-256 5900d2d52c2006acf7b4fb4959fcc4fe5ec2c3d8b90c6a4e2f4e1999839c3ec9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for uharfbuzz-0.38.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ba040502f43dd1e3162f02b8f25d284145b57763c2448bdbfe94c4549b4c2832
MD5 c6264de3f6d8299657f8fd23410445ac
BLAKE2b-256 d8ff655903a8b94a7abfa2a9cd68168806005cd948d3be8b1905e5a93c20c78b

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.38.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 80fdb1a9151a82217e28f41c64b2474e5c449bb9f86f09bd0def6b0f98f726a5
MD5 5457b42bb1fc56d436f4f89135bd88a9
BLAKE2b-256 cffa0a7156c5417b478e641ad9601f8dfc0eb1f1330f7214d6d31fb02b2e9c30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d45367e40e6e531668eadd3771836c8bb62390c338261b37bced1c816034ac7e
MD5 317e41be49c0d06d48474c09367b7ba8
BLAKE2b-256 59c715804fea32adf5c5bec5b0f55962eb22c9a3eee5bb8fd00e8268133c32e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f91dde71bfa51126aebf19819342b82e0820e56a035f61b6a5ff7bf1c1977a04
MD5 b245513bfb6cf432c61de704fadbe7c2
BLAKE2b-256 9b96023c17afad6c376178f9705b77a2430b7c1943628246fd71fdd6d4abf7c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2e80311340e1c5852e2062f532e6dbd4062baef53cd76f90f10df9506d0fd4b3
MD5 d19915fe290fd097d815d84ca84d0d54
BLAKE2b-256 1c2d4935cf4db380d01b0e95961b7a31436c5f976eb8561a5a629596d1ad81ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2a703e3043d31e38ee21d6eddcd64aae743071c5b21b99e9abfd116d983a02bd
MD5 8d8889b910286ca2317ece3f58a6063c
BLAKE2b-256 93aff09b5ef86e47ae84029624d916d4ed649efea4a6f7ad588dce20770e7218

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.38.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for uharfbuzz-0.38.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 7e18df378299978c30544b63376cf92e7bc2c6e5d175e5218d142de894985923
MD5 0402fa8a921c70d282ed0988ba67fce9
BLAKE2b-256 fa96ca3b4e33f488e57bb78c0d73b07db7fab1608d1c75e2138aa174346ddf7b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for uharfbuzz-0.38.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e0bdca996755995eac5572ef147178ff6c07d258718ab67dc4f0aa672482afb2
MD5 8d679cb11cfab7fce8bd386b64429a25
BLAKE2b-256 39379115e38b75cc54b5451dc690029c771d24efbad2f96f014814837f4773c2

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.38.0-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6976b2a95efc22037d6dcadce95b16888a927e5a4c89e7c4b4de2561104908c1
MD5 73d9403dc21b0c63b9ca8b8110598388
BLAKE2b-256 e64fcc213ce3c00ee913e0d0329d8e7c8584b8b3c130cdf28d9814b4eab805a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c761cb6575f40a108aa34882e60ecdedd1f2928ab6753c9a9a59c271b9b18c95
MD5 264e775397e851aead5dad9a17908d27
BLAKE2b-256 027d9a123c10a5a0572b0076e8e0b8ce8ac74a0409cd7946ad22183fd7bc5897

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 29532e629194116937e136d6b91327d18829cbfe4091f8d0a65175458087a230
MD5 65019c0be2fc1740bb7be00368ec800f
BLAKE2b-256 8dfdeac1102d007c0aeb497bec636b0591dc50341ed80632a0759794410efcf1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: uharfbuzz-0.38.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for uharfbuzz-0.38.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 59d5264b90b8e0b8864a407bb51bfd0db5a9d28ea3a822c3a1a8089657e3ea05
MD5 2f891deb34e2dedf8736d125c25557db
BLAKE2b-256 bc7eb360562e3981db1b8383fc0d1148ac0cdf6fedcc7cab44f43bae41061792

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for uharfbuzz-0.38.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 e90c03cf294bb2fbea04db91d6b2a99eae4fa5454e10991092092bed4ee8fa1a
MD5 25b2bb654be4a61735566d6cfd2fc6d7
BLAKE2b-256 92dd73bf0ee6de001f3860e5276a7c6debe7de7c5040f3dab83c3be4611d23ce

See more details on using hashes here.

File details

Details for the file uharfbuzz-0.38.0-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 520907bd0a7aa499e2a41199a2b16f604a6d181f3f05e2b02ac4c96a13a7f25b
MD5 2bd7940d8ddc47a79fa82d80a42a6dd5
BLAKE2b-256 8b7432dbbdf3267e3b40d47d2a3a43c9f0d6c923529f054f72eb950c83b5ea96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9c085f3aea309a333077420a33f394345f54963e57fa8de26216f1a6217c9626
MD5 d8e25f4412ad8cd743a7f0fcd5d295f1
BLAKE2b-256 73cf20f6411ac6ba48c6c804c55248f603d2ebf29ed5b50dca387a3cc325e774

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for uharfbuzz-0.38.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3210c3c1cbd1797b838e10d7a055e0386ec1395847f9b71afae108be9993c3d6
MD5 76f80d1770d10f6d78760072494700a1
BLAKE2b-256 ab16ee2eb983c8032197cd76b807d7b70822e390b94089641e381dc335e0f450

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page