semaphoreui-client 0.1.1__py3-none-any.whl → 0.1.2__py3-none-any.whl
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.
- semaphoreui_client/__about__.py +1 -1
- semaphoreui_client-0.1.2.dist-info/METADATA +46 -0
- semaphoreui_client-0.1.2.dist-info/RECORD +6 -0
- semaphoreui_client-0.1.1.dist-info/METADATA +0 -20
- semaphoreui_client-0.1.1.dist-info/RECORD +0 -6
- {semaphoreui_client-0.1.1.dist-info → semaphoreui_client-0.1.2.dist-info}/WHEEL +0 -0
semaphoreui_client/__about__.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = "0.1.
|
1
|
+
__version__ = "0.1.2"
|
@@ -0,0 +1,46 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: semaphoreui-client
|
3
|
+
Version: 0.1.2
|
4
|
+
Summary: An api client for interacting with Semaphore UI
|
5
|
+
Project-URL: Documentation, https://github.com/rockstar/semaphoreui-client#readme
|
6
|
+
Project-URL: Issues, https://github.com/rockstar/semaphoreui-client/issues
|
7
|
+
Project-URL: Source, https://github.com/rockstar/semaphoreui-client
|
8
|
+
Author-email: Paul Hummer <paul@eventuallyanyway.com>
|
9
|
+
License-Expression: MIT
|
10
|
+
Classifier: Development Status :: 4 - Beta
|
11
|
+
Classifier: Programming Language :: Python
|
12
|
+
Classifier: Programming Language :: Python :: 3.9
|
13
|
+
Classifier: Programming Language :: Python :: 3.10
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
16
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
17
|
+
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
18
|
+
Requires-Python: >=3.9
|
19
|
+
Requires-Dist: dataclasses-json>=0.6.7
|
20
|
+
Requires-Dist: requests>=2.32.3
|
21
|
+
Description-Content-Type: text/markdown
|
22
|
+
|
23
|
+
A python client for SemaphoreUI
|
24
|
+
==
|
25
|
+
|
26
|
+
This library provides an api client for the SemaphoreUI api. Its purpose is to provide an ergonomic and python interface, both in api and behavior.
|
27
|
+
|
28
|
+
To install,
|
29
|
+
|
30
|
+
```shell
|
31
|
+
$ pip install semaphoreui-client
|
32
|
+
```
|
33
|
+
|
34
|
+
To use,
|
35
|
+
|
36
|
+
```python
|
37
|
+
from semaphoreui_client import Client
|
38
|
+
|
39
|
+
client = Client("https://path.to/your/semaphore")
|
40
|
+
client.login("username", "myPassW0rd")
|
41
|
+
|
42
|
+
for project in client.projects():
|
43
|
+
print(project.name)
|
44
|
+
```
|
45
|
+
|
46
|
+
This library is being used in production environments, but is still early in its development. As such, caution should be exercised when using this library--its api is still heavily in flux.
|
@@ -0,0 +1,6 @@
|
|
1
|
+
semaphoreui_client/__about__.py,sha256=K5SiDdEGYMpdqXThrqwTqECJJBOQNTQDrnpc2K5mzKs,21
|
2
|
+
semaphoreui_client/__init__.py,sha256=r2j1tTgwFzp3AKAktr8izDIXllRf-Y0SdHAjInYDTP0,55
|
3
|
+
semaphoreui_client/client.py,sha256=CBw2BUELSuwguRGt1hczE0yEUMTG63uHkWvh9VO4_4Y,24716
|
4
|
+
semaphoreui_client-0.1.2.dist-info/METADATA,sha256=D7_PSIOOZichIN1JmhIMxuwiuv0HbV7z6wGoDsoeJj8,1632
|
5
|
+
semaphoreui_client-0.1.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
6
|
+
semaphoreui_client-0.1.2.dist-info/RECORD,,
|
@@ -1,20 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.4
|
2
|
-
Name: semaphoreui-client
|
3
|
-
Version: 0.1.1
|
4
|
-
Summary: An api client for interacting with Semaphore UI
|
5
|
-
Project-URL: Documentation, https://github.com/Paul Hummer/semaphoreui-client#readme
|
6
|
-
Project-URL: Issues, https://github.com/Paul Hummer/semaphoreui-client/issues
|
7
|
-
Project-URL: Source, https://github.com/Paul Hummer/semaphoreui-client
|
8
|
-
Author-email: Paul Hummer <paul@eventuallyanyway.com>
|
9
|
-
License-Expression: MIT
|
10
|
-
Classifier: Development Status :: 4 - Beta
|
11
|
-
Classifier: Programming Language :: Python
|
12
|
-
Classifier: Programming Language :: Python :: 3.9
|
13
|
-
Classifier: Programming Language :: Python :: 3.10
|
14
|
-
Classifier: Programming Language :: Python :: 3.11
|
15
|
-
Classifier: Programming Language :: Python :: 3.12
|
16
|
-
Classifier: Programming Language :: Python :: Implementation :: CPython
|
17
|
-
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
18
|
-
Requires-Python: >=3.9
|
19
|
-
Requires-Dist: dataclasses-json>=0.6.7
|
20
|
-
Requires-Dist: requests>=2.32.3
|
@@ -1,6 +0,0 @@
|
|
1
|
-
semaphoreui_client/__about__.py,sha256=8oAxKUG747GUokmxjkrWejyJa5yPNEsoJDlXxoedxTw,21
|
2
|
-
semaphoreui_client/__init__.py,sha256=r2j1tTgwFzp3AKAktr8izDIXllRf-Y0SdHAjInYDTP0,55
|
3
|
-
semaphoreui_client/client.py,sha256=CBw2BUELSuwguRGt1hczE0yEUMTG63uHkWvh9VO4_4Y,24716
|
4
|
-
semaphoreui_client-0.1.1.dist-info/METADATA,sha256=Lnbc_GPmVb-0YSE9XxtrdY47oNToN56wET0u0ROgbSo,955
|
5
|
-
semaphoreui_client-0.1.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
6
|
-
semaphoreui_client-0.1.1.dist-info/RECORD,,
|
File without changes
|