wmill 1.423.1__tar.gz → 1.424.0__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {wmill-1.423.1 → wmill-1.424.0}/PKG-INFO +1 -1
- {wmill-1.423.1 → wmill-1.424.0}/pyproject.toml +1 -1
- {wmill-1.423.1 → wmill-1.424.0}/wmill/client.py +1 -1
- {wmill-1.423.1 → wmill-1.424.0}/README.md +0 -0
- {wmill-1.423.1 → wmill-1.424.0}/wmill/__init__.py +0 -0
- {wmill-1.423.1 → wmill-1.424.0}/wmill/py.typed +0 -0
- {wmill-1.423.1 → wmill-1.424.0}/wmill/s3_reader.py +0 -0
- {wmill-1.423.1 → wmill-1.424.0}/wmill/s3_types.py +0 -0
@@ -26,7 +26,7 @@ JobStatus = Literal["RUNNING", "WAITING", "COMPLETED"]
|
|
26
26
|
|
27
27
|
class Windmill:
|
28
28
|
def __init__(self, base_url=None, token=None, workspace=None, verify=True):
|
29
|
-
base = base_url or os.environ.get("BASE_INTERNAL_URL")
|
29
|
+
base = base_url or os.environ.get("BASE_INTERNAL_URL") or os.environ.get("WM_BASE_URL")
|
30
30
|
|
31
31
|
self.base_url = f"{base}/api"
|
32
32
|
self.token = token or os.environ.get("WM_TOKEN")
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|