pythonkuma 0.0.0rc3__tar.gz → 0.1.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.
- {pythonkuma-0.0.0rc3 → pythonkuma-0.1.0}/PKG-INFO +1 -1
- {pythonkuma-0.0.0rc3 → pythonkuma-0.1.0}/pythonkuma/__init__.py +1 -1
- {pythonkuma-0.0.0rc3 → pythonkuma-0.1.0}/pythonkuma/models.py +1 -1
- {pythonkuma-0.0.0rc3 → pythonkuma-0.1.0}/pythonkuma/uptimekuma.py +1 -1
- {pythonkuma-0.0.0rc3 → pythonkuma-0.1.0}/.gitignore +0 -0
- {pythonkuma-0.0.0rc3 → pythonkuma-0.1.0}/LICENSE +0 -0
- {pythonkuma-0.0.0rc3 → pythonkuma-0.1.0}/README.md +0 -0
- {pythonkuma-0.0.0rc3 → pythonkuma-0.1.0}/pyproject.toml +0 -0
- {pythonkuma-0.0.0rc3 → pythonkuma-0.1.0}/pythonkuma/exceptions.py +0 -0
- {pythonkuma-0.0.0rc3 → pythonkuma-0.1.0}/pythonkuma/py.typed +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pythonkuma
|
|
3
|
-
Version: 0.0
|
|
3
|
+
Version: 0.1.0
|
|
4
4
|
Summary: Simple Python wrapper for Uptime Kuma
|
|
5
5
|
Project-URL: Source, https://github.com/tr4nt0r/pythonkuma
|
|
6
6
|
Author-email: Manfred Dennerlein Rodelo <manfred@dennerlein.name>, Jayakorn Karikan <jayakornk@gmail.com>
|
|
@@ -35,7 +35,7 @@ class UptimeKuma:
|
|
|
35
35
|
self._timeout = ClientTimeout(total=timeout or 10)
|
|
36
36
|
self._session = session
|
|
37
37
|
|
|
38
|
-
async def metrics(self) ->
|
|
38
|
+
async def metrics(self) -> dict[str, UptimeKumaMonitor]:
|
|
39
39
|
"""Retrieve metrics from Uptime Kuma."""
|
|
40
40
|
url = self._base_url / "metrics"
|
|
41
41
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|