Python SDK for PostGrip Agent workflows
Project description
PostGrip Agent Python SDK
Python SDK for defining, submitting, and executing PostGrip workflows. In production, SDK workflow runtimes are supervised by an existing PostGrip agent: the host agent launches the runtime, injects delegated credentials, and keeps generic operational tasks separate from workflow/activity task polling. Client-side SDK code submits workflow.runtime tasks to an existing agent pool; it does not enroll or spawn standalone PostGrip agents. Companion of agent-sdk-go and agent-sdk-typescript. Wire shapes are tracked in agent-sdk-protocol.
Docs: postgrip-io.github.io/agent-sdk-python — quick start, workflow runtime, API guide.
Current release: 0.11.0
Install from PyPI after publishing:
pip install postgrip-agent
For local development from a clone of this repository:
pip install -e .
PYTHONPATH=src python -m unittest discover -s test
Layout
src/postgrip_agent/ # Python package — Connection / Client / workflow runtime
test/ # unittest-style tests
doc/ # reserved for longer-form prose docs
.github/workflows/ # CI: build wheel + run tests on 3.11 / 3.12 / 3.13
The package exposes a Temporal-style Python API:
import asyncio
from datetime import timedelta
from postgrip_agent import Client, Agent, activity, workflow
@activity.defn
async def greet(name: str) -> str:
return f"Hello {name}"
@workflow.defn(name="SayHelloWorkflow")
class SayHelloWorkflow:
@workflow.run
async def run(self, name: str) -> str:
return await workflow.execute_activity(
greet,
name,
schedule_to_close_timeout=timedelta(seconds=10),
)
async def main() -> None:
# This process is launched by a PostGrip host agent from a workflow.runtime
# task. The host injects POSTGRIP_AGENT_ID and delegated runtime credentials.
client = await Client.connect()
agent = Agent(
client,
task_queue="default",
workflows=[SayHelloWorkflow],
activities=[greet],
)
result = await agent.run_until(
client.execute_workflow(
SayHelloWorkflow,
"PostGrip",
id="say-hello",
task_queue="default",
ui={
"displayName": "Say hello to PostGrip",
"description": "Shown on the PostGrip Agents activity tab.",
"details": {"sdk": "python"},
"tags": ["demo"],
},
)
)
print(result)
asyncio.run(main())
ui is SDK-owned console metadata. It is persisted inside workflow memo as postgrip.ui, so the Agents activity tab can show a friendly label, description, details, and tags while memo remains available for your own data.
Submit that runtime to an existing agent pool from your client process:
import asyncio
import os
from postgrip_agent import Client
async def submit_runtime() -> None:
client = await Client.connect(
# Agent token from Settings > Organization > Agent tokens.
headers={"Authorization": f"Bearer {os.environ['POSTGRIP_AGENT_TOKEN']}"},
)
client.task.workflow_runtime(
queue="default",
command="python",
args=["-m", "myapp.workflow_runtime"],
runtime_queue="default",
env={"POSTGRIP_EXAMPLE_RUN_LABEL": "PostGrip"},
)
asyncio.run(submit_runtime())
This SDK targets the PostGrip Agent runtime API, not a Temporal server. It follows the familiar Temporal Python shape for client, agent, workflow, and activity code while using PostGrip Agent task queues and workflow history underneath.
Implemented workflow APIs include durable activity scheduling/replay, durable timers via workflow.sleep(), query/signal/update handler replay, child workflow scheduling/replay, continue-as-new, cancellation scopes, and command-order determinism checks for activities, timers, and children.
The Python agent supports bounded concurrent task execution with max_concurrent_tasks defaulting to 4, graceful shutdown draining for in-flight tasks with an optional timeout, and automatic lease renewal for workflow, query, update, and activity tasks. Activities and workflows can emit ordered milestones with activity.milestone("step name", index=1, total=10) or workflow.milestone(...); activities can also attach task output with activity.stdout(...) and activity.stderr(...). Clients can stream those task events with handle.watch_events() or client.task.watch_events(task_id). Workflow execution also performs sandbox checks that reject common nondeterministic APIs such as time.time(), time.sleep(), asyncio.sleep(), random.*(), and uuid.uuid4(); use workflow.now(), workflow.sleep(), explicit IDs, or activities for those operations.
Public protocol types are available from postgrip_agent.types and are re-exported from postgrip_agent, including Task, TaskEvent, WorkflowExecution, WorkflowHistoryEvent, RetryPolicy, schedule request/response types, and workflow payload definitions. The package includes py.typed so type checkers can consume those annotations. For SDK applications, the documented client-side submission path is client.task.workflow_runtime(...); workflow and activity tasks are then coordinated by the managed runtime launched on the host agent.
Package validation:
python -m pip wheel --no-deps postgrip-agent/python -w /tmp/postgrip-agent-wheel
PYTHONPATH=postgrip-agent/python python -m unittest discover -s postgrip-agent/python/tests
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file postgrip_agent-0.11.0.tar.gz.
File metadata
- Download URL: postgrip_agent-0.11.0.tar.gz
- Upload date:
- Size: 38.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2fd5171f1582b42ac433fea272f2f4cde0506058e9b6f875a1f03b8c80cec3c8
|
|
| MD5 |
e032271e525daac448856bfb31129444
|
|
| BLAKE2b-256 |
12bdfa0afa17164d0b1c92e84180266cf0fbb2de4e4fe8b81f137231418e4e04
|
Provenance
The following attestation bundles were made for postgrip_agent-0.11.0.tar.gz:
Publisher:
publish.yml on postgrip-io/agent-sdk-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
postgrip_agent-0.11.0.tar.gz -
Subject digest:
2fd5171f1582b42ac433fea272f2f4cde0506058e9b6f875a1f03b8c80cec3c8 - Sigstore transparency entry: 1517919135
- Sigstore integration time:
-
Permalink:
postgrip-io/agent-sdk-python@911aefd79a7f66fcd225621aecad4c3da6934784 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/postgrip-io
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@911aefd79a7f66fcd225621aecad4c3da6934784 -
Trigger Event:
push
-
Statement type:
File details
Details for the file postgrip_agent-0.11.0-py3-none-any.whl.
File metadata
- Download URL: postgrip_agent-0.11.0-py3-none-any.whl
- Upload date:
- Size: 33.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ad4f9a1ba72989876abd24e3d8c60f5245f6fa507b762c087485fa1cbf849e9
|
|
| MD5 |
9cb3de8a6cd83cd5babab5f206993847
|
|
| BLAKE2b-256 |
d13a84103799dfea8603b7b0a55397e8b3b3102df962503428df50b9a809c42c
|
Provenance
The following attestation bundles were made for postgrip_agent-0.11.0-py3-none-any.whl:
Publisher:
publish.yml on postgrip-io/agent-sdk-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
postgrip_agent-0.11.0-py3-none-any.whl -
Subject digest:
3ad4f9a1ba72989876abd24e3d8c60f5245f6fa507b762c087485fa1cbf849e9 - Sigstore transparency entry: 1517919308
- Sigstore integration time:
-
Permalink:
postgrip-io/agent-sdk-python@911aefd79a7f66fcd225621aecad4c3da6934784 -
Branch / Tag:
refs/tags/v0.11.0 - Owner: https://github.com/postgrip-io
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@911aefd79a7f66fcd225621aecad4c3da6934784 -
Trigger Event:
push
-
Statement type: