reolinkapipy
reolinkapipy copied to clipboard
Reolink Camera API written in Python 3.6
Hi, I tried to login using the following code: ```python from reolinkapi.camera import Camera ip: str = '127.0.0.1' username: str = "admin" password: str = "12345" https: bool = True...
This fixes below error occurring when no motion video is available in the time frame provided to `get_motion_files` ``` File "/home/xux/.local/lib/python3.7/site-packages/reolinkapi/mixins/motion.py", line 49, in get_motion_files result = resp['value']['SearchResult'] KeyError: 'value'...
## Help wanted For those out there that are using the library, would you be so kind as to mention which Reolink camera's you are using the library with. Just...
With https function throws: SSLError("bad handshake: Error([('SSL routines', 'tls_process_server_certificate',...
Dear developers, Thank you for all the efforts on this - really helpful. I am wondering if you could help me sove the following error (IPs make it impossible to...
As a title can be great to enable or disable notifications when i go away from home
Hello, I read cameras that uses special clients that not have a web client are not supported by this project. It would be very difficult to add suport to them?...
How can I start/stop a recording manually? And how can I trigger the audio alarm or Flashlight manually? What are the commands for this? Is there a complete list of...
The example responses are incomplete and requires some review. It seems mostly the `SET` request responses are missing.
Seems the NetworkApi has two methods that have no mapping to an example response. https://github.com/ReolinkCameraAPI/reolink-python-api/blob/984747e1db3e8f8be4d1ea55b8faa2f96eea1b39/api/network.py#L47 https://github.com/ReolinkCameraAPI/reolink-python-api/blob/984747e1db3e8f8be4d1ea55b8faa2f96eea1b39/api/network.py#L51 #27