Python API for Unifi Protect (Unofficial)
Project description
Unofficial UniFi Protect Python API and CLI
Documentation: https://uiprotect.readthedocs.io
Source Code: https://github.com/uilibs/uiprotect
Python API for UniFi Protect (Unofficial)
Looking for maintainers
This project is looking for maintainers.
Installation
Install this via pip (or your favorite package manager):
pip install uiprotect
Developer Setup
The recommended way to develop is using the provided devcontainer with VS Code:
- Install VS Code and the Dev Containers extension
- Open the project in VS Code
- When prompted, click "Reopen in Container" (or use Command Palette: "Dev Containers: Reopen in Container")
- The devcontainer will automatically set up Python, Poetry, pre-commit hooks, and all dependencies
Alternatively, if you want to develop natively without devcontainer:
# Install dependencies
poetry install --with dev
# Install pre-commit hooks
poetry run pre-commit install --install-hooks
# Run tests
poetry run pytest
# Run pre-commit checks manually
poetry run pre-commit run --all-files
History
This project was split off from pyunifiprotect because that project changed its license to one that would not be accepted in Home Assistant. This project is committed to keeping the MIT license.
Credits
- Bjarne Riis (@briis) for the original pyunifiprotect package
- Christopher Bailey (@AngellusMortis) for the maintaining the pyunifiprotect package
Contributors ✨
Thanks goes to these wonderful people (emoji key):
This project follows the all-contributors specification. Contributions of any kind welcome!
uiprotect is an unofficial API for UniFi Protect. There is no affiliation with Ubiquiti.
This module communicates with UniFi Protect surveillance software installed on a UniFi OS Console such as a Ubiquiti CloudKey+ or UniFi Dream Machine Pro.
The API is not documented by Ubiquiti, so there might be misses and/or frequent changes in this module, as Ubiquiti evolves the software.
The module is primarily written for the purpose of being used in Home Assistant core integration for UniFi Protect but might be used for other purposes also.
Documentation
Full documentation for the project.
Requirements
If you want to install uiprotect natively, the below are the requirements:
- UniFi Protect version 6.0+
- Only UniFi Protect version 6 and newer are supported. The library is generally tested against the latest stable version and the latest EA version.
- Python 3.10+
- POSIX compatible system
- Library is only tested on Linux, specifically the latest Debian version available for the official Python Docker images, but there is no reason the library should not work on any Linux distro or macOS.
- ffmpeg
- ffmpeg is primarily only for streaming audio to Protect cameras, this can be considered a soft requirement
Alternatively you can use the provided Docker container, in which case the only requirement is Docker or another OCI compatible orchestrator (such as Kubernetes or podman).
Windows is not supported. If you need to use uiprotect on Windows, use Docker Desktop and the provided docker container or WSL.
Install
From PyPi
uiprotect is available on PyPi:
pip install uiprotect
From GitHub
pip install git+https://github.com/uilibs/uiprotect.git#egg=uiprotect
Using Docker Container
A Docker container is also provided, so you do not need to install/manage Python as well. You can add the following to your .bashrc or similar.
function uiprotect() {
docker run --rm -it \
-e UFP_USERNAME=YOUR_USERNAME_HERE \
-e UFP_PASSWORD=YOUR_PASSWORD_HERE \
-e UFP_ADDRESS=YOUR_IP_ADDRESS \
-e UFP_PORT=443 \
-e UFP_SSL_VERIFY=false \
-e TZ=America/New_York \
-v $PWD:/data ghcr.io/uilibs/uiprotect:latest "$@"
}
Some notes about the Docker version since it is running inside a container:
- You can update at any time using the command
docker pull ghcr.io/uilibs/uiprotect:latest - Your local current working directory (
$PWD) will automatically be mounted to/datainside of the container. For commands that output files, this is the only path you can write to and have the file persist. - The container supports
linux/amd64andlinux/arm64natively. This means it will also work well on macOS or Windows using Docker Desktop. TZshould be the Olson timezone name for the timezone your UniFi Protect instance is in.- For more details on
TZand other environment variables, check the command line docs
Quickstart
CLI
[!WARNING] Ubiquiti SSO accounts are not supported and actively discouraged from being used. There is no option to use MFA. You are expected to use local access user.
uiprotectis not designed to allow you to use your owner account to access the console or to be used over the public internet as both pose a security risk.
export UFP_USERNAME=YOUR_USERNAME_HERE
export UFP_PASSWORD=YOUR_PASSWORD_HERE
export UFP_ADDRESS=YOUR_IP_ADDRESS
export UFP_PORT=443
# set to true if you have a valid HTTPS certificate for your instance
export UFP_SSL_VERIFY=false
# Alternatively, use an API key for authentication (required for public API operations)
export UFP_API_KEY=YOUR_API_KEY_HERE
uiprotect --help
uiprotect nvr
Available CLI Commands
Top-level commands:
uiprotect shell- Start an interactive Python shell with the API clientuiprotect create-api-key <name>- Create a new API key for authenticationuiprotect get-meta-info- Get metadata informationuiprotect generate-sample-data- Generate sample data for testinguiprotect profile-ws- Profile WebSocket performanceuiprotect decode-ws-msg- Decode WebSocket messages
Device management commands:
uiprotect nvr- NVR information and settingsuiprotect events- Event management and exportuiprotect cameras- Camera managementuiprotect lights- Light device managementuiprotect sensors- Sensor managementuiprotect viewers- Viewer managementuiprotect liveviews- Live view configurationuiprotect chimes- Chime managementuiprotect doorlocks- Door lock managementuiprotect aiports- AI port management
For more details on any command, use uiprotect <command> --help.
Python
UniFi Protect itself is 100% async, so as such this library is primarily designed to be used in an async context.
The main interface for the library is the uiprotect.ProtectApiClient:
from uiprotect import ProtectApiClient
# Initialize with username/password
protect = ProtectApiClient(host, port, username, password, verify_ssl=True)
# Or with API key (required for public API operations)
protect = ProtectApiClient(host, port, username, password, api_key=api_key, verify_ssl=True)
await protect.update() # this will initialize the protect .bootstrap and open a Websocket connection for updates
# get names of your cameras
for camera in protect.bootstrap.cameras.values():
print(camera.name)
# subscribe to Websocket for updates to UFP
def callback(msg: WSSubscriptionMessage):
# do stuff
unsub = protect.subscribe_websocket(callback)
# remove subscription
unsub()
TODO / Planned / Not Implemented
Switching from Protect Private API to the New Public API
Generally any feature missing from the library is planned to be done eventually / nice to have with the following exceptions
UniFi OS Features
Anything that is strictly a UniFi OS feature. If it is ever done, it will be in a separate library that interacts with this one. Examples include:
- Managing RAID and disks
- Creating and managing users
Remote Access / Ubiquiti Cloud Features
Some features that require an Ubiquiti Account or "Remote Access" to be enabled are currently not implemented. Examples include:
- Stream sharing
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file uiprotect-7.33.0.tar.gz.
File metadata
- Download URL: uiprotect-7.33.0.tar.gz
- Upload date:
- Size: 120.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2139171379741783c941b8894a7c854d4efa990f093f0e06cbc57fda497aa738
|
|
| MD5 |
7af3f164eacff2dfa1f4b989800697b9
|
|
| BLAKE2b-256 |
08cd5d6aa51f0a5bf9f6b55ed6dcd7b12f94f645ec3d2a8f55ea1f86152ef0fa
|
Provenance
The following attestation bundles were made for uiprotect-7.33.0.tar.gz:
Publisher:
ci.yml on uilibs/uiprotect
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
uiprotect-7.33.0.tar.gz -
Subject digest:
2139171379741783c941b8894a7c854d4efa990f093f0e06cbc57fda497aa738 - Sigstore transparency entry: 731994474
- Sigstore integration time:
-
Permalink:
uilibs/uiprotect@a4e2013124dde43c4aea1975362e01c28013f8f2 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/uilibs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@a4e2013124dde43c4aea1975362e01c28013f8f2 -
Trigger Event:
push
-
Statement type:
File details
Details for the file uiprotect-7.33.0-py3-none-any.whl.
File metadata
- Download URL: uiprotect-7.33.0-py3-none-any.whl
- Upload date:
- Size: 133.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee0b89ba7560e8f9b15cd5418cb68c922c9df69b91db926e17eea7eec00dc82d
|
|
| MD5 |
4eab21f0bc0e25f9e8eb09b2bddd0d7b
|
|
| BLAKE2b-256 |
e6ba9e99a67c8a3e0820a8f9edc911748432b7eb65f0a776adff0465dca8fd60
|
Provenance
The following attestation bundles were made for uiprotect-7.33.0-py3-none-any.whl:
Publisher:
ci.yml on uilibs/uiprotect
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
uiprotect-7.33.0-py3-none-any.whl -
Subject digest:
ee0b89ba7560e8f9b15cd5418cb68c922c9df69b91db926e17eea7eec00dc82d - Sigstore transparency entry: 731994475
- Sigstore integration time:
-
Permalink:
uilibs/uiprotect@a4e2013124dde43c4aea1975362e01c28013f8f2 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/uilibs
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@a4e2013124dde43c4aea1975362e01c28013f8f2 -
Trigger Event:
push
-
Statement type: