python-aidot-cameras 0.7.11__tar.gz → 0.7.13__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.
- {python_aidot_cameras-0.7.11/src/python_aidot_cameras.egg-info → python_aidot_cameras-0.7.13}/PKG-INFO +1 -1
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/pyproject.toml +4 -3
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/src/aidot/camera/client.py +223 -2852
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/src/aidot/camera/constants.py +7 -0
- python_aidot_cameras-0.7.13/src/aidot/camera/controls.py +164 -0
- python_aidot_cameras-0.7.13/src/aidot/camera/go2rtc.py +132 -0
- python_aidot_cameras-0.7.13/src/aidot/camera/models.py +188 -0
- python_aidot_cameras-0.7.13/src/aidot/camera/playback.py +485 -0
- python_aidot_cameras-0.7.13/src/aidot/camera/protocol.py +1340 -0
- python_aidot_cameras-0.7.13/src/aidot/camera/sdes.py +287 -0
- python_aidot_cameras-0.7.13/src/aidot/camera/tutk.py +266 -0
- python_aidot_cameras-0.7.13/src/aidot/camera/webrtc.py +127 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13/src/python_aidot_cameras.egg-info}/PKG-INFO +1 -1
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/src/python_aidot_cameras.egg-info/SOURCES.txt +9 -0
- python_aidot_cameras-0.7.13/tests/test_go2rtc.py +123 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/tests/test_sdes_sprop.py +5 -4
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/LICENSE +0 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/MANIFEST.in +0 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/README.md +0 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/setup.cfg +0 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/src/aidot/__init__.py +0 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/src/aidot/aes_utils.py +0 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/src/aidot/camera/__init__.py +0 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/src/aidot/camera/lan_control.py +0 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/src/aidot/client.py +0 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/src/aidot/const.py +0 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/src/aidot/credentials.py +0 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/src/aidot/device_client.py +0 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/src/aidot/discover.py +0 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/src/aidot/exceptions.py +0 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/src/aidot/g711.py +0 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/src/aidot/login_const.py +0 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/src/aidot/models/__init__.py +0 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/src/aidot/models/device_client_model.py +0 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/src/aidot/models/device_model.py +0 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/src/aidot/models/discover_model.py +0 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/src/aidot/py.typed +0 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/src/python_aidot_cameras.egg-info/dependency_links.txt +0 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/src/python_aidot_cameras.egg-info/requires.txt +0 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/src/python_aidot_cameras.egg-info/top_level.txt +0 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/tests/test_alarm_event.py +0 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/tests/test_highport_nomination.py +0 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/tests/test_lan_control.py +0 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/tests/test_motion_poll.py +0 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/tests/test_no_undefined_names.py +0 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/tests/test_post_merge_hardening.py +0 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/tests/test_sdes_idle_release.py +0 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/tests/test_sdes_talk.py +0 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/tests/test_sdes_watchdog.py +0 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/tests/test_speak.py +0 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/tests/test_stream_cap.py +0 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/tests/test_talk.py +0 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/tests/test_terminal_ack.py +0 -0
- {python_aidot_cameras-0.7.11 → python_aidot_cameras-0.7.13}/tests/test_token_refresh.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-aidot-cameras
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.13
|
|
4
4
|
Summary: Control AiDot/Leedarson WiFi lights and cameras (WebRTC streaming, two-way audio, PTZ, controls)
|
|
5
5
|
Author-email: cbrightly <chris.brightly@gmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "python-aidot-cameras"
|
|
7
|
-
version = "0.7.
|
|
7
|
+
version = "0.7.13"
|
|
8
8
|
description = "Control AiDot/Leedarson WiFi lights and cameras (WebRTC streaming, two-way audio, PTZ, controls)"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "MIT"
|
|
@@ -73,5 +73,6 @@ ignore = [
|
|
|
73
73
|
# device_client.py re-exports from camera.client mid-file (avoids a circular import).
|
|
74
74
|
"**/device_client.py" = ["F401", "E402"]
|
|
75
75
|
# Inherited ffmpeg streaming engine is process-based (Popen / subprocess poll /
|
|
76
|
-
# SDP file write); a full non-blocking refactor needs on-device testing.
|
|
77
|
-
|
|
76
|
+
# SDP file write); a full non-blocking refactor needs on-device testing. The
|
|
77
|
+
# engine is split across several camera/* modules, so this applies package-wide.
|
|
78
|
+
"src/aidot/camera/*.py" = ["ASYNC110", "ASYNC220", "ASYNC221", "ASYNC230"]
|