blinkpy
A Blink camera Python Library.
What it is and what it does
blinkpy is an async Python library for interacting with Blink camera systems, designed primarily to support home automation integrations. It handles authentication (including two-factor authentication), manages sync modules and individual cameras, and provides methods to retrieve live images and videos, trigger remote snapshots, and control arming/disarming of motion detection.
The library uses aiohttp for async HTTP communication and includes built-in request throttling to avoid overwhelming Blink's servers. It supports saving and loading credentials from files, interactive and non-interactive authentication flows, and exposes camera attributes and cached media as bytes objects. The package requires Python 3.10 or later and depends on aiohttp, requests, aiofiles, python-dateutil, python-slugify, and sortedcontainers.
Use it for:
- Building a home automation system that integrates Blink cameras with Home Assistant or other platforms.
- Retrieving and archiving snapshots or video clips from Blink cameras on a schedule.
- Remotely arming/disarming motion detection or entire sync modules based on presence or time-based rules.
- Monitoring multiple Blink cameras and triggering alerts or actions when motion is detected.
- Automating camera snapshots and saving them to local storage for security logging.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
A Python library for controlling and monitoring Blink camera systems via their API, supporting authentication, camera image/video retrieval, motion detection, and sync module arming.
Yes. The library is actively maintained, has no known vulnerabilities, uses permissive licensing, and provides a complete async interface to Blink cameras. Install it if you need programmatic control of Blink systems or are building a home automation integration. The low install friction and standard dependencies make it straightforward to add to existing projects.
Install
blinkpy on PyPI
pip
pip install blinkpyuv
uv add blinkpypoetry
poetry add blinkpyInstalling blinkpy
Before you install
Low install friction with a pure-Python wheel distribution. Actively maintained with a recent release (24 days ago) and steady commit activity. Requires Python 3.10 or later and depends on standard async/HTTP libraries (aiohttp, requests, aiofiles) plus utility packages.
License in practice
Published under the MIT license, a permissive open-source license that allows free use, modification, and distribution with minimal restrictions.
Quickstart
import asyncio
from aiohttp import ClientSession
from blinkpy.blinkpy import Blink
async def start():
blink = Blink(session=ClientSession())
await blink.start()
for name, camera in blink.cameras.items():
print(f"{name}: {camera.attributes}")
return blink
blink = asyncio.run(start())
Requires Python 3.10 or later. Blink account credentials and network access to Blink servers are required for authentication.
Verify before relying
- Whether the library's internal throttling (default 30-second refresh rate) is sufficient for typical home automation workflows or if users commonly adjust it.
- Current API compatibility with Blink's servers and whether breaking changes are tracked in release notes.
- Whether two-factor authentication is consistently required or optional depending on account settings.
Package facts
| License | MIT (permissive) |
| Python support | supports the current Python release (>=3.10.0) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 6 — python-dateutil, requests, python-slugify, sortedcontainers, aiohttp, aiofiles |
| Maintenance | actively maintained — 24 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 96,141/month — #13,227 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: blinkpy-0.25.9-py3-none-any.whl
Tags
More Home Automation packages
Represents and manipulates IPv4, IPv6, MAC…
permissive · top 5,000 on PyPI
homeassistantHome Assistant is an open-source home…
permissive · top 5,000 on PyPI
python-statemachineDefines finite state machines and statecharts…
permissive · top 5,000 on PyPI
btsocketA Python library for controlling BlueZ…
permissive · top 15,000 on PyPI
aiohomematicAn async Python library for controlling and…
permissive · top 15,000 on PyPI
hass-web-proxy-libProvides base classes and utilities for Home…
permissive · top 15,000 on PyPI
motioneye-clientAn async Python client library for querying and…
permissive · top 15,000 on PyPI
ring-doorbellExposes Ring.com doorbell, camera, and chime…
copyleft · top 15,000 on PyPI
jaraco.abodeA Python library that interfaces with the Abode…
permissive · top 15,000 on PyPI
pytapoPyTapo is a Python library that communicates…
permissive · top 15,000 on PyPI
pyswitchbeeA Python library for controlling SwitchBee…
permissive · top 15,000 on PyPI
uiprotectProvides an async Python API and CLI for…
permissive · top 15,000 on PyPI
pypylonpypylon is the official Python binding for…
unclear · top 15,000 on PyPI
pygrabberCapture photos and video from Windows cameras…
permissive · top 15,000 on PyPI
pyriscoPyrisco provides an async Python interface to…
permissive · top 15,000 on PyPI
depthaiPython bindings for the DepthAI C++ library,…
permissive · top 15,000 on PyPI