Skip to content

Commit 701ff9e

Browse files
chore: upgrade dependencies and python to 3.12 (#76)
* - upgrade deps to python 3.12 - added test for streaming coverage * update setup version print import error --------- Co-authored-by: Fabio Testa <[email protected]>
1 parent 2eab380 commit 701ff9e

File tree

5 files changed

+21
-179
lines changed

5 files changed

+21
-179
lines changed

Pipfile.lock

-169
This file was deleted.

reolinkapi/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from reolinkapi.handlers.api_handler import APIHandler
22
from .camera import Camera
33

4-
__version__ = "0.1.5"
4+
__version__ = "0.2.0"

reolinkapi/mixins/stream.py

+7-3
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,16 @@ def get_snap(self, timeout: float = 3, proxies: Any = None) -> Optional[Image]:
5252
except Exception as e:
5353
print("Could not get Image data\n", e)
5454
raise
55-
except ImportError:
55+
except ImportError as err:
56+
print("ImportError", err)
57+
5658
class StreamAPIMixin:
5759
""" API calls for opening a video stream or capturing an image from the camera."""
5860

5961
def open_video_stream(self, callback: Any = None, proxies: Any = None) -> Any:
60-
raise ImportError('''open_video_stream requires streaming extra dependencies\nFor instance "pip install reolinkapi[streaming]"''')
62+
raise ImportError(f'open_video_stream requires streaming extra dependencies\nFor instance "pip install '
63+
f'reolinkapi[streaming]"')
6164

6265
def get_snap(self, timeout: float = 3, proxies: Any = None) -> Optional['Image']:
63-
raise ImportError('''open_video_stream requires streaming extra dependencies\nFor instance "pip install reolinkapi[streaming]"''')
66+
raise ImportError(
67+
f'get_snap requires streaming extra dependencies\nFor instance "pip install reolinkapi[streaming]"')

setup.py

+7-6
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,16 @@ def find_version(*file_paths):
2626
AUTHOR = 'Benehiko'
2727
LICENSE = 'GPL-3.0'
2828
INSTALL_REQUIRES = [
29+
'setuptools',
2930
'PySocks==1.7.1',
30-
'PyYaml==5.3.1',
31-
'requests>=2.18.4',
31+
'PyYaml==6.0.2',
32+
'requests>=2.32.3',
3233
]
3334
EXTRAS_REQUIRE = {
3435
'streaming': [
35-
'numpy==1.19.4',
36-
'opencv-python==4.4.0.46',
37-
'Pillow==8.0.1',
36+
'numpy==2.0.1',
37+
'opencv-python==4.10.0.84',
38+
'Pillow==10.4.0',
3839
],
3940
}
4041

@@ -47,7 +48,7 @@ def find_version(*file_paths):
4748

4849
setup(
4950
name=NAME,
50-
python_requires='>=3.6.0',
51+
python_requires='>=3.12.4',
5152
version=find_version('reolinkapi', '__init__.py'),
5253
description=DESCRIPTION,
5354
long_description=long_description,

tests/test_camera.py

+6
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,12 @@ def test_camera(self):
3535
self.assertTrue(self.cam.ip == self.config.get('camera', 'ip'))
3636
self.assertTrue(self.cam.token != '')
3737

38+
def test_snapshot(self):
39+
img = self.cam.get_snap()
40+
# write Pillow Image to file
41+
img.save('./tmp/snaps/camera.jpg')
42+
self.assertTrue(os.path.exists('./tmp/snaps/camera.jpg'))
43+
3844

3945
if __name__ == '__main__':
4046
unittest.main()

0 commit comments

Comments
 (0)