--- id: reolink-aio version: "0.21.8" license: MIT license_treatment: permissive maintenance: active --- # reolink-aio — Reolink NVR/cameras API package License: permissive · Maintenance: active · Downloads: 88.5K/mo ## What it is and what it does reolink_aio is an async Python client library for controlling Reolink IP NVR and camera devices over HTTP and ONVIF protocols. It lets you query device capabilities and state (model, channel count, infrared status), issue commands (enable/disable lights, spotlight, siren), and subscribe to real-time events via webhook callbacks. The library handles authentication, session management, and event renewal automatically. The package is built on aiohttp for async HTTP, aiortsp for RTSP support, and pycryptodomex for credential handling. It's designed for home automation and integration scenarios where you need programmatic control of Reolink hardware from Python applications. The library is officially authorized by Reolink and actively maintained. Use it for: - Integrate Reolink cameras into a home automation system to trigger actions based on device state or enable/disable features remotely. - Build a monitoring dashboard that polls multiple Reolink NVRs and displays their status, channel counts, and device names. - Receive real-time motion or event notifications from Reolink devices via ONVIF webhook subscriptions and react programmatically. - Automate security workflows by controlling infrared lights, spotlights, or sirens on specific camera channels based on external triggers. - Develop a Python CLI tool to manage Reolink device settings and retrieve diagnostics like MAC address and hardware capabilities. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Async Python client for Reolink IP NVR and camera devices, supporting device control, state queries, and real-time event subscription via ONVIF webhooks. Yes. The package is actively maintained, has low install friction, carries no known vulnerabilities, and uses a permissive MIT license. It is well-suited for developers building Reolink integrations into home automation or monitoring systems. The only constraint is the Python 3.11+ requirement; verify your target Reolink models are supported before committing. ## Install pip install reolink-aio uv add reolink-aio poetry add reolink-aio ## Installing reolink-aio Before you install: Low friction install with five async-focused runtime dependencies. Actively maintained with a recent release and ongoing repository activity; requires Python 3.11 or later. License in practice: MIT license permits unrestricted use, modification, and distribution in both open and closed projects with minimal attribution requirements. Quickstart: from reolink_aio.api import Host import asyncio async def main(): host = Host('192.168.1.10', 'user', 'password') await host.get_host_data() print(host.nvr_name) await host.logout() asyncio.run(main()) Requires Python 3.11 or later; target Reolink device must be reachable on the network and accept HTTP/ONVIF connections. Verify before relying: - Whether all Reolink NVR and camera models are supported or if there are known compatibility gaps. - Performance characteristics when controlling multiple channels or devices concurrently. - Timeout and retry behavior for network failures or unresponsive devices. ## Package facts - License: MIT (permissive) - Python support: supports_current - Install friction: low - Maintenance: active - Downloads: 88.5K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags reolink camera api python, reolink nvr integration, async reolink control, reolink onvif events, reolink device automation, reolink webhook events, reolink camera state, home-automation, async-io, device-control [View on SkillFed](https://skillfed.io/packages/reolink-aio) · [View on PyPI](https://pypi.org/project/reolink-aio/)