A Python client for the Gumloop API that makes it easy to run and monitor Gumloop flows.
pip install gumloopfrom gumloop import GumloopClient
# Initialize the client
client = GumloopClient(
api_key="your_api_key",
user_id="your_user_id"
)
# Run a flow and wait for outputs
output = client.run_flow(
flow_id="your_flow_id",
inputs={
"recipient": "[email protected]",
"subject": "Hello",
"body": "World"
}
)
print(output)