Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
A Python library that provides a unified interface for integrating with various workflow providers such as Make.com and Dify.
UniWorkflow is a Python library that offers a unified interface to integrate with multiple workflow providers like Make.com and Dify.
pip install uniworkflow
command.GET
and POST
HTTP methods.from uniworkflow import UniWorkflow
kwargs = {
"workflow_url": "https://example.make.com/your-workflow-hook",
"method": "GET",
"api_key": "your_api_key_here",
"data": {"key1": "value1", "key2": "value2"},
}
result = UniWorkflow.execute("make", **kwargs)
print(result)
This example demonstrates how to execute a workflow using the UniWorkflow
library, making it accessible for developers looking to enhance their automation capabilities with minimal effort.