{"id":23037156,"url":"https://github.com/fonttools/ttfautohint-py","last_synced_at":"2025-08-11T00:05:01.912Z","repository":{"id":27460627,"uuid":"113592608","full_name":"fonttools/ttfautohint-py","owner":"fonttools","description":"Python wrapper for ttfautohint, a free auto-hinter for TrueType fonts","archived":false,"fork":false,"pushed_at":"2025-08-01T14:25:38.000Z","size":384,"stargazers_count":32,"open_issues_count":3,"forks_count":8,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-08-08T12:52:39.051Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://www.freetype.org/ttfautohint/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fonttools.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2017-12-08T16:07:17.000Z","updated_at":"2025-08-01T13:39:52.000Z","dependencies_parsed_at":"2024-06-19T00:27:59.011Z","dependency_job_id":"ee2cd0ec-b83c-4e0e-89b8-38b8b1597413","html_url":"https://github.com/fonttools/ttfautohint-py","commit_stats":{"total_commits":279,"total_committers":4,"mean_commits":69.75,"dds":"0.31182795698924726","last_synced_commit":"fe1dd22cd10ba4b7b3984451a9cc114fd770b437"},"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"purl":"pkg:github/fonttools/ttfautohint-py","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fonttools%2Fttfautohint-py","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fonttools%2Fttfautohint-py/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fonttools%2Fttfautohint-py/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fonttools%2Fttfautohint-py/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fonttools","download_url":"https://codeload.github.com/fonttools/ttfautohint-py/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fonttools%2Fttfautohint-py/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269532232,"owners_count":24433264,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-09T02:00:10.424Z","response_time":111,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-15T17:29:27.742Z","updated_at":"2025-08-11T00:05:01.840Z","avatar_url":"https://github.com/fonttools.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"|GitHub CI Status| |PyPI| |Codecov|\n\nttfautohint-py\n~~~~~~~~~~~~~~\n\n``ttfautohint-py`` is a Python wrapper for `ttfautohint\n\u003chttps://www.freetype.org/ttfautohint\u003e`__, a free auto-hinter for TrueType fonts\ncreated by Werner Lemberg (`@lemzwerg \u003chttps://github.com/lemzwerg\u003e`__).\n\nIt uses `ctypes \u003chttps://docs.python.org/3/library/ctypes.html\u003e`__ to load the\n``libttfautohint`` shared library and call the ``TTF_autohint`` function.\n\nBinary \"wheel\" packages are available for Linux (``manylinux1``), macOS and\nWindows, for both Python 2.7 and Python 3.x, with 32 and 64 bit architecture.\nThey can be installed from the Python Package Index\n(`PyPI \u003chttps://pypi.python.org/pypi/ttfautohint-py\u003e`__) using the\n`pip \u003chttps://pip.pypa.io/en/stable/\u003e`__ installer.\n\n.. code:: sh\n\n    $ pip install ttfautohint-py\n\nThe wheels include a precompiled ``libttfautohint.so`` (``*.dylib`` on\nmacOS, or ``*.dll`` on Windows) shared library which has no other dependency\napart from system libraries. The `FreeType \u003chttps://www.freetype.org\u003e`__ and\nthe `HarfBuzz \u003chttps://github.com/harfbuzz/harfbuzz\u003e`__ libraries are compiled\nfrom source as static libraries and embedded in ``libttfautohint``.\n\nTo compile the ``libttfautohint.dll`` from source on Windows, you need to\ninstall `MSYS2 \u003chttp://www.msys2.org/\u003e`__ and the latest MinGW-w64 toolchain.\nThis is because the ``ttfautohint`` build system is based on autotools and\nthus requires a Unix-like environment.\n\nA ``Makefile`` is used to build the library and its static dependencies, thus\nthe GNU `make \u003chttps://www.gnu.org/software/make/\u003e`__ executable must be on the\n``$PATH``, as this is called upon by the ``setup.py`` script.\n\nBecause we build ``freetype``, ``harfbuzz`` and ``ttfautohint`` from their git\nsource (checked in as git submodules), some relatively recent versions of the\nfollowing development tools are also required: ``autoconf``, ``automake``,\n``libtool``, ``flex``, ``bison`` and ``ragel``. Please check the respective\ndocumentation of these libraries for more information.\n\n.. |Github CI Status| image:: https://img.shields.io/github/workflow/status/fonttools/ttfautohint-py/ci.yml?branch=main\n   :target: https://github.com/fonttools/ttfautohint-py/actions/workflows/ci.yml?branch=main\n.. |PyPI| image:: https://img.shields.io/pypi/v/ttfautohint-py.svg\n   :target: https://pypi.python.org/pypi/ttfautohint-py\n.. |Codecov| image:: https://codecov.io/gh/fonttools/ttfautohint-py/branch/master/graph/badge.svg\n   :target: https://codecov.io/gh/fonttools/ttfautohint-py\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffonttools%2Fttfautohint-py","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffonttools%2Fttfautohint-py","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffonttools%2Fttfautohint-py/lists"}