{"id":19592616,"url":"https://github.com/source-foundry/path-inspector","last_synced_at":"2025-04-27T14:33:48.733Z","repository":{"id":40251851,"uuid":"299388214","full_name":"source-foundry/path-inspector","owner":"source-foundry","description":"Quadratic font curve path inspector","archived":false,"fork":false,"pushed_at":"2023-04-03T23:59:49.000Z","size":264,"stargazers_count":2,"open_issues_count":4,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-05T00:51:15.355Z","etag":null,"topics":["bezier","bezier-curves","curve","font","quadratic","ttf","ttf-fonts","typeface"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/source-foundry.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2020-09-28T17:49:57.000Z","updated_at":"2023-05-02T18:21:28.000Z","dependencies_parsed_at":"2024-11-11T08:38:19.744Z","dependency_job_id":"d80b9cfe-51e7-4efb-af7e-bc4619ca2fae","html_url":"https://github.com/source-foundry/path-inspector","commit_stats":{"total_commits":196,"total_committers":2,"mean_commits":98.0,"dds":"0.19387755102040816","last_synced_commit":"198163d2ab982b2a3b3d0dad70e07707c873d311"},"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/source-foundry%2Fpath-inspector","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/source-foundry%2Fpath-inspector/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/source-foundry%2Fpath-inspector/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/source-foundry%2Fpath-inspector/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/source-foundry","download_url":"https://codeload.github.com/source-foundry/path-inspector/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251154792,"owners_count":21544560,"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","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":["bezier","bezier-curves","curve","font","quadratic","ttf","ttf-fonts","typeface"],"created_at":"2024-11-11T08:36:21.162Z","updated_at":"2025-04-27T14:33:47.927Z","avatar_url":"https://github.com/source-foundry.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Path Inspector\n\n[![PyPI](https://img.shields.io/pypi/v/pathins?color=blueviolet\u0026label=PyPI\u0026logo=python\u0026logoColor=white)](https://pypi.org/project/pathins)\n![Python CI](https://github.com/source-foundry/path-inspector/workflows/Python%20CI/badge.svg)\n![Python Lints](https://github.com/source-foundry/path-inspector/workflows/Python%20Lints/badge.svg)\n![Python Type Checks](https://github.com/source-foundry/path-inspector/workflows/Python%20Type%20Checks/badge.svg)\n[![codecov](https://codecov.io/gh/source-foundry/path-inspector/branch/master/graph/badge.svg)](https://codecov.io/gh/source-foundry/path-inspector)\n\nPath Inspector is a quadratic font curve path inspection application.  The Python package installs the `pathins` command line executable and requires a Python v3.6+ interpreter.\n\nThe following sub-commands are available:\n\n- `contours`: path contour number report\n- `coordinates`: path coordinates report\n- `direction`: outermost contour path direction report\n- `path`: curve path report\n- `segments`: curve segment report, with line distances and quadratic curve arc lengths\n\n## Installation\n\npathins requires a Python 3.6+ interpreter.\n\nInstallation in a Python3 virtual environment is recommended.\n\nUse any of the following installation approaches:\n\n### pip install from PyPI\n\n```\n$ pip3 install pathins\n```\n\n### pip install from source\n\n```\n$ git clone https://github.com/source-foundry/path-inspector.git\n$ cd path-inspector\n$ pip3 install -r requirements.txt .\n```\n\n### Developer install from source\n\nThe following approach installs the project and associated optional developer dependencies, so that source changes are available without the need for re-installation.\n\n```\n$ git clone https://github.com/source-foundry/path-inspector.git\n$ cd path-inspector\n$ pip3 install --ignore-installed -r requirements.txt -e \".[dev]\"\n```\n\n## Usage\n\n```\n$ pathins [SUB-COMMAND] [OPTIONS] [FILEPATH] [OPTIONAL GLYPH NAME]\n```\n\nSee `pathins --help` for additional details.\n\n## Issues\n\nPlease report issues on the [project issue tracker](https://github.com/source-foundry/path-inspector/issues).\n\n## Contributing\n\nContributions are warmly welcomed.  A development dependency environment can be installed in editable mode with the developer installation documentation above.\n\nPlease use the standard Github pull request approach to propose source changes.\n\n### Source file linting\n\nPython source files are linted with `flake8`.  See the Makefile `test-lint` target for details.\n\n### Testing\n\nThe project runs continuous integration testing on the GitHub Actions service with the `pytest` toolchain.  Test modules are located in the `tests` directory of the repository.\n\nLocal testing by Python interpreter version can be performed with the following command executed from the root of the repository:\n\n```\n$ tox -e [PYTHON INTERPRETER VERSION]\n```\n\nPlease see the `tox` documentation for additional details.\n\n### Test coverage\n\nUnit test coverage is executed with the `coverage` tool.  See the Makefile `test-coverage` target for details.\n\n## Acknowledgments\n\nThe Path Inspector project is built with the fantastic [fontTools](https://github.com/fonttools/fonttools) and [skia-pathops](https://github.com/fonttools/skia-pathops) free software libraries.\n\n## License\n\nCopyright 2020 Source Foundry Authors and Contributors\n\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at\n\n[http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)\n\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsource-foundry%2Fpath-inspector","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsource-foundry%2Fpath-inspector","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsource-foundry%2Fpath-inspector/lists"}