Reolink IP NVR/camera API
Project description
Reolink IP NVR/cameras API package
The reolink_ip
Python package allows you to integrate your Reolink devices (NVR/cameras) in your application.
Description
This is a package implementing Reolink IP NVR and camera API. Also it’s providing a way to subscribe to Reolink ONVIF SWN events, so that real-time events can be received on a webhook.
Prerequisites
- Python 3.9
Installation
pip3 install reolink-ip
or manually:
git clone https://github.com/JimStar/reolink_ip
cd reolink_ip/
pip3 install .
Usage
# Create a host-object (representing either a camera, or NVR with several channels)
host = api.Host('192.168.1.10', 80, 'user', 'mypassword')
# Obtain/cache NVR or camera settings and capabilities, like model name, ports, HDD size, etc:
await host.get_host_data()
# Get the subscribtion port and host-device name:
subscribtion_port = host.onvif_port
name = host.nvr_name
# Obtain/cache states of features:
await host.get_states()
# Print some state value on the channel with index 0:
print(host.ir_enabled(0))
# Enable the infrared lights on the channel with index 1:
await host.set_ir_lights(1, True)
# Enable the spotlight on the channel with index 1:
await host.set_spotlight(1, True)
# Enable the siren on the channel with index 0:
await host.set_siren(0, True)
# Now subscribe to events, suppose our webhook url is http://192.168.1.11/webhook123
await host.subscribe('http://192.168.1.11/webhook123')
# After some minutes check the renew timer (keep the eventing alive):
if (host.renewTimer <= 100):
await host.renew()
# Unsubscribe
await host.unsubscribe()
# Logout
await host.logout()
Example
This is an example of the usage of the API. In this case we want to retrive and print the Mac Address of the NVR.
from reolink_ip.api import Host
import asyncio
async def print_mac_address():
# initialize the host
host = Host('192.168.1.109', 80, 'admin', 'admin1234')
# connect and obtain/cache device settings and capabilities
await host.get_host_data()
# check if it is a camera or an NVR
print("It is an NVR: %s, number of channels: %s", host.is_nvr, host.num_channels)
# print mac address
print(host.mac_address)
# close the device connection
await host.logout()
if __name__ == "__main__":
asyncio.run(print_mac_address())
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
reolink-ip-0.0.12.tar.gz
(24.5 kB
view hashes)
Built Distribution
Close
Hashes for reolink_ip-0.0.12-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a98a81ee15aab5fd78ef760febc7526d5a9d35c6edb54b3ebcecb6238a982b59 |
|
MD5 | 90688e8e94ebc1330c5e30a975a10ef0 |
|
BLAKE2b-256 | 32f23979a28c84e211583704fda92511f340816e76e5a730d8318f43c9339576 |