wmill 1.98.0__tar.gz → 1.99.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of wmill might be problematic. Click here for more details.
- {wmill-1.98.0 → wmill-1.99.0}/PKG-INFO +2 -2
- {wmill-1.98.0 → wmill-1.99.0}/pyproject.toml +2 -2
- {wmill-1.98.0 → wmill-1.99.0}/setup.py +2 -2
- {wmill-1.98.0 → wmill-1.99.0}/README.md +0 -0
- {wmill-1.98.0 → wmill-1.99.0}/wmill/__init__.py +0 -0
- {wmill-1.98.0 → wmill-1.99.0}/wmill/client.py +0 -0
- {wmill-1.98.0 → wmill-1.99.0}/wmill/py.typed +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: wmill
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.99.0
|
|
4
4
|
Summary: A client library for accessing Windmill server wrapping the Windmill client API
|
|
5
5
|
Home-page: https://windmill.dev
|
|
6
6
|
License: Apache-2.0
|
|
@@ -14,7 +14,7 @@ Classifier: Programming Language :: Python :: 3.8
|
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.9
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.10
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
-
Requires-Dist: windmill-api (>=1.
|
|
17
|
+
Requires-Dist: windmill-api (>=1.99.0,<2.0.0)
|
|
18
18
|
Project-URL: Documentation, https://docs.windmill.dev
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
20
20
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "wmill"
|
|
3
|
-
version = "1.
|
|
3
|
+
version = "1.99.0"
|
|
4
4
|
description = "A client library for accessing Windmill server wrapping the Windmill client API"
|
|
5
5
|
license = "Apache-2.0"
|
|
6
6
|
homepage = "https://windmill.dev"
|
|
@@ -16,7 +16,7 @@ include = ["wmill/py.typed"]
|
|
|
16
16
|
|
|
17
17
|
[tool.poetry.dependencies]
|
|
18
18
|
python = "^3.7"
|
|
19
|
-
windmill-api = "^1.
|
|
19
|
+
windmill-api = "^1.99.0"
|
|
20
20
|
|
|
21
21
|
[build-system]
|
|
22
22
|
requires = ["poetry>=1.0.2", "poetry-dynamic-versioning"]
|
|
@@ -8,11 +8,11 @@ package_data = \
|
|
|
8
8
|
{'': ['*']}
|
|
9
9
|
|
|
10
10
|
install_requires = \
|
|
11
|
-
['windmill-api>=1.
|
|
11
|
+
['windmill-api>=1.99.0,<2.0.0']
|
|
12
12
|
|
|
13
13
|
setup_kwargs = {
|
|
14
14
|
'name': 'wmill',
|
|
15
|
-
'version': '1.
|
|
15
|
+
'version': '1.99.0',
|
|
16
16
|
'description': 'A client library for accessing Windmill server wrapping the Windmill client API',
|
|
17
17
|
'long_description': '# wmill\n\nThe core client for the [Windmill](https://windmill.dev) platform.\n\nIt is a convenient wrapper around the exhaustive, automatically generated from\nOpenApi but less user-friendly\n[windmill-api](https://pypi.org/project/windmill-api/).\n\n## Quickstart\n\n```python\nimport wmill\n\n\ndef main():\n #os.environ.set("WM_TOKEN", "<mytoken>") OPTIONAL to set token used by the wmill client\n version = wmill.get_version()\n resource = wmill.get_resource("u/user/resource_path")\n\n # run synchronously, will return the result\n res = wmill.run_script_sync(hash="000000000000002a", args={})\n print(res)\n\n for _ in range(3):\n # run asynchrnously, will return immediately. Can be scheduled\n wmill.run_script_async(hash="000000000000002a", args={}, scheduled_in_secs=10)\n```\n',
|
|
18
18
|
'author': 'Ruben Fiszel',
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|