{"id":19282407,"url":"https://github.com/chaostoolkit/chaostoolkit-extension-template","last_synced_at":"2025-09-01T20:12:58.545Z","repository":{"id":89492626,"uuid":"113843840","full_name":"chaostoolkit/chaostoolkit-extension-template","owner":"chaostoolkit","description":"Template starting point for a new Python-based Chaos Toolkit extension","archived":false,"fork":false,"pushed_at":"2023-07-27T21:01:09.000Z","size":88,"stargazers_count":4,"open_issues_count":1,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-08-03T19:35:53.643Z","etag":null,"topics":["chaos-engineering","chaostoolkit"],"latest_commit_sha":null,"homepage":"https://chaostoolkit.org/","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/chaostoolkit.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":"2017-12-11T10:14:37.000Z","updated_at":"2024-04-13T02:16:02.000Z","dependencies_parsed_at":null,"dependency_job_id":"e80cfd24-4c22-474d-a9dd-50ef59e3fd71","html_url":"https://github.com/chaostoolkit/chaostoolkit-extension-template","commit_stats":null,"previous_names":[],"tags_count":2,"template":true,"template_full_name":null,"purl":"pkg:github/chaostoolkit/chaostoolkit-extension-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chaostoolkit%2Fchaostoolkit-extension-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chaostoolkit%2Fchaostoolkit-extension-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chaostoolkit%2Fchaostoolkit-extension-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chaostoolkit%2Fchaostoolkit-extension-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chaostoolkit","download_url":"https://codeload.github.com/chaostoolkit/chaostoolkit-extension-template/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chaostoolkit%2Fchaostoolkit-extension-template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273183228,"owners_count":25059812,"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-09-01T02:00:09.058Z","response_time":120,"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":["chaos-engineering","chaostoolkit"],"created_at":"2024-11-09T21:26:45.428Z","updated_at":"2025-09-01T20:12:58.501Z","avatar_url":"https://github.com/chaostoolkit.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Chaos Toolkit Extension Template\n\n[![Version](https://img.shields.io/pypi/v/chaostoolkit-my-extension.svg)](https://img.shields.io/pypi/v/chaostoolkit-lib.svg)\n[![License](https://img.shields.io/pypi/l/chaostoolkit-my-extension.svg)](https://img.shields.io/pypi/l/chaostoolkit-lib.svg)\n\n[![Build, Test, and Lint](https://github.com/chaostoolkit/chaostoolkit-extension-template/actions/workflows/build.yaml/badge.svg)](https://github.com/chaostoolkit/chaostoolkit-extension-template/actions/workflows/build.yaml)\n[![Python versions](https://img.shields.io/pypi/pyversions/chaostoolkit-my-extension.svg)](https://www.python.org/)\n\nThis project should be used as a starting point to create your own\nChaos Toolkit extension.\n\n## Install\n\nThis package requires Python 3.7+\n\nTo be used from your experiment, this package must be installed in the Python\nenvironment where [chaostoolkit][] already lives.\n\n[chaostoolkit]: https://github.com/chaostoolkit/chaostoolkit\n\n```\n$ pip install chaostoolkit-\u003cyour extension name here\u003e\n```\n\n\n## Usage\n\n\u003cExplain your probes and actions usage from the experiment.json here\u003e\n\nThat's it!\n\nPlease explore the code to see existing probes and actions.\n\n## Configuration\n\n\u003cSpecify any extra configuration your extension relies on here\u003e\n\n## Test\n\nTo run the tests for the project execute the following:\n\n```\n$ pdm run test\n```\n\n### Formatting and Linting\n\nWe use a combination of [`black`][black], [`ruff`][ruff], and [`isort`][isort]\nto both lint and format this repositories code.\n\n[black]: https://github.com/psf/black\n[ruff]: https://github.com/astral-sh/ruff\n[isort]: https://github.com/PyCQA/isort\n\nBefore raising a Pull Request, we recommend you run formatting against your\ncode with:\n\n```console\n$ pdm run format\n```\n\nThis will automatically format any code that doesn't adhere to the formatting\nstandards.\n\nAs some things are not picked up by the formatting, we also recommend you run:\n\n```console\n$ pdm run lint\n```\n\nTo ensure that any unused import statements/strings that are too long, etc.\nare also picked up.\n\n## Contribute\n\nIf you wish to contribute more functions to this package, you are more than\nwelcome to do so. Please, fork this project, make your changes following the\nusual [black][blackstyle] code style, sprinkling with tests and submit a PR for\nreview.\n\n[blackstyle]: https://black.readthedocs.io/en/stable/the_black_code_style/current_style.html\n\nTo contribute to this project, you will also need to install [pdm][].\n\n[pdm]: https://pdm.fming.dev/latest/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchaostoolkit%2Fchaostoolkit-extension-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchaostoolkit%2Fchaostoolkit-extension-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchaostoolkit%2Fchaostoolkit-extension-template/lists"}