{"id":41138689,"url":"https://github.com/softwareone-platform/mpt-extension-sdk","last_synced_at":"2026-01-22T18:44:45.293Z","repository":{"id":282956697,"uuid":"949956803","full_name":"softwareone-platform/mpt-extension-sdk","owner":"softwareone-platform","description":"SDK for SoftwareONE python extensions","archived":false,"fork":false,"pushed_at":"2026-01-19T20:29:24.000Z","size":660,"stargazers_count":7,"open_issues_count":1,"forks_count":1,"subscribers_count":10,"default_branch":"main","last_synced_at":"2026-01-19T21:41:18.701Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/softwareone-platform.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-03-17T12:06:54.000Z","updated_at":"2026-01-16T17:10:21.000Z","dependencies_parsed_at":"2025-04-08T19:40:46.584Z","dependency_job_id":"a69daecb-f854-454a-a3d4-fcc8bdef0ad6","html_url":"https://github.com/softwareone-platform/mpt-extension-sdk","commit_stats":null,"previous_names":["softwareone-platform/mpt-extension-sdk"],"tags_count":57,"template":false,"template_full_name":null,"purl":"pkg:github/softwareone-platform/mpt-extension-sdk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/softwareone-platform%2Fmpt-extension-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/softwareone-platform%2Fmpt-extension-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/softwareone-platform%2Fmpt-extension-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/softwareone-platform%2Fmpt-extension-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/softwareone-platform","download_url":"https://codeload.github.com/softwareone-platform/mpt-extension-sdk/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/softwareone-platform%2Fmpt-extension-sdk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28668308,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-22T17:07:18.858Z","status":"ssl_error","status_checked_at":"2026-01-22T17:05:02.040Z","response_time":144,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":"2026-01-22T18:44:43.332Z","updated_at":"2026-01-22T18:44:45.281Z","avatar_url":"https://github.com/softwareone-platform.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=softwareone-platform_mpt-extension-sdk\u0026metric=alert_status)](https://sonarcloud.io/summary/new_code?id=softwareone-platform_mpt-extension-sdk)\n[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=softwareone-platform_mpt-extension-sdk\u0026metric=coverage)](https://sonarcloud.io/summary/new_code?id=softwareone-platform_mpt-extension-sdk)\n\n[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)\n\n# SoftwareONE Extension SDK\n\nSDK for SoftwareONE python extensions\n\n## Getting started\n\n### Prerequisites\n\n- Docker and Docker Compose plugin (`docker compose` CLI)\n- `make`\n- Valid `.env` file\n- Adobe credentials and authorizations JSON files in the project root\n- [CodeRabbit CLI](https://www.coderabbit.ai/cli) (optional. Used for running review check locally)\n\n\n### Make targets overview\n\nCommon development workflows are wrapped in the `makefile`:\n\n- `make help` – list available commands\n- `make bash` – start the app container and open a bash shell\n- `make build` – build the application image for development\n- `make build-package` – build the package locally\n- `make check` – run code quality checks (ruff, flake8, lockfile check)\n- `make check-all` – run checks, formatting, and tests\n- `make down` – stop and remove containers\n- `make format` – apply formatting and import fixes\n- `make review` –  check the code in the cli by running CodeRabbit\n- `make shell` – open a Django shell inside the running app container\n- `make test` – run the test suite with pytest\n\n## Running tests\n\nTests run inside Docker using the dev configuration.\n\nRun the full test suite:\n\n```bash\nmake test\n```\n\nPass additional arguments to pytest using the `args` variable:\n\n```bash\nmake test args=\"-k test_bla -vv\"\nmake test args=\"tests/test_bla.py\"\n```\n\n## Developer utilities\n\nUseful helper targets during development:\n\n```bash\nmake bash          # open a bash shell in the app container\nmake build-package # build the package locally\nmake check         # run ruff, flake8, and lockfile checks\nmake check-all     # run checks and tests\nmake format        # auto-format code and imports\nmake review        # check the code in the cli by running CodeRabbit\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsoftwareone-platform%2Fmpt-extension-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsoftwareone-platform%2Fmpt-extension-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsoftwareone-platform%2Fmpt-extension-sdk/lists"}