Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/miguelsousa/openbakery
🧑🍳 A font quality assurance tool for everyone
https://github.com/miguelsousa/openbakery
command-line-tool font quality-assurance
Last synced: 3 months ago
JSON representation
🧑🍳 A font quality assurance tool for everyone
- Host: GitHub
- URL: https://github.com/miguelsousa/openbakery
- Owner: miguelsousa
- License: apache-2.0
- Created: 2023-06-07T22:01:43.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-17T22:53:15.000Z (4 months ago)
- Last Synced: 2024-10-20T09:56:11.336Z (4 months ago)
- Topics: command-line-tool, font, quality-assurance
- Language: Python
- Homepage: https://miguelsousa.github.io/openbakery/
- Size: 40.2 MB
- Stars: 27
- Watchers: 8
- Forks: 4
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
- Authors: AUTHORS.txt
Awesome Lists containing this project
README
OpenBakery, a font quality assurance tool for everyone
---
**Documentation**: https://miguelsousa.github.io/openbakery
**Source Code**: https://github.com/miguelsousa/openbakery
**Contributing Guide**: https://github.com/miguelsousa/openbakery/blob/main/CONTRIBUTING.md
---
**OpenBakery** is a command-line tool for validating font binaries and, optionally, their source files and metadata.
## Requirements
- **Python** version 3.8 (or greater)
To determine if your system has Python installed and which version, run this command: `python --version`
Please refer to the instructions provided at [python.org](https://www.python.org/) for downloading and installing Python on your platform.- **`pip`** version 22.0 (or greater)
To determine if your Python environment has `pip` installed and which version, run this command: `python -m pip --version`
Please refer to the instructions provided at [pip.pypa.io](https://pip.pypa.io/en/stable/installation/) for downloading and installing `pip` on your Python environment.⚠️ **IMPORTANT**: If you have Python 2.x installed in your system, you may have to use `python3` (instead of `python`) in the commands below.
## Installation
Command to install a **stable version** of OpenBakery:
python -m pip install --upgrade openbakery
Command to install a **beta version** of OpenBakery:
python -m pip install --upgrade --pre openbakery
OpenBakery's functionality is organized into profiles. Each profile invokes specific font checks. To get a list of all the profiles run this command:
openbakery --list-subcommands
```
adobefonts
fontbureau
fontwerk
googlefonts
iso15008
notofonts
opentype
ufo-sources
universal
proposals
check-profile
```The installation commands above enable you to run the `universal` or the `opentype` profiles on a font, like so:
openbakery universal MyFont-Regular.ttf
To test your fonts with other profiles, you need to install `openbakery` with a corresponding extra. The command below installs `openbakery` with all the necessary dependencies for running the checks in the `googlefonts` profile:
python -m pip install --upgrade 'openbakery[googlefonts]'
## Usage
If you made it this far, congratulation! You should now be ready to "bake" your fonts. 😀 🥯🍞🥖🥨🥐🫓🧁
The [documentation](https://miguelsousa.github.io/openbakery) contains many examples of how to run `openbakery` with its various options.
## License
This project is licensed under the terms of the Apache 2.0 license.
All comments on issues, pull requests, and discussions will be treated as also licensed under this license such that they can be incorporated into the project's codebase.
## Fork acknowledgment
This project is a fork of [Font Bakery](https://github.com/googlefonts/fontbakery).