A client for the Windmill API
Project description
windmill_client
Overview
windmill_client
is a Python package designed to interact with the Windmill API. It provides a convenient way to manage jobs, resources, and states within the Windmill environment, offering functionalities like job creation, execution, status tracking, and state management.
It's designed to remain api-compatible with the wmill
package, but with some added features and a more direct usage
of Windmill's REST API.
Installation
To install windmill_client
, run the following command:
pip install windmill-client
Usage
Basic Example
Here's a basic example of how to use windmill_client
:
import windmill_client as wmill
client = wmill.Windmill()
# Create a new job
job_id = client.start_execution(path="path/to/script")
# Check job status
status = client.get_job_status(job_id)
print(f"Job Status: {status}")
# run a script synchronously
result = client.run_script(path="path/to/script")
print(f"Script Result: {result}")
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
windmill_client-0.5.5.tar.gz
(8.2 kB
view hashes)
Built Distribution
Close
Hashes for windmill_client-0.5.5-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8d78d589275771dd08a55368fddc1539dd570106ce94737ac95a0c1eb09601cd |
|
MD5 | 7d76ab3f6209c0cd87141a7cea56c8b2 |
|
BLAKE2b-256 | 410a0c7c468432cc69a82f7c2ba15591c39fbd79d5baebc3dd448149995192ac |