{"id":41980176,"url":"https://github.com/globus/action-provider-tools","last_synced_at":"2026-01-25T23:40:53.772Z","repository":{"id":39795432,"uuid":"269767355","full_name":"globus/action-provider-tools","owner":"globus","description":"Tools to help developers build Action Providers for use in Globus Flows","archived":false,"fork":false,"pushed_at":"2025-11-01T14:27:54.000Z","size":1516,"stargazers_count":4,"open_issues_count":0,"forks_count":2,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-11-01T16:14:29.670Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://action-provider-tools.readthedocs.io","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/globus.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGELOG.rst","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":"2020-06-05T20:25:18.000Z","updated_at":"2025-11-01T14:27:56.000Z","dependencies_parsed_at":"2023-02-19T13:15:47.237Z","dependency_job_id":"55675ad8-99de-4cea-9aac-3456140812f2","html_url":"https://github.com/globus/action-provider-tools","commit_stats":null,"previous_names":[],"tags_count":29,"template":false,"template_full_name":null,"purl":"pkg:github/globus/action-provider-tools","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/globus%2Faction-provider-tools","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/globus%2Faction-provider-tools/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/globus%2Faction-provider-tools/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/globus%2Faction-provider-tools/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/globus","download_url":"https://codeload.github.com/globus/action-provider-tools/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/globus%2Faction-provider-tools/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28761816,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T23:06:19.311Z","status":"ssl_error","status_checked_at":"2026-01-25T23:03:50.555Z","response_time":113,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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-25T23:40:51.622Z","updated_at":"2026-01-25T23:40:53.759Z","avatar_url":"https://github.com/globus.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"Action Provider Tools Introduction\n==================================\n\nThis is an experimental toolkit to help developers build Action Providers for\nuse in Globus Automate including for invocation via Globus Flows.\n\nAs this is experimental, no support is implied or provided for any sort of use\nof this package. It is published for ease of distribution among those planning\nto use it for its intended, experimental, purpose.\n\nBasic Usage\n-----------\n\nInstall the base toolkit with ``pip install globus_action_provider_tools``\n\nYou can then import the toolkit's standalone components from\n``globus_action_provider_tools``. This is useful in instances where you want to\nuse pieces of the library to perform a function (such as token validation via\nthe TokenChecker or API schema validation via the ActionStatus or ActionRequest)\nand plug into other web frameworks.\n\n\n.. code-block:: python\n\n    from flask import Flask\n    from globus_action_provider_tools import ActionProviderDescription\n\n    description = ActionProviderDescription(\n        globus_auth_scope=\"https://auth.globus.org/scopes/00000000-0000-0000-0000-000000000000/action_all\",\n        title=\"My Action Provider\",\n        admin_contact=\"support@example.org\",\n        synchronous=True,\n        input_schema={\n            \"$id\": \"whattimeisitnow.provider.input.schema.json\",\n            \"$schema\": \"http://json-schema.org/draft-07/schema#\",\n            \"title\": \"Example Action Provider\",\n            \"type\": \"object\",\n            \"properties\": {\"message\": {\"type\": \"string\"}},\n            \"required\": [\"message\"],\n            \"additionalProperties\": False,\n        },\n        api_version=\"1.0\",\n        subtitle=\"Just an example\",\n        description=\"\",\n        keywords=[\"example\", \"testing\"],\n        visible_to=[\"public\"],\n        runnable_by=[\"all_authenticated_users\"],\n        administered_by=[\"support@example.org\"],\n    )\n\nTo install the Flask helpers as well for use specifically in developing Flask\nbased Action Providers, install this library using ``pip install\nglobus_action_provider_tools[flask]``\n\nReporting Issues\n----------------\n\nIf you're experiencing a problem using globus_action_provider_tools, or have an\nidea for how to improve the toolkit, please open an issue in the repository and\nshare your feedback.\n\nTesting, Development, and Contributing\n--------------------------------------\n\nWelcome, and thank you for taking the time to contribute!\n\nTo get started, you'll need to clone the repository and run ``make install``\nto install the package and its dependencies locally in a virtual environment (``.venv/``).\n\nNext, activate the virtual environment:\n\n..  code-block:: console\n\n    $ source .venv/bin/activate\n\nAnd that's it, you're ready to dive in and make code changes.\nRun ``make test`` to validate there are no breaking changes introduced.\nOnce you feel your work is ready to be submitted, feel free to create a PR.\n\nLinks\n-----\n| Full Documentation: https://action-provider-tools.readthedocs.io\n| Rendered Redoc: https://globus.github.io/action-provider-tools/\n| Source Code: https://github.com/globus/action-provider-tools\n| Release History + Changelog: https://github.com/globus/action-provider-tools/releases\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fglobus%2Faction-provider-tools","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fglobus%2Faction-provider-tools","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fglobus%2Faction-provider-tools/lists"}