# pyots (PYthon OT Sanitizer)
[![Run Tests](https://github.com/adobe-type-tools/pyots/actions/workflows/run_tests.yml/badge.svg)](https://github.com/adobe-type-tools/pyots/actions/workflows/run_tests.yml) [![Build Python Wheels](https://github.com/adobe-type-tools/pyots/actions/workflows/release.yml/badge.svg)](https://github.com/adobe-type-tools/pyots/actions/workflows/release.yml)
![PyPI](https://img.shields.io/pypi/v/pyots) [![PyPI](https://img.shields.io/pypi/pyversions/pyots)](https://pypi.org/project/pyots/)
![macOS](https://img.shields.io/badge/-macOS-lightgrey) ![ubuntu](https://img.shields.io/badge/-ubuntu-lightgrey)
Python wrapper for [OpenType Sanitizer](https://github.com/khaledhosny/ots), also known as just "OTS". It is similar to and partially based on [ots-python](https://github.com/googlefonts/ots-python), but builds OTS as a Python C Extension (instead of as an executable and calling through `subprocess` as ots-python does).
**NOTE:** Although this package is similar to **ots-python**, it is _not_ a drop-in replacement for it, as the Python API is different.
## Requirements
The project builds `pip`-installable wheels for Python 3.9, 3.10, 3.11, or 3.12 under Mac or Linux. It is possible this project will build and run with other Pythons and other operating systems, but it has only been tested with the listed configurations.
## Installation with `pip`
If you just want to _use_ `pyots`, you can simply run `python -m pip install -U pyots` (in one of the supported platforms/Python versions) which will install pre-built, compiled, ready-to-use Python wheels. Then you can skip down to the [Use](#Use) section.
## Installation/setup for developing `pyots`
If you'd like to tinker with the `pyots` code, you will want to get your local setup ready:
- clone this repo
- run `python setup.py download` to download the OTS source (which is _not included_ in this project). You can modify the `version` value in [`setup.cfg`](./setup.cfg) under `[download]` to specify a different version of OTS. You'll also need to change the `sha256` hash value that corresponds to the OTS tar.xz package. Note that this scheme has some limitations: OTS sources older than 8.1.3 might not build correctly since they used different build systems. Also, versions newer than the one specified in this repo might require adjustments in order to build correctly. What can we say, we're dependent on `ots`...
- to build and install `pyots` after downloading OTS, you can run `python setup.py install` or `python -m pip install .`
- while iterating changes, you will want to delete the temporary `build` and `src/ots/build` folders.
## Testing
There is a test suite defined for exercising the Python extension. It makes use (and assumes the presence of) the downloaded OTS library source's test font data in `src/ots` so ensure you have run `python setup.py download` and have the `ots` folder under `src`. Invoke the tests with `python -m pytest`.
If you wish to run tests comparing results from `ots-python` against `pyots`, be sure to `python -m pip install opentype-sanitizer` first, otherwise that set of tests will be skipped.
## Use
Simplest case:
```python
import pyots
result = pyots.sanitize('/path/to/font/file.ttf')
```
`result` is an `OTSResult` object with 3 attributes:
- `sanitized` Boolean indicating whether the file was successfully sanitized
- `modified` Boolean indicating whether the file was modified* during sanitization
- `messages` Tuple of message strings generated during sanitization (may be empty)
* **Note:** currently the back-end OTS code can modify fonts that are successfully sanitized, even when no changes are performed. Thus `modified` can sometimes be True when `sanitized` is True. Usually the modification is only to the modification date and related checksums. Thus, it might be possible to devise a better detection of modification, i.e. ignoring `head.modified` and other inconsequential modifications, but that was out-of-scope for this work.
### Example: sanitizing a folder of font files
```python
# sanitize a folder of fonts. Print messages for any that were not successfully sanitized.
import pyots
from pathlib import Path
for filename in Path("src/ots/tests/fonts/good").rglob("*"):
result = pyots.sanitize(filename.absolute())
if not result.sanitized:
print(f'{filename}:\n{", ".join([m for m in result.messages])}')
```
### Options for `sanitize()`
- Specify keyword `output=<path_to_output_file>` to the `sanitize()` command and the sanitized file will be saved to that location
- Use `quiet=True` for `sanitize()` to suppress messages
- Specify `font_index=<index_in_TTC>` when sanitizing a Collection (OTC/TTC) file and you want to sanitize only a particular index within the Collection (otherwise all will be sanitized per OTS's default behavior)
Raw data
{
"_id": null,
"home_page": "https://github.com/adobe-type-tools/pyots",
"name": "pyots",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": null,
"author": "Adobe Type team & friends",
"author_email": "afdko@adobe.com",
"download_url": "https://files.pythonhosted.org/packages/83/0d/6c59cf7a189a609165d1774ef9cc0e821b4acf26200323d89bcf5c42a863/pyots-9.2.0.post2.tar.gz",
"platform": null,
"description": "# pyots (PYthon OT Sanitizer)\n\n[![Run Tests](https://github.com/adobe-type-tools/pyots/actions/workflows/run_tests.yml/badge.svg)](https://github.com/adobe-type-tools/pyots/actions/workflows/run_tests.yml) [![Build Python Wheels](https://github.com/adobe-type-tools/pyots/actions/workflows/release.yml/badge.svg)](https://github.com/adobe-type-tools/pyots/actions/workflows/release.yml)\n\n![PyPI](https://img.shields.io/pypi/v/pyots) [![PyPI](https://img.shields.io/pypi/pyversions/pyots)](https://pypi.org/project/pyots/)\n\n![macOS](https://img.shields.io/badge/-macOS-lightgrey) ![ubuntu](https://img.shields.io/badge/-ubuntu-lightgrey)\n\nPython wrapper for [OpenType Sanitizer](https://github.com/khaledhosny/ots), also known as just \"OTS\". It is similar to and partially based on [ots-python](https://github.com/googlefonts/ots-python), but builds OTS as a Python C Extension (instead of as an executable and calling through `subprocess` as ots-python does).\n\n**NOTE:** Although this package is similar to **ots-python**, it is _not_ a drop-in replacement for it, as the Python API is different.\n\n## Requirements\nThe project builds `pip`-installable wheels for Python 3.9, 3.10, 3.11, or 3.12 under Mac or Linux. It is possible this project will build and run with other Pythons and other operating systems, but it has only been tested with the listed configurations.\n\n## Installation with `pip`\nIf you just want to _use_ `pyots`, you can simply run `python -m pip install -U pyots` (in one of the supported platforms/Python versions) which will install pre-built, compiled, ready-to-use Python wheels. Then you can skip down to the [Use](#Use) section.\n\n## Installation/setup for developing `pyots`\nIf you'd like to tinker with the `pyots` code, you will want to get your local setup ready:\n - clone this repo\n - run `python setup.py download` to download the OTS source (which is _not included_ in this project). You can modify the `version` value in [`setup.cfg`](./setup.cfg) under `[download]` to specify a different version of OTS. You'll also need to change the `sha256` hash value that corresponds to the OTS tar.xz package. Note that this scheme has some limitations: OTS sources older than 8.1.3 might not build correctly since they used different build systems. Also, versions newer than the one specified in this repo might require adjustments in order to build correctly. What can we say, we're dependent on `ots`...\n - to build and install `pyots` after downloading OTS, you can run `python setup.py install` or `python -m pip install .`\n - while iterating changes, you will want to delete the temporary `build` and `src/ots/build` folders.\n\n## Testing\nThere is a test suite defined for exercising the Python extension. It makes use (and assumes the presence of) the downloaded OTS library source's test font data in `src/ots` so ensure you have run `python setup.py download` and have the `ots` folder under `src`. Invoke the tests with `python -m pytest`.\n\nIf you wish to run tests comparing results from `ots-python` against `pyots`, be sure to `python -m pip install opentype-sanitizer` first, otherwise that set of tests will be skipped.\n\n## Use\nSimplest case:\n```python\nimport pyots\nresult = pyots.sanitize('/path/to/font/file.ttf')\n```\n\n`result` is an `OTSResult` object with 3 attributes:\n - `sanitized` Boolean indicating whether the file was successfully sanitized\n - `modified` Boolean indicating whether the file was modified* during sanitization\n - `messages` Tuple of message strings generated during sanitization (may be empty)\n\n* **Note:** currently the back-end OTS code can modify fonts that are successfully sanitized, even when no changes are performed. Thus `modified` can sometimes be True when `sanitized` is True. Usually the modification is only to the modification date and related checksums. Thus, it might be possible to devise a better detection of modification, i.e. ignoring `head.modified` and other inconsequential modifications, but that was out-of-scope for this work.\n\n### Example: sanitizing a folder of font files\n```python\n# sanitize a folder of fonts. Print messages for any that were not successfully sanitized.\nimport pyots\nfrom pathlib import Path\n\nfor filename in Path(\"src/ots/tests/fonts/good\").rglob(\"*\"):\n result = pyots.sanitize(filename.absolute())\n if not result.sanitized:\n print(f'{filename}:\\n{\", \".join([m for m in result.messages])}')\n```\n\n### Options for `sanitize()`\n - Specify keyword `output=<path_to_output_file>` to the `sanitize()` command and the sanitized file will be saved to that location\n - Use `quiet=True` for `sanitize()` to suppress messages\n - Specify `font_index=<index_in_TTC>` when sanitizing a Collection (OTC/TTC) file and you want to sanitize only a particular index within the Collection (otherwise all will be sanitized per OTS's default behavior)\n",
"bugtrack_url": null,
"license": null,
"summary": "Python wrapper for ot-sanitizer",
"version": "9.2.0.post2",
"project_urls": {
"Homepage": "https://github.com/adobe-type-tools/pyots"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "06173ef231667cb23b0ac6c44b1f32e808240fdbc6d5a6cace3514e9ddd63a5b",
"md5": "1e70e3820187997e7f61029e1a8c07cf",
"sha256": "42b462abfc548176f2be75130707368a93db534a04186d1221be21a217bca76c"
},
"downloads": -1,
"filename": "pyots-9.2.0.post2-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "1e70e3820187997e7f61029e1a8c07cf",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 409456,
"upload_time": "2024-11-21T22:11:56",
"upload_time_iso_8601": "2024-11-21T22:11:56.682074Z",
"url": "https://files.pythonhosted.org/packages/06/17/3ef231667cb23b0ac6c44b1f32e808240fdbc6d5a6cace3514e9ddd63a5b/pyots-9.2.0.post2-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "beccb3ced931dd69163f0b6d5869e2cd37cb887d2a2f5c9bd2e7d4c62734da5f",
"md5": "5787caf61b0248568505cda12c526047",
"sha256": "5b28311b9b327ed9be91e41153ab3e53a321f8f37b5087ce2bc4b962ab1156e6"
},
"downloads": -1,
"filename": "pyots-9.2.0.post2-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "5787caf61b0248568505cda12c526047",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 393461,
"upload_time": "2024-11-21T22:11:58",
"upload_time_iso_8601": "2024-11-21T22:11:58.972769Z",
"url": "https://files.pythonhosted.org/packages/be/cc/b3ced931dd69163f0b6d5869e2cd37cb887d2a2f5c9bd2e7d4c62734da5f/pyots-9.2.0.post2-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "69123d22b7c63d967364dde2d39d94855a660418b75928d64196a40c7efc8990",
"md5": "21f3cd16525dd08df4f086f9d057b458",
"sha256": "0d50d85816048aafe4389b8f85bb97f1da8282919c3e54df837614789d0451aa"
},
"downloads": -1,
"filename": "pyots-9.2.0.post2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "21f3cd16525dd08df4f086f9d057b458",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 746857,
"upload_time": "2024-11-21T22:12:00",
"upload_time_iso_8601": "2024-11-21T22:12:00.007310Z",
"url": "https://files.pythonhosted.org/packages/69/12/3d22b7c63d967364dde2d39d94855a660418b75928d64196a40c7efc8990/pyots-9.2.0.post2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "990e577492619073f7b9ccaba8b73e4f196069ef5a8fc6d47f3aa4202028ee51",
"md5": "9c3a3d75784fbf2a66a9f539b13c2acb",
"sha256": "5d7c58ee94029ff97e145dc1660e52c77268b3c8da7d5a9fefcf00125e2ae0fd"
},
"downloads": -1,
"filename": "pyots-9.2.0.post2-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "9c3a3d75784fbf2a66a9f539b13c2acb",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 409458,
"upload_time": "2024-11-21T22:12:01",
"upload_time_iso_8601": "2024-11-21T22:12:01.229950Z",
"url": "https://files.pythonhosted.org/packages/99/0e/577492619073f7b9ccaba8b73e4f196069ef5a8fc6d47f3aa4202028ee51/pyots-9.2.0.post2-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8d6b0b831186a2b9cd6372e80005849b70ae5c59bc08bfe870cd9bb319ee627d",
"md5": "3091fcfe19a6a7f0ef691f63c8d8a9b2",
"sha256": "8f25bb7ad3864c7c7c1599a1febd6d824befed40a17e13ce1633128465f51bfa"
},
"downloads": -1,
"filename": "pyots-9.2.0.post2-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "3091fcfe19a6a7f0ef691f63c8d8a9b2",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 393448,
"upload_time": "2024-11-21T22:12:04",
"upload_time_iso_8601": "2024-11-21T22:12:04.267814Z",
"url": "https://files.pythonhosted.org/packages/8d/6b/0b831186a2b9cd6372e80005849b70ae5c59bc08bfe870cd9bb319ee627d/pyots-9.2.0.post2-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f73ece97a38df357be3985c44bbcc8d5c1a4f3f159c092536760ec08ca409617",
"md5": "905eb5899f5949496d98033e50bfb1bd",
"sha256": "f0410620c502fe6cbadb09fcf01c9e6728d57c782a5f97fe5b71b2a98eadad67"
},
"downloads": -1,
"filename": "pyots-9.2.0.post2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "905eb5899f5949496d98033e50bfb1bd",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 746932,
"upload_time": "2024-11-21T22:12:03",
"upload_time_iso_8601": "2024-11-21T22:12:03.165335Z",
"url": "https://files.pythonhosted.org/packages/f7/3e/ce97a38df357be3985c44bbcc8d5c1a4f3f159c092536760ec08ca409617/pyots-9.2.0.post2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d6b21b089d6ef7e026570859de6e50128d423b7d4afc31e98f3e4276cea97456",
"md5": "c534a0010f682057eb725bbe8833b998",
"sha256": "15accd390f9f8a1aafc9a871dc5c4566cdf4684957711c48590e1de1c4e8c0a7"
},
"downloads": -1,
"filename": "pyots-9.2.0.post2-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "c534a0010f682057eb725bbe8833b998",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 409455,
"upload_time": "2024-11-21T22:12:06",
"upload_time_iso_8601": "2024-11-21T22:12:06.934667Z",
"url": "https://files.pythonhosted.org/packages/d6/b2/1b089d6ef7e026570859de6e50128d423b7d4afc31e98f3e4276cea97456/pyots-9.2.0.post2-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b2f6a8a8dcba769349d55d6bf3a17cfbb1ebbc3767f4025cacd1e54fb4205dfb",
"md5": "b094c402b177c401d643f7b5c1c15bca",
"sha256": "d0a22b1ad584d4c8ca27f3e0e15d9a2f839e1cb47e64fec0f8693c37239aa936"
},
"downloads": -1,
"filename": "pyots-9.2.0.post2-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "b094c402b177c401d643f7b5c1c15bca",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 393453,
"upload_time": "2024-11-21T22:12:09",
"upload_time_iso_8601": "2024-11-21T22:12:09.105055Z",
"url": "https://files.pythonhosted.org/packages/b2/f6/a8a8dcba769349d55d6bf3a17cfbb1ebbc3767f4025cacd1e54fb4205dfb/pyots-9.2.0.post2-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2840c966136eb49c0b3d1199806b101bb3ba3ace935a4c46656fa4f0d8033dca",
"md5": "be002b195de7698063867d77d8245fd5",
"sha256": "45f01106d5e6cce983cfed8905f4f72198ef5ad7c283920279e8c8081e9e8271"
},
"downloads": -1,
"filename": "pyots-9.2.0.post2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "be002b195de7698063867d77d8245fd5",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 747217,
"upload_time": "2024-11-21T22:12:05",
"upload_time_iso_8601": "2024-11-21T22:12:05.536075Z",
"url": "https://files.pythonhosted.org/packages/28/40/c966136eb49c0b3d1199806b101bb3ba3ace935a4c46656fa4f0d8033dca/pyots-9.2.0.post2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "605837325cb888093fd0520be383f58a6a87ee6d6f5e37cb895c80f0b896bf37",
"md5": "1a43c1ecd097a77a5a024b4ced1a7f02",
"sha256": "559bf7a4e87b9a11b60faca8e526b6ffe6bc61d4d18cb16048550fe368bef8d6"
},
"downloads": -1,
"filename": "pyots-9.2.0.post2-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "1a43c1ecd097a77a5a024b4ced1a7f02",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 409449,
"upload_time": "2024-11-21T22:12:12",
"upload_time_iso_8601": "2024-11-21T22:12:12.978254Z",
"url": "https://files.pythonhosted.org/packages/60/58/37325cb888093fd0520be383f58a6a87ee6d6f5e37cb895c80f0b896bf37/pyots-9.2.0.post2-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9c1f77022dd2e03aa674d76315f31e2cc196ad262872c545da44d4e8130cb6dc",
"md5": "f09f46c9b0992ba4e12fdc9dc2a9a911",
"sha256": "aa24b8fa591db919ffa9b7c3bf446e0ecced759f810955f23de48fc3d7a64cab"
},
"downloads": -1,
"filename": "pyots-9.2.0.post2-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "f09f46c9b0992ba4e12fdc9dc2a9a911",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 393450,
"upload_time": "2024-11-21T22:12:15",
"upload_time_iso_8601": "2024-11-21T22:12:15.210922Z",
"url": "https://files.pythonhosted.org/packages/9c/1f/77022dd2e03aa674d76315f31e2cc196ad262872c545da44d4e8130cb6dc/pyots-9.2.0.post2-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "660f98ba7dd06a60a9b59d3b3af84e39e8886353f20ca427f91d9f0757b8e396",
"md5": "49c2cf410ca803cff871611ac7925f56",
"sha256": "fec4deec42fbe638b119eeaba4c53c1bd158917de602c7c6f4c27d2c11c2fc07"
},
"downloads": -1,
"filename": "pyots-9.2.0.post2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "49c2cf410ca803cff871611ac7925f56",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 746653,
"upload_time": "2024-11-21T22:12:08",
"upload_time_iso_8601": "2024-11-21T22:12:08.440332Z",
"url": "https://files.pythonhosted.org/packages/66/0f/98ba7dd06a60a9b59d3b3af84e39e8886353f20ca427f91d9f0757b8e396/pyots-9.2.0.post2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "830d6c59cf7a189a609165d1774ef9cc0e821b4acf26200323d89bcf5c42a863",
"md5": "f938b462a211ffa29d13fdd2008ecfa6",
"sha256": "386b9f47af20d5eab5f53dc77ff6a192d52e75e9c3c1748cb69c4e6632b5e549"
},
"downloads": -1,
"filename": "pyots-9.2.0.post2.tar.gz",
"has_sig": false,
"md5_digest": "f938b462a211ffa29d13fdd2008ecfa6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 19504,
"upload_time": "2024-11-21T22:12:10",
"upload_time_iso_8601": "2024-11-21T22:12:10.819288Z",
"url": "https://files.pythonhosted.org/packages/83/0d/6c59cf7a189a609165d1774ef9cc0e821b4acf26200323d89bcf5c42a863/pyots-9.2.0.post2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-21 22:12:10",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "adobe-type-tools",
"github_project": "pyots",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"requirements": [],
"lcname": "pyots"
}