Streamlined Cython bindings for the HarfBuzz shaping engine.
Exampleimport 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}")Installation
When building the uharfbuzz package, it automatically incorporates minimal HarfBuzz sources so you don't have to install the native HarfBuzz library.
However, if you want to use uharfbuzz with your system-provided HarfBuzz (e.g., if you built it from sources with custom configuration), you can set USE_SYSTEM_LIBS=1
environment variable (see example below).
USE_SYSTEM_LIBS=1 pip install uharfbuzz --no-binary :uharfbuzz:
harfbuzz installation is found using pkg-config
, so you must have harfbuzz's .pc
files in your system. If you've built it from sources, meson installs them automatically. Otherwise, you may want to install harfbuzz development package, like harfbuzz-devel
on Fedora-derived distros.
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.
Download filesDownload the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution Built Distributions File detailsDetails for the file uharfbuzz-0.51.1.tar.gz
.
d651174806fef320c6a036b0ba395ce8837549de26cc65cf18ae879012d2fba0
MD5 9725201ef02a80912d87b2ea351c2d09
BLAKE2b-256 7c2d5daa9720dce75e939b01d5f0875c83c5c643efb85013558daf52cfdf41f2
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-pp311-pypy311_pp73-win_amd64.whl
.
aff4fe27b3a525eee0903bf2b0685f34c0b096b3155818ceb196ca5fef934e2f
MD5 d2531324a9a89a169e25f59b4c719ef8
BLAKE2b-256 6e67dcddb2839049bdc913ddc43eeb05d5e66d925ee7e12cc18968ef35ee995d
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
.
10c71d8c88da61a1e3765d5ce596b49e3290c54b4588d3c59b7fd651baefbccc
MD5 6252c36be84801b219dc7da96bc4a5af
BLAKE2b-256 d1b78dd24963080336264f51b6355888968be7d1fa742db70fa95c5fa8a44591
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
.
908467ac89c8a6b9e66a79fb8f85fa069f1316e96febe3994d4cceb2db8cf9c7
MD5 4369f786cfd718d6f30b6f2543f97e79
BLAKE2b-256 314aa422ff6f8627491fd2c97d09c2f406d8a37046ba70d986a786de5a6ac400
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
.
3c8c9acafc09ff747378e54e652b3aecdfa9bcf0b4c1cb5e92e834959a5bf6b5
MD5 2e1e36ffa02c4eeeb04d962fb847e8bf
BLAKE2b-256 8719d883d2fa424cd6690d66ab2db7655a03e71372939578f0741696462027a8
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
.
49449543de84ca788f394b258ebef5d7cb8a23e571ed7631ba33645c06b51a46
MD5 31a89c9973edd1998fe6be91c3d562df
BLAKE2b-256 371ce312c149c7abe15585acac3e2068793dd5df6f0659515628418428f88c08
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-pp310-pypy310_pp73-win_amd64.whl
.
f27de2aa84b747a9cb4034a0c2ab927ea4cbf614451652cb72d270d7c9a9a491
MD5 f6dfeef19b9249443b7531eaac7d7c6e
BLAKE2b-256 64ebbb7534848921b75e5a95dec1ec1b96b6a247be233afc6301a024a1ad84e0
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
.
b4500812be5aeb325b673249999e80cc45d95d2886f7af2aa02983cccaa79591
MD5 e2ad5659738bf4d10d60907b04597ae2
BLAKE2b-256 3f84e0001707818ce76532b5098a9ec71bb836ab019e7913068e89981148f6f1
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
.
5ac48ad94beebbf2238a80bb5b3f8c2c6b3e3d6fc5265fb67ceea7d991601424
MD5 a4bc1cda2de579ed0724aa11dc52f9cf
BLAKE2b-256 edb7d5f63d1bf8c4a3a46f9606f84bf8e4474b4e5333985cf575a01142e5f2b0
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
.
b8f729457d829b4521d5e9cebd33964880ff1f81d84e3e52ae686b09cc0e7726
MD5 5437290fa755cc07e92313a4fcb08329
BLAKE2b-256 a8dd021213803e6e6a3703a4b4f58cf2f1de0d0ca9c3505236ff2304b99dd9fc
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
.
da4e237a24d981de501e24f1383d6954e6b961c51c4b9c015f878f274c554d12
MD5 bcec9c7a8a07276738f8f1b0c8df0f05
BLAKE2b-256 0970c1523094489895b6a52b742e6dedc3b5035ed9c8179035b27964c17aa100
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp314-cp314t-win_amd64.whl
.
f1b7570a043475b2981cc96f7b8fefa85411da2cc68fdcaa7b39d21411c70bef
MD5 300f310083fc9567969c6c6133cec2b2
BLAKE2b-256 379c18a6d16518c4d620012233c32e318c351dc5b1df9c4226d3a167dfda8ec4
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp314-cp314t-win32.whl
.
23dfb19549685413d455a80ffd8e94953c0bcb69820f07131b60560da259ba3f
MD5 931e53577dcb9f46714c4d8f04639472
BLAKE2b-256 a1819d85520aad1d19a944a91dd5b4faa1f175a1f39d145d4cafa4f8dcf63dfb
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp314-cp314t-musllinux_1_2_x86_64.whl
.
d037bbf845cff9a1a4dccdb963e33bfed2c816af76765fc22a7700dbe89d265d
MD5 9d9c0f60bc846109c8f88caaee7a7043
BLAKE2b-256 d33deb0c5626118fd89cf85224504dea6889e1e555c7cdaca5071aaaac90ce9a
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp314-cp314t-musllinux_1_2_aarch64.whl
.
31d3fb1e0d97ba88c56cd0a6c5fab275888af404170906da0663dd2c3abf83a8
MD5 b29af7fbb8d3cd84cd7a51c52e723dcd
BLAKE2b-256 558cc07d08604a04f79a451f5c6ba1fe79eec3a6fb759b6cedfe4997b5ad5706
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
.
f1f7a0197c2d4e82e7e07aa9b4ef69d5c3000175338c2b25a04a27dbe9ab65b9
MD5 d81260d81cd585d35936a8c46bf52771
BLAKE2b-256 fca43afb04e57329bacd008ffb52564926470b2989878280d6a451f9cd9fa9be
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
.
e2178a6d4109ce5a97f88f30a4d2b720fa45bda4c865645fbf75e3ef4f5b8a9a
MD5 76b02fcf00b91c212ef716c426e2c94f
BLAKE2b-256 3c7c30faed9ea161c061351d7b0a91870aaca6268c3e9a3b626a7a6f81646d98
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp314-cp314t-macosx_11_0_arm64.whl
.
3a6ab61f4e3009c04f46d94095e490ffc71267f07c5d981efa595961e685f36f
MD5 53a8fd02f7816c07b62209a635852c03
BLAKE2b-256 9fe1abb03f5c07ed19b75126efaae7a6ffb70d6233d170f53a560a86602f7084
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp314-cp314t-macosx_10_13_x86_64.whl
.
8ba66fc78ed585ed8f9fb80de1aac7c13502a4dbd220b655cd1a7f80f2042e05
MD5 593ec647f0feee7db4b70a377b0ec09a
BLAKE2b-256 9b13fbcf066feecc3c1a53c86425063f78d23938cd8a3e7217fe166eeee80443
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp314-cp314t-macosx_10_13_universal2.whl
.
6efe15358181a073c4268b50d800fb08001a55356bd8ae7d77addb86ce7ba927
MD5 1a70496686f1d0aeaabed3637a15e8fd
BLAKE2b-256 3fe712ab0d2182bf86b9da7397e84d33fd4d3b4f94c4969f06f8941c07bc6b84
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp314-cp314-win_amd64.whl
.
06e1a20df1f70d9a40127528a37e6b130123fc4c7935e02b5de078fe0f15a9dd
MD5 95b560766bf4f1e9ac0b3c97443e8edf
BLAKE2b-256 69feda0d31cdc587fe8e5557d7f371a03b52b5876cfcb8defc7d72b20c35df38
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp314-cp314-win32.whl
.
e9e83c3f15f24f3498e28e28d6b506498ba92e2ff8762b8c0b85664acf415046
MD5 64ae48b88cf74a8513afd7c1ac8d0324
BLAKE2b-256 39ac6b5303d0636d1f6903012b4479d36caa226d76994b4f354a3d19a7b1e361
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp314-cp314-musllinux_1_2_x86_64.whl
.
aa4566c4b2d6ddccd0d86a178bcaea6454ea73e2bd0c38719fb2ab7ab1592429
MD5 a1971ba11f6f2ed6f2fd85487bdbdbe8
BLAKE2b-256 c2781fdcee2ca15511568660051acd9e89b89a0aad9a50a7c8a18ee8904d58e7
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp314-cp314-musllinux_1_2_aarch64.whl
.
dbc270c293cf2bcb3e825d6bf1f85ef4c7d70cc0855bcb9d5c5eb5c00d6f3a47
MD5 b2f20cdc1b5cf71a9c3422f51d137249
BLAKE2b-256 31d5a44240f943a864ad75d6fe354e0f7da6aad754d9b69c40ab2c91c95a9b68
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
.
db7a4b118789d4ce614744784fca8110fd6a9be6c1baefd17e6f714061791915
MD5 8432a8b7c30bb9d0dd991803b4869992
BLAKE2b-256 0e9bfdf71a63fac0f5f3fc8efd00e09e755e04275551d8f62eed7bf685454f36
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
.
8f757728d1bd65c962d03fd6ef6ded8de77d0c50bafcc1685240cee5400564f3
MD5 acd9dc0a30ca8c250c25c9c68df7cd56
BLAKE2b-256 2f9b0a90c055a5a0fbaed643a17fb2634d9e0bb51ace2daadd89d3b9039d6f09
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp314-cp314-macosx_11_0_arm64.whl
.
57c34bf5f4a16889cd1788210526d3c268c0b7dadfb8772695400740e3b55306
MD5 6ce37f87917dc07070eaf2c582739768
BLAKE2b-256 528ea37697c2a3a9930b88898ce77ce5d868663e4483ab75422ee71ecad95628
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp314-cp314-macosx_10_13_x86_64.whl
.
ecd82578de1be08aaf06ea84af08b2556a485ad5fbfeefc3b3f5deb0d2c5afc0
MD5 bbe2fd14583b4c9769f4add73ac7c78f
BLAKE2b-256 d2385569308d55d22b132258f89abe5f221dfa7b87a0109418a7cfbd9595d7f1
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp314-cp314-macosx_10_13_universal2.whl
.
2ef158b1ce55be31293574d3a5fccb356e1c87ad201be0ad7cb6b55f08bb28cc
MD5 2f4d57efb272218b738e680803ed87f5
BLAKE2b-256 aa870bd880301ec410864a29c97644a6d2083e172a39d59fae5a0e10fe9fc37b
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp313-cp313-win_amd64.whl
.
4faf69287615ed6f2414ee0db4b4edf854dcb555fe7dfbab3dc620afe8542128
MD5 840c80e378031957deff53ac7b77d0f0
BLAKE2b-256 f9ccc72bdf6d7d30c60d86085517a89ba1420c1985d5807711f14071c6e7fc65
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp313-cp313-win32.whl
.
0327e6e68112adb3f0402cbea8afd0d0e076ed1e60a2537300bf534f7381aa99
MD5 b081d7ae57dfbd22bc7d35412615d238
BLAKE2b-256 620066509798789ef954003b5d25b532b271aca86d15da4c8e169644b602b566
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp313-cp313-musllinux_1_2_x86_64.whl
.
418c03151ea43c0340ec271f001f98d982edfacd7ce0af3375cd77b4c3a97640
MD5 18b8bd7431f9732a66c4b9f14fadf1b1
BLAKE2b-256 5d3dfd4b854f95c58ff16e0611712e09edcdd7d3c3b8a71395dce8a7b7323759
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp313-cp313-musllinux_1_2_aarch64.whl
.
abc4eae04a0c6b8d90d26998416d7d830623b270e33436f0fe0fd91e750f0da3
MD5 b7ac7844e7f28881c6805afaef7f4fce
BLAKE2b-256 bbd257c5b9b8698ff99a2e660c6c86f71267f3e0c38b7e588f4251d43e760362
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
.
70c3f068e1c3cb228a0fa3f9562b5eb160a0ee5e33f34d9783c4da43d8b09ff9
MD5 34b724aa68bafc6ea5ee39c152324aa8
BLAKE2b-256 715009df3a8245d10c7b128019475893d5b89514b1f4d9002d657edff739e352
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
.
cc25312bb158eb8cb8ef69d949b83e30eb98fb3875bebb1e3d1d859be1d8ec00
MD5 c45911a0f1df2d604341d301b01466d2
BLAKE2b-256 80507b442d887024a5f701292ac3106eef6901e901b7f182523d435625a4ccbe
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp313-cp313-macosx_11_0_arm64.whl
.
8df3fec0bd0d553d7b8008ecb75edf0cda9b5ffbe8243e798a00d7a1b32491fc
MD5 fc95601e145df9797d1090f9aaefbbdc
BLAKE2b-256 f2868c5095b012498ae6555ccd167edec2d320387e76d9693621d51691db5cf2
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp313-cp313-macosx_10_13_x86_64.whl
.
7c4cc1bfa856369b4965dc0db623064ea8ea20def53294b028a1ac2a05e028ca
MD5 a36f7f377cca013608940e8d7f89f335
BLAKE2b-256 d946ac7cf3a0b747f7a2daf37aef572ebd54c1cd4060167fdcef7f464a9bc882
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp313-cp313-macosx_10_13_universal2.whl
.
d5371380c2b500cf27e34931fff7923b221d7056b89278e997507587d488711e
MD5 25fd4e29819fc4daba6a6980c970612a
BLAKE2b-256 4619a19d37e718cb56e76142e84a1337e71111a224d0ded9dcdeda8bcceb33f7
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp312-cp312-win_amd64.whl
.
b0ca00b9b509699a599ea0f61afa54ba31966a2a8044c6bfa446dcad4fd4df4d
MD5 ea9d02354fada855821cba6252dadfbf
BLAKE2b-256 7c826efeef6926121c25dbe7766ba10646defc1d22fbb6e124da719673bf6842
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp312-cp312-win32.whl
.
992c6ecf20ea4536a61f6cc62d100423f92ccd15d3b55eae2b9dc13697b5595b
MD5 2151f70539329a6ccacfcc0cca9f1b25
BLAKE2b-256 59992b75fa1591e8d02ca0b4d7ebe76be858c770d8fe5a7ed41a402a17d35c45
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp312-cp312-musllinux_1_2_x86_64.whl
.
72d4266191a76e624b18762a3581c000f5bcfb59940589f1f2df838d0f82e389
MD5 e9a84ffbac8e4350aef30b926c5696b3
BLAKE2b-256 365930fa037d9968e6cb0d1d4907904265a75693b4ec999b7aa47777797d6099
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp312-cp312-musllinux_1_2_aarch64.whl
.
c4293a9f237f3d6e10c20fe20ac58be595d906c7c1c0e0efe6f04711b86f2ee4
MD5 09eccbc05abf3fba780084099a543b9b
BLAKE2b-256 44e72b6c9596681b1aa60485d95c5b4fc0095d3d6d286fc3e87bb7f5e84d7ab4
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
.
c56d7e56d4ca97b2704e3837187f93769655c6f64e242e088ef65919f5ae8d8a
MD5 02a132e93f4f1b161f3d5e0cfb40d15c
BLAKE2b-256 db6998ad27ecd244e5a59a7dc6c357f39d57393cd094b1a2edfdd97fe9ece754
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
.
8a449d98d2284f178e3406057f54ab59048dd23f7c027fda7cf03ecb075d5111
MD5 ad1535b0c59d8e17f22a65540f156dcf
BLAKE2b-256 a7fe77eddc6abe82c5b76d7f0e663494eead8d9d1b245124d7fd5f125683fcb8
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp312-cp312-macosx_11_0_arm64.whl
.
81e753661c1767c0ffda9c525efee612d07e19b753ce9d4bb667a2ed256077d1
MD5 e2d62321d340c06744b79d3a1513127f
BLAKE2b-256 37357c6a43532c6be73dda122481f568143888d6063dc6dabc7ea5722a17c46d
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp312-cp312-macosx_10_13_x86_64.whl
.
1e888163b7aba6cf7da1a7ba56002097a4de35b1dcdb5c6a89508cad9859afaa
MD5 821ebf126eb496fc3c3ffe9d12316e13
BLAKE2b-256 c25297f1dfb9e0160fafece3b59d36a9486c8b40057f50273a770fabcd899e27
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp312-cp312-macosx_10_13_universal2.whl
.
925479f56ac14178ec7d9e942b9ddc2bcba54cdd1f3285387b8e926a9fb6f904
MD5 e3c3c48407d2bf6d432dd8e1da12f969
BLAKE2b-256 80b94a25bb899c803d3163a8957a0fa3058406af2f7c6a84469e84fc41fa0bfd
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp311-cp311-win_amd64.whl
.
cec8a7db9c89e3365efd724a95f864a615008abadc69d8aa9f627e4d63af1043
MD5 77f3d8703c31df1489fc60978540b1ab
BLAKE2b-256 5cbf69d9d20a763abcce132195d30a4f1c9ebd044527195718164516b5dc4ac6
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp311-cp311-win32.whl
.
02fbea5a74d358f0bafce828574403a2270352a7270bfc43c68684aa6924896a
MD5 39876c40a41841b56264bb0550929917
BLAKE2b-256 964c65a331dcc0d39c9f85c6e5a7dbfe215a3faceec71b7dc0d57190e2c4fe1d
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp311-cp311-musllinux_1_2_x86_64.whl
.
0979cf5d6345eae7181ab9ccf325c6eea7bde1410105b137ae6bd166121f0e0a
MD5 c6a2d7f219c7fc40bdbfb82499939267
BLAKE2b-256 e565171e34cc0faed1483ec7795d35db469030015cecb41cc35256339761988c
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp311-cp311-musllinux_1_2_aarch64.whl
.
6ab4b981fbd2b9eeecaaf480972a65abb99aa5c96f93abdf7506f50c5030983e
MD5 02dd331a9067457af3c32b6227106ed0
BLAKE2b-256 6e03ad1a38187567d78f40d1cee582ea37804e43aabae8656f117f7e8027e33b
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
.
b6c505fa984c24ea7c344c415b03b12d6d1daa9a2040e17e2ed4cadaf7499957
MD5 8223a9beb138ff7475dd8351590f9121
BLAKE2b-256 f245d74656a939b9e93bf75bf96024547521620ee7cf4a8e15dc42c038344906
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
.
0a10991509ee72fe381808066e71dcfe0dd87694e6d9eb154874128227f8f20c
MD5 daa0080da36749d36543d4aded0756b7
BLAKE2b-256 c39b2fd11f9122ae446e7a938549d3b7fc4ba740398d4b80731e6340081e8bdc
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp311-cp311-macosx_11_0_arm64.whl
.
c2fbe9693ce5676af7e6044435ac26f941b65ab5273ac66a12dc0972ab2a8cc8
MD5 6240fa727f4e70c6c23fb5bd67ce3821
BLAKE2b-256 4cc0f574945061cf268db459dfd797e3f545d5d21d3247eaecb482169160150b
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp311-cp311-macosx_10_9_x86_64.whl
.
22c960a49aa3ad16ceeb59d5830d5040cd0d8315fd3c73f1e8c93c144d5809b9
MD5 41786b019a35d98ebd69e6e1c20d609c
BLAKE2b-256 b1d17d04d2868aea1fccc479e3dce8f507ab5c1bbe47edda172d7bee95f2df3c
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp311-cp311-macosx_10_9_universal2.whl
.
4df8802d7014b138d167fac5e23aa4d92b80d6fb208ec0b151ebe88b6976229a
MD5 dfee25c1cea6b1bf6f43aad087053dde
BLAKE2b-256 4dfeb3f509a83217ee68b49cfab6fd2ec1786875943a413ce4d18d70901f968b
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp310-cp310-win_amd64.whl
.
acf81c398ab6d67a36f1a01fcc6fb6fb4ebe11e8e86470964aa721601f106278
MD5 04af864c59bc524680ab4e6167960a75
BLAKE2b-256 203b3cb028e446f04303cf0c3ffa93df2cc89cbd0aff228133ef17b7793df650
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp310-cp310-win32.whl
.
3052cd92582daaaa01763f1a0db870e3706b3fa9da7cfe4212dba769ae6ea31c
MD5 dcb9ae6daca07abd4e615db7a300ca0f
BLAKE2b-256 c30bb044824ff8d6083356ec8182e5d06c8d4afe27082224a00e94afa15d37f3
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp310-cp310-musllinux_1_2_x86_64.whl
.
498174c44e62b256bbbf5689829a4a7539ee7136373c3159080dd39ac22fb094
MD5 96c241e37015cd7cd9f2648e37f82ec6
BLAKE2b-256 8698e6b1d890a820a95ca36c86ea7e75245558df8d8091d1e73a347686a12b7e
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp310-cp310-musllinux_1_2_aarch64.whl
.
290a018d4e42cf6e897ca70b0afa528113bca560a93b2ae1adf2ab01b05ba4d6
MD5 9524f7cfa8d17e12d7da018c0b380718
BLAKE2b-256 e258d8d97778b5d4a5a62252e02af7191bea863c858dec5a8b8c1a8ec509993e
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
.
d1c1d1dd5f902d79749d16178c3ac189e1770e747eccdbca398d0af1533b323c
MD5 0433f767eff74ec6d8cc4969ecef1cf4
BLAKE2b-256 788443122b19e791f85f742f015dbdc08e4c368ccccac53d424023d627885ec0
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
.
e71c0590e499a9a3cf371aec4cc2b192d67c28d6b85c291d5e6536d31f45fbfe
MD5 b39a2fde73e53d6b9c2c4777b42a545e
BLAKE2b-256 533abf6f47dbdbf8e72eaa6539fcb8fbed7902b89190e9268b48f08d0da84ed1
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp310-cp310-macosx_11_0_arm64.whl
.
2f08cd04a2cef21e6d97c30537c7208799455e80c364d35eb4bf27330f7d3d3e
MD5 edbd7671110599ab7e83c51cfb80162c
BLAKE2b-256 56d8f2029f81ad4ec45af0ef1aae03b21822ccb774716b0ec91573614bf74d77
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp310-cp310-macosx_10_9_x86_64.whl
.
0b4cdd2646464783c375cb130d2a0a48711f275c1c476fd8ec3d4b8c7b85f72e
MD5 182b6fc35c86402064419a2a03a462fb
BLAKE2b-256 ebfd8d078dd35ccf4918690d4acc4e7b3013cb02b5bab9960ea37c02098aabe0
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp310-cp310-macosx_10_9_universal2.whl
.
370a71abf27671a5198a0daf76c78b73c4696403173b00b2e50104425cfd84c5
MD5 a10cd12efe9f7b8a5799ed2ebdd9fc32
BLAKE2b-256 2968bc0e83b59d310732d9733393ff04c3763e557838e035b0363aef6d218b4a
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp39-cp39-win_amd64.whl
.
69439390a2c7bb36f3df584c5551527a9989b9d2a39132d0e9b7ee5e88394ea2
MD5 f92e48629fe4c193620655275f6aa697
BLAKE2b-256 15d0c2989334cb1824a184b9828290b905b9679fc9bad99c1f810354142dbbd8
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp39-cp39-win32.whl
.
33da5d63bd1c78c60e2af44f94613e6fcb311d1588f433648d2c2503d9a43cc9
MD5 fb0de7207b83272108cbb34f81318de2
BLAKE2b-256 7eda52468f9cfe4041a8cd8ee77b1fce6c2766cb01eee7355b1d516b877eb556
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp39-cp39-musllinux_1_2_x86_64.whl
.
e3316e1d55acd919b029af7cb9c5172aa159b263f9fbe57e7ae615d4a901524d
MD5 a3a245b712327acbf51271ea1b3dbf75
BLAKE2b-256 1c859fb037506d647cd438a665f8db545d014bab7b6be9a253604d6044bdc995
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp39-cp39-musllinux_1_2_aarch64.whl
.
06a2d6683721c7f353e5cb6b3cd104ce07eb6ee5822a083c6aec4b8e724a735f
MD5 8df9fbdd0d0b9bdf74d727fdb4ed3526
BLAKE2b-256 a9ab413b2d28a92ea8c125bd82e9ed39f15a1674dce58d50eea1f764101d35b6
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
.
ede65ecdc6b7118c13aae2d50d9e8262672dfcde5feac840b5e0c71713d07dc8
MD5 2188c3dc6e0eedef9e1ba197fa4f3dd9
BLAKE2b-256 9bb1f7f6f48a3cfd9785c52cfa9f03844da629ea0aafa2be7f17c57835fc682d
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
.
a0e09efa6966bf3731d335adbb93a4305036204fc9a38d13f946dee0022adaf8
MD5 86a2892ac31d30293c89fedb3a069677
BLAKE2b-256 fb0621a1904dbe7de058b401924cd4d2ec401784b451abca719155f21c559ac3
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp39-cp39-macosx_11_0_arm64.whl
.
194b54ca3e0dba10994df590977e47578e39ade9158f81dc86b2ec9c62510b70
MD5 a273fa3fd286df9f0ae7e3343fcf61f5
BLAKE2b-256 3ff1bea7aa2918a2d67b10b17594b83ab678b8d4b36a8d267c4a8d279a529590
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp39-cp39-macosx_10_9_x86_64.whl
.
c89d030b603fea2ceb0fb451c6fbb764531e10236b9d74d46d80004ea9ae4769
MD5 5e28ad23b4571b124124e7686074978c
BLAKE2b-256 62bf43c0d87daaa446fef520d24ccf95cdffb88f4ee9790df8382644980adf6f
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp39-cp39-macosx_10_9_universal2.whl
.
164c08107b93f0ab1e5b39b795b1cd41cef8ff608211f83844647a4d405a5bd1
MD5 60d4de473fa453e841e0b2f82dc0a4ec
BLAKE2b-256 6cf140d3b98ed2f534b7e6d6572db473a6cb35150d57ccf388a14fc58797cbb3
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp38-cp38-win_amd64.whl
.
66dda0e9e25bf61ef82f1b53c37899f3218d2d944118ca20c486e8e3b0aaa0b8
MD5 fc854732e2c181feaac2b118f7416705
BLAKE2b-256 599d8d0c219ae4b6a536e334695d258a71ba778d238e09768a3da692e149a9d4
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp38-cp38-win32.whl
.
ebd7f91dfe0c2ea52911573413aab63a7446b00c9fa2c2dd7fa1b861ac7e4c29
MD5 39a8029d25591aef636693399e4e0ac3
BLAKE2b-256 d32bf077d4084c4cf82a798fd1642db2de3a6d9d6a920ce2f1a8243e08346267
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp38-cp38-musllinux_1_2_x86_64.whl
.
81442d3f17b7475a9040f89c38323349e76f67e7fb6d2bd4eb991fb3d6e69a39
MD5 d105af7cf790f04925c81bc932a17241
BLAKE2b-256 aa8eb21c76801ddeac265542463796dc215ea5ea991e943269b2408df4c184b5
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp38-cp38-musllinux_1_2_aarch64.whl
.
650e7ce953760ddf044174821a576abe40e685ea19173b9205878baac3152048
MD5 04d510b6e3a4227916e4df7ea3e294b2
BLAKE2b-256 abef9f76d17dcd38bc98690ae25df9c9d56a2dbb514ad1bdf56dd388d203853e
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
.
74f02bb658d59bbc37e742ca325955a05e10c0498f55823aab5ea074b15468c6
MD5 23859bb1f1504fb832022dced156e7c8
BLAKE2b-256 bb8348fc239f2a88dae312c694767b0aad6e664a1420ae89781357713bc37889
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
.
055365510db6f2617a9f0dec2228702f53ea274e4ff133d1ebc12d57ef097b6b
MD5 3da215b3eb4b329278a2c3d8e7876691
BLAKE2b-256 741010a0d1885c07844ad26f457312d02b972bd37a8a843c589287e9cd943a51
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp38-cp38-macosx_11_0_arm64.whl
.
77add6b504069cb749820a9f1dc1f65803cebe84355238cc4d85b9af815d903e
MD5 2a9f51d257f47f8d9bfeb4f966ffa5d8
BLAKE2b-256 37485245fb010692ad20717cef364d71c5f2ca97be0189bcfed1933dde936e59
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp38-cp38-macosx_10_9_x86_64.whl
.
9a373e5d6e0ca2c10f9ed1fcb7c893f9485dc99ce1f790f46c4eb7aeab74d918
MD5 d75260421f0140077a8b2f49b021e179
BLAKE2b-256 ccb33dead47bcd5b9047d513967c1e405022bc0b4537a8171ad7ebe0feb1af5e
See more details on using hashes here.
File detailsDetails for the file uharfbuzz-0.51.1-cp38-cp38-macosx_10_9_universal2.whl
.
5c57f12c59efe7c42728f0f1c525d85b3a1df7d812184c591f19b800ecb5dd37
MD5 cd18c67fde72d682bce209d4a58abbc2
BLAKE2b-256 52ff85a4f1c4139a956631ba4ff102fc6cf977b013cd51832d94181b98104537
See more details on using hashes here.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4