uiprotect 7.6.0__tar.gz → 7.6.1__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 uiprotect might be problematic. Click here for more details.
- {uiprotect-7.6.0 → uiprotect-7.6.1}/PKG-INFO +1 -1
- {uiprotect-7.6.0 → uiprotect-7.6.1}/pyproject.toml +5 -5
- {uiprotect-7.6.0 → uiprotect-7.6.1}/src/uiprotect/api.py +4 -0
- {uiprotect-7.6.0 → uiprotect-7.6.1}/LICENSE +0 -0
- {uiprotect-7.6.0 → uiprotect-7.6.1}/README.md +0 -0
- {uiprotect-7.6.0 → uiprotect-7.6.1}/src/uiprotect/__init__.py +0 -0
- {uiprotect-7.6.0 → uiprotect-7.6.1}/src/uiprotect/__main__.py +0 -0
- {uiprotect-7.6.0 → uiprotect-7.6.1}/src/uiprotect/_compat.py +0 -0
- {uiprotect-7.6.0 → uiprotect-7.6.1}/src/uiprotect/cli/__init__.py +0 -0
- {uiprotect-7.6.0 → uiprotect-7.6.1}/src/uiprotect/cli/aiports.py +0 -0
- {uiprotect-7.6.0 → uiprotect-7.6.1}/src/uiprotect/cli/backup.py +0 -0
- {uiprotect-7.6.0 → uiprotect-7.6.1}/src/uiprotect/cli/base.py +0 -0
- {uiprotect-7.6.0 → uiprotect-7.6.1}/src/uiprotect/cli/cameras.py +0 -0
- {uiprotect-7.6.0 → uiprotect-7.6.1}/src/uiprotect/cli/chimes.py +0 -0
- {uiprotect-7.6.0 → uiprotect-7.6.1}/src/uiprotect/cli/doorlocks.py +0 -0
- {uiprotect-7.6.0 → uiprotect-7.6.1}/src/uiprotect/cli/events.py +0 -0
- {uiprotect-7.6.0 → uiprotect-7.6.1}/src/uiprotect/cli/lights.py +0 -0
- {uiprotect-7.6.0 → uiprotect-7.6.1}/src/uiprotect/cli/liveviews.py +0 -0
- {uiprotect-7.6.0 → uiprotect-7.6.1}/src/uiprotect/cli/nvr.py +0 -0
- {uiprotect-7.6.0 → uiprotect-7.6.1}/src/uiprotect/cli/sensors.py +0 -0
- {uiprotect-7.6.0 → uiprotect-7.6.1}/src/uiprotect/cli/viewers.py +0 -0
- {uiprotect-7.6.0 → uiprotect-7.6.1}/src/uiprotect/data/__init__.py +0 -0
- {uiprotect-7.6.0 → uiprotect-7.6.1}/src/uiprotect/data/base.py +0 -0
- {uiprotect-7.6.0 → uiprotect-7.6.1}/src/uiprotect/data/bootstrap.py +0 -0
- {uiprotect-7.6.0 → uiprotect-7.6.1}/src/uiprotect/data/convert.py +0 -0
- {uiprotect-7.6.0 → uiprotect-7.6.1}/src/uiprotect/data/devices.py +0 -0
- {uiprotect-7.6.0 → uiprotect-7.6.1}/src/uiprotect/data/nvr.py +0 -0
- {uiprotect-7.6.0 → uiprotect-7.6.1}/src/uiprotect/data/types.py +0 -0
- {uiprotect-7.6.0 → uiprotect-7.6.1}/src/uiprotect/data/user.py +0 -0
- {uiprotect-7.6.0 → uiprotect-7.6.1}/src/uiprotect/data/websocket.py +0 -0
- {uiprotect-7.6.0 → uiprotect-7.6.1}/src/uiprotect/exceptions.py +0 -0
- {uiprotect-7.6.0 → uiprotect-7.6.1}/src/uiprotect/py.typed +0 -0
- {uiprotect-7.6.0 → uiprotect-7.6.1}/src/uiprotect/release_cache.json +0 -0
- {uiprotect-7.6.0 → uiprotect-7.6.1}/src/uiprotect/stream.py +0 -0
- {uiprotect-7.6.0 → uiprotect-7.6.1}/src/uiprotect/test_util/__init__.py +0 -0
- {uiprotect-7.6.0 → uiprotect-7.6.1}/src/uiprotect/test_util/anonymize.py +0 -0
- {uiprotect-7.6.0 → uiprotect-7.6.1}/src/uiprotect/utils.py +0 -0
- {uiprotect-7.6.0 → uiprotect-7.6.1}/src/uiprotect/websocket.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "uiprotect"
|
|
3
|
-
version = "7.6.
|
|
3
|
+
version = "7.6.1"
|
|
4
4
|
license = "MIT"
|
|
5
5
|
description = "Python API for Unifi Protect (Unofficial)"
|
|
6
6
|
authors = [{ name = "UI Protect Maintainers", email = "ui@koston.org" }]
|
|
@@ -58,10 +58,10 @@ asttokens = ">=2.4.1,<4.0.0"
|
|
|
58
58
|
pytest-asyncio = ">=0.23.7,<0.27.0"
|
|
59
59
|
pytest-benchmark = ">=4,<6"
|
|
60
60
|
pytest-sugar = "^1.0.0"
|
|
61
|
-
pytest-timeout = "^2.
|
|
61
|
+
pytest-timeout = "^2.4.0"
|
|
62
62
|
pytest-xdist = "^3.6.1"
|
|
63
63
|
types-aiofiles = ">=23.2.0.20240403,<25.0.0.0"
|
|
64
|
-
types-dateparser = "^1.2.0.
|
|
64
|
+
types-dateparser = "^1.2.0.20250516"
|
|
65
65
|
mypy = "^1.10.0"
|
|
66
66
|
|
|
67
67
|
[tool.poetry.group.docs]
|
|
@@ -73,7 +73,7 @@ sphinx = { version = ">=4.0", python = ">=3.11"}
|
|
|
73
73
|
furo = { version = ">=2023.5.20", python = ">=3.11"}
|
|
74
74
|
sphinx-autobuild = { version = ">=2024.0.0", python = ">=3.11"}
|
|
75
75
|
mike = "^2.1.1"
|
|
76
|
-
mkdocs-material = "^9.
|
|
76
|
+
mkdocs-material = "^9.6.14"
|
|
77
77
|
mkdocs-material-extensions = "^1.3.1"
|
|
78
78
|
pymdown-extensions = "^10.8.1"
|
|
79
79
|
mkdocs-git-revision-date-localized-plugin = "^1.2.6"
|
|
@@ -177,7 +177,7 @@ select = [
|
|
|
177
177
|
"conftest.py" = ["D100"]
|
|
178
178
|
"docs/conf.py" = ["D100"]
|
|
179
179
|
|
|
180
|
-
[tool.ruff.isort]
|
|
180
|
+
[tool.ruff.lint.isort]
|
|
181
181
|
known-first-party = ["uiprotect", "tests"]
|
|
182
182
|
|
|
183
183
|
[tool.mypy]
|
|
@@ -1578,6 +1578,7 @@ class ProtectApiClient(BaseApiClient):
|
|
|
1578
1578
|
raise_exception=False,
|
|
1579
1579
|
)
|
|
1580
1580
|
|
|
1581
|
+
_LOGGER.debug("Requesting camera video: %s%s %s", self.api_path, path, params)
|
|
1581
1582
|
r = await self.request(
|
|
1582
1583
|
"get",
|
|
1583
1584
|
f"{self.api_path}{path}",
|
|
@@ -1585,6 +1586,9 @@ class ProtectApiClient(BaseApiClient):
|
|
|
1585
1586
|
timeout=0,
|
|
1586
1587
|
params=params,
|
|
1587
1588
|
)
|
|
1589
|
+
if r.status != 200:
|
|
1590
|
+
await self._raise_for_status(r, True)
|
|
1591
|
+
|
|
1588
1592
|
if output_file is not None:
|
|
1589
1593
|
async with aiofiles.open(output_file, "wb") as output:
|
|
1590
1594
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|