python-aidot-cameras 0.1.0__tar.gz → 0.5.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.
- {python_aidot_cameras-0.1.0/python_aidot_cameras.egg-info → python_aidot_cameras-0.5.0}/PKG-INFO +18 -10
- python_aidot_cameras-0.5.0/pyproject.toml +40 -0
- python_aidot_cameras-0.5.0/setup.cfg +4 -0
- {python_aidot_cameras-0.1.0 → python_aidot_cameras-0.5.0/src/python_aidot_cameras.egg-info}/PKG-INFO +18 -10
- python_aidot_cameras-0.5.0/src/python_aidot_cameras.egg-info/SOURCES.txt +28 -0
- python_aidot_cameras-0.5.0/src/python_aidot_cameras.egg-info/requires.txt +12 -0
- python_aidot_cameras-0.1.0/pyproject.toml +0 -22
- python_aidot_cameras-0.1.0/python_aidot_cameras.egg-info/SOURCES.txt +0 -29
- python_aidot_cameras-0.1.0/setup.cfg +0 -7
- python_aidot_cameras-0.1.0/setup.py +0 -40
- {python_aidot_cameras-0.1.0 → python_aidot_cameras-0.5.0}/LICENSE +0 -0
- {python_aidot_cameras-0.1.0 → python_aidot_cameras-0.5.0}/README.md +0 -0
- {python_aidot_cameras-0.1.0 → python_aidot_cameras-0.5.0/src}/aidot/__init__.py +0 -0
- {python_aidot_cameras-0.1.0 → python_aidot_cameras-0.5.0/src}/aidot/aes_utils.py +0 -0
- {python_aidot_cameras-0.1.0 → python_aidot_cameras-0.5.0/src}/aidot/client.py +0 -0
- {python_aidot_cameras-0.1.0 → python_aidot_cameras-0.5.0/src}/aidot/const.py +0 -0
- {python_aidot_cameras-0.1.0 → python_aidot_cameras-0.5.0/src}/aidot/credentials.py +0 -0
- {python_aidot_cameras-0.1.0 → python_aidot_cameras-0.5.0/src}/aidot/device_client.py +0 -0
- {python_aidot_cameras-0.1.0 → python_aidot_cameras-0.5.0/src}/aidot/discover.py +0 -0
- {python_aidot_cameras-0.1.0 → python_aidot_cameras-0.5.0/src}/aidot/exceptions.py +0 -0
- {python_aidot_cameras-0.1.0 → python_aidot_cameras-0.5.0/src}/aidot/g711.py +0 -0
- {python_aidot_cameras-0.1.0 → python_aidot_cameras-0.5.0/src}/aidot/login_const.py +0 -0
- {python_aidot_cameras-0.1.0 → python_aidot_cameras-0.5.0/src}/python_aidot_cameras.egg-info/dependency_links.txt +0 -0
- {python_aidot_cameras-0.1.0 → python_aidot_cameras-0.5.0/src}/python_aidot_cameras.egg-info/top_level.txt +0 -0
- {python_aidot_cameras-0.1.0 → python_aidot_cameras-0.5.0}/tests/test_alarm_event.py +0 -0
- {python_aidot_cameras-0.1.0 → python_aidot_cameras-0.5.0}/tests/test_highport_nomination.py +0 -0
- {python_aidot_cameras-0.1.0 → python_aidot_cameras-0.5.0}/tests/test_motion_poll.py +0 -0
- {python_aidot_cameras-0.1.0 → python_aidot_cameras-0.5.0}/tests/test_sdes_talk.py +0 -0
- {python_aidot_cameras-0.1.0 → python_aidot_cameras-0.5.0}/tests/test_sdes_watchdog.py +0 -0
- {python_aidot_cameras-0.1.0 → python_aidot_cameras-0.5.0}/tests/test_speak.py +0 -0
- {python_aidot_cameras-0.1.0 → python_aidot_cameras-0.5.0}/tests/test_stream_cap.py +0 -0
- {python_aidot_cameras-0.1.0 → python_aidot_cameras-0.5.0}/tests/test_talk.py +0 -0
- {python_aidot_cameras-0.1.0 → python_aidot_cameras-0.5.0}/tests/test_terminal_ack.py +0 -0
- {python_aidot_cameras-0.1.0 → python_aidot_cameras-0.5.0}/tests/test_token_refresh.py +0 -0
{python_aidot_cameras-0.1.0/python_aidot_cameras.egg-info → python_aidot_cameras-0.5.0}/PKG-INFO
RENAMED
|
@@ -1,19 +1,27 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-aidot-cameras
|
|
3
|
-
Version: 0.
|
|
4
|
-
Summary:
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
Project-URL:
|
|
3
|
+
Version: 0.5.0
|
|
4
|
+
Summary: Control AiDot/Leedarson WiFi lights and cameras (WebRTC streaming, two-way audio, PTZ, controls)
|
|
5
|
+
Author-email: cbrightly <chris.brightly@gmail.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/cbrightly/python-AiDot
|
|
8
|
+
Project-URL: Issue Tracker, https://github.com/cbrightly/python-AiDot/issues
|
|
9
9
|
Classifier: Programming Language :: Python :: 3
|
|
10
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
11
10
|
Classifier: Operating System :: OS Independent
|
|
12
|
-
Requires-Python: >=3.
|
|
11
|
+
Requires-Python: >=3.11
|
|
13
12
|
Description-Content-Type: text/markdown
|
|
14
13
|
License-File: LICENSE
|
|
15
|
-
|
|
16
|
-
|
|
14
|
+
Requires-Dist: aiohttp
|
|
15
|
+
Requires-Dist: paho-mqtt>=2.0
|
|
16
|
+
Requires-Dist: cryptography
|
|
17
|
+
Requires-Dist: pycryptodome
|
|
18
|
+
Provides-Extra: webrtc
|
|
19
|
+
Requires-Dist: aiortc>=1.9.0; extra == "webrtc"
|
|
20
|
+
Requires-Dist: av; extra == "webrtc"
|
|
21
|
+
Requires-Dist: pylibsrtp; extra == "webrtc"
|
|
22
|
+
Requires-Dist: pyopenssl; extra == "webrtc"
|
|
23
|
+
Requires-Dist: numpy; extra == "webrtc"
|
|
24
|
+
Requires-Dist: Pillow; extra == "webrtc"
|
|
17
25
|
Dynamic: license-file
|
|
18
26
|
|
|
19
27
|
# python-aidot
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "python-aidot-cameras"
|
|
7
|
+
version = "0.5.0"
|
|
8
|
+
description = "Control AiDot/Leedarson WiFi lights and cameras (WebRTC streaming, two-way audio, PTZ, controls)"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "MIT"
|
|
11
|
+
license-files = ["LICENSE"]
|
|
12
|
+
authors = [{ name = "cbrightly", email = "chris.brightly@gmail.com" }]
|
|
13
|
+
requires-python = ">=3.11"
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"Operating System :: OS Independent",
|
|
17
|
+
]
|
|
18
|
+
dependencies = [
|
|
19
|
+
"aiohttp",
|
|
20
|
+
"paho-mqtt>=2.0",
|
|
21
|
+
"cryptography",
|
|
22
|
+
"pycryptodome",
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
[project.optional-dependencies]
|
|
26
|
+
webrtc = [
|
|
27
|
+
"aiortc>=1.9.0",
|
|
28
|
+
"av",
|
|
29
|
+
"pylibsrtp",
|
|
30
|
+
"pyopenssl",
|
|
31
|
+
"numpy",
|
|
32
|
+
"Pillow",
|
|
33
|
+
]
|
|
34
|
+
|
|
35
|
+
[project.urls]
|
|
36
|
+
Homepage = "https://github.com/cbrightly/python-AiDot"
|
|
37
|
+
"Issue Tracker" = "https://github.com/cbrightly/python-AiDot/issues"
|
|
38
|
+
|
|
39
|
+
[tool.setuptools.packages.find]
|
|
40
|
+
where = ["src"]
|
{python_aidot_cameras-0.1.0 → python_aidot_cameras-0.5.0/src/python_aidot_cameras.egg-info}/PKG-INFO
RENAMED
|
@@ -1,19 +1,27 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-aidot-cameras
|
|
3
|
-
Version: 0.
|
|
4
|
-
Summary:
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
Project-URL:
|
|
3
|
+
Version: 0.5.0
|
|
4
|
+
Summary: Control AiDot/Leedarson WiFi lights and cameras (WebRTC streaming, two-way audio, PTZ, controls)
|
|
5
|
+
Author-email: cbrightly <chris.brightly@gmail.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/cbrightly/python-AiDot
|
|
8
|
+
Project-URL: Issue Tracker, https://github.com/cbrightly/python-AiDot/issues
|
|
9
9
|
Classifier: Programming Language :: Python :: 3
|
|
10
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
11
10
|
Classifier: Operating System :: OS Independent
|
|
12
|
-
Requires-Python: >=3.
|
|
11
|
+
Requires-Python: >=3.11
|
|
13
12
|
Description-Content-Type: text/markdown
|
|
14
13
|
License-File: LICENSE
|
|
15
|
-
|
|
16
|
-
|
|
14
|
+
Requires-Dist: aiohttp
|
|
15
|
+
Requires-Dist: paho-mqtt>=2.0
|
|
16
|
+
Requires-Dist: cryptography
|
|
17
|
+
Requires-Dist: pycryptodome
|
|
18
|
+
Provides-Extra: webrtc
|
|
19
|
+
Requires-Dist: aiortc>=1.9.0; extra == "webrtc"
|
|
20
|
+
Requires-Dist: av; extra == "webrtc"
|
|
21
|
+
Requires-Dist: pylibsrtp; extra == "webrtc"
|
|
22
|
+
Requires-Dist: pyopenssl; extra == "webrtc"
|
|
23
|
+
Requires-Dist: numpy; extra == "webrtc"
|
|
24
|
+
Requires-Dist: Pillow; extra == "webrtc"
|
|
17
25
|
Dynamic: license-file
|
|
18
26
|
|
|
19
27
|
# python-aidot
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
pyproject.toml
|
|
4
|
+
src/aidot/__init__.py
|
|
5
|
+
src/aidot/aes_utils.py
|
|
6
|
+
src/aidot/client.py
|
|
7
|
+
src/aidot/const.py
|
|
8
|
+
src/aidot/credentials.py
|
|
9
|
+
src/aidot/device_client.py
|
|
10
|
+
src/aidot/discover.py
|
|
11
|
+
src/aidot/exceptions.py
|
|
12
|
+
src/aidot/g711.py
|
|
13
|
+
src/aidot/login_const.py
|
|
14
|
+
src/python_aidot_cameras.egg-info/PKG-INFO
|
|
15
|
+
src/python_aidot_cameras.egg-info/SOURCES.txt
|
|
16
|
+
src/python_aidot_cameras.egg-info/dependency_links.txt
|
|
17
|
+
src/python_aidot_cameras.egg-info/requires.txt
|
|
18
|
+
src/python_aidot_cameras.egg-info/top_level.txt
|
|
19
|
+
tests/test_alarm_event.py
|
|
20
|
+
tests/test_highport_nomination.py
|
|
21
|
+
tests/test_motion_poll.py
|
|
22
|
+
tests/test_sdes_talk.py
|
|
23
|
+
tests/test_sdes_watchdog.py
|
|
24
|
+
tests/test_speak.py
|
|
25
|
+
tests/test_stream_cap.py
|
|
26
|
+
tests/test_talk.py
|
|
27
|
+
tests/test_terminal_ack.py
|
|
28
|
+
tests/test_token_refresh.py
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
[build-system]
|
|
2
|
-
requires = ["setuptools", "wheel"]
|
|
3
|
-
build-backend = "setuptools.build_meta"
|
|
4
|
-
|
|
5
|
-
[project]
|
|
6
|
-
name = "python-aidot-cameras"
|
|
7
|
-
version = "0.1.0"
|
|
8
|
-
authors = [
|
|
9
|
-
{ name="Chris Brightly", email="chris.brightly@gmail.com" }
|
|
10
|
-
]
|
|
11
|
-
|
|
12
|
-
description = "Adds camera support to AiDot-Development-Team's python-AiDot library"
|
|
13
|
-
readme = "README.md"
|
|
14
|
-
requires-python = ">=3.8"
|
|
15
|
-
classifiers = [
|
|
16
|
-
"Programming Language :: Python :: 3",
|
|
17
|
-
"License :: OSI Approved :: MIT License",
|
|
18
|
-
"Operating System :: OS Independent",
|
|
19
|
-
]
|
|
20
|
-
|
|
21
|
-
[project.urls]
|
|
22
|
-
Homepage = "https://github.com"
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
LICENSE
|
|
2
|
-
README.md
|
|
3
|
-
pyproject.toml
|
|
4
|
-
setup.cfg
|
|
5
|
-
setup.py
|
|
6
|
-
aidot/__init__.py
|
|
7
|
-
aidot/aes_utils.py
|
|
8
|
-
aidot/client.py
|
|
9
|
-
aidot/const.py
|
|
10
|
-
aidot/credentials.py
|
|
11
|
-
aidot/device_client.py
|
|
12
|
-
aidot/discover.py
|
|
13
|
-
aidot/exceptions.py
|
|
14
|
-
aidot/g711.py
|
|
15
|
-
aidot/login_const.py
|
|
16
|
-
python_aidot_cameras.egg-info/PKG-INFO
|
|
17
|
-
python_aidot_cameras.egg-info/SOURCES.txt
|
|
18
|
-
python_aidot_cameras.egg-info/dependency_links.txt
|
|
19
|
-
python_aidot_cameras.egg-info/top_level.txt
|
|
20
|
-
tests/test_alarm_event.py
|
|
21
|
-
tests/test_highport_nomination.py
|
|
22
|
-
tests/test_motion_poll.py
|
|
23
|
-
tests/test_sdes_talk.py
|
|
24
|
-
tests/test_sdes_watchdog.py
|
|
25
|
-
tests/test_speak.py
|
|
26
|
-
tests/test_stream_cap.py
|
|
27
|
-
tests/test_talk.py
|
|
28
|
-
tests/test_terminal_ack.py
|
|
29
|
-
tests/test_token_refresh.py
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
import setuptools
|
|
2
|
-
|
|
3
|
-
with open("README.md", "r") as fh:
|
|
4
|
-
long_description = fh.read()
|
|
5
|
-
|
|
6
|
-
setuptools.setup(
|
|
7
|
-
name="python-aidot",
|
|
8
|
-
version="0.4.19",
|
|
9
|
-
author="aidotdev2024",
|
|
10
|
-
url='https://github.com/cbrightly/python-AiDot',
|
|
11
|
-
description="Control AIDOT WiFi lights and cameras",
|
|
12
|
-
long_description=long_description,
|
|
13
|
-
long_description_content_type="text/markdown",
|
|
14
|
-
packages=setuptools.find_packages(),
|
|
15
|
-
install_requires=[
|
|
16
|
-
"requests",
|
|
17
|
-
"aiohttp",
|
|
18
|
-
# Camera cloud APIs + MQTT signaling are part of the core camera support.
|
|
19
|
-
"paho-mqtt>=2.0",
|
|
20
|
-
"cryptography",
|
|
21
|
-
"pycryptodome",
|
|
22
|
-
],
|
|
23
|
-
extras_require={
|
|
24
|
-
# Required for liveType=2 cameras (WebRTC-over-MQTT streaming, snapshots,
|
|
25
|
-
# two-way audio). Install with: pip install "python-aidot[webrtc] @ git+..."
|
|
26
|
-
"webrtc": [
|
|
27
|
-
"aiortc>=1.9.0",
|
|
28
|
-
"av",
|
|
29
|
-
"pylibsrtp",
|
|
30
|
-
"pyopenssl",
|
|
31
|
-
"numpy",
|
|
32
|
-
"Pillow",
|
|
33
|
-
],
|
|
34
|
-
},
|
|
35
|
-
classifiers=(
|
|
36
|
-
"Programming Language :: Python :: 3.12",
|
|
37
|
-
"License :: OSI Approved :: MIT License",
|
|
38
|
-
"Operating System :: OS Independent",
|
|
39
|
-
),
|
|
40
|
-
)
|
|
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
|