Skip to main content

A Python client/wrapper for the UniFi Access API

Reason this release was yanked:

Missing identity manager

Project description

UniFi Access Python Client

A modern, thin API wrapper for the UniFi Access API. This library provides a clean and intuitive interface for managing UniFi Access devices, users, visitors, access policies, and more.

Features

  • Thin API Wrapper: Returns simple dictionaries for flexibility and performance
  • Comprehensive API Coverage: Full support for all UniFi Access API endpoints
  • Async Support: Built-in async client for high-performance applications
  • Easy Configuration: Environment variable support with .env files
  • Webhook Support: Built-in webhook listener and manager

Installation

pip install unifi_access

Quick Start

Configuration

Create a .env file in your project root:

UNIFI_ACCESS_BASE_URL=https://192.168.1.1
UNIFI_ACCESS_API_TOKEN=your-api-token-here
UNIFI_ACCESS_PORT=12445

Basic Setup

from unifi_access.client import UniFiAccessClient

# Initialize with environment variables
client = UniFiAccessClient()

# Or initialize with explicit credentials
client = UniFiAccessClient(
    base_url="https://192.168.1.1",
    api_token="your-api-token",
    port="12445",
    verify_ssl=False
)

Usage Examples

User Management

# Fetch all users - returns a list of dictionaries
users = client.users.fetch_all_users()

if users:
    user = users[0]
    print(f"User: {user.get('first_name')} {user.get('last_name')}")

    # Update user
    client.users.update_user(user['id'], first_name="NewName")
    
    # Assign an NFC card
    client.users.assign_nfc_card_to_user(user['id'], "card_token_123")
    
    # Get access policies
    policies = client.users.fetch_access_policies_assigned_to_user(user['id'])

Visitor Management

# Create a visitor - returns a dictionary
visitor = client.visitors.create_visitor(
    first_name="John",
    last_name="Doe",
    start_time="2026-01-10T09:00:00",
    end_time="2026-01-10T17:00:00",
    email="john.doe@example.com"
)

# Manage visitor
client.visitors.assign_nfc_card(visitor['id'], "card_token_456")
client.visitors.assign_pin_code(visitor['id'], "1234")
client.visitors.update_visitor(visitor['id'], remarks="VIP visitor")
client.visitors.delete_visitor(visitor['id'])

Door Management

# Fetch all doors - returns a list of dictionaries
doors = client.spaces.fetch_all_doors()

if doors:
    door = doors[0]
    print(f"Door: {door.get('name')}")

    # Control doors
    client.spaces.unlock_door(door['id'])
    client.spaces.set_temporary_door_lock_rule(door['id'], "keep_unlock", 3600)  # Keep unlocked for 1 hour

Access Policy Management

# List all access policies
policies = client.access_policies.list_access_policies()

if policies:
    policy = policies[0]
    print(f"Policy: {policy.get('name')}")

    # Manage policies
    client.access_policies.update_access_policy(policy['id'], name="New Policy Name")
    client.access_policies.delete_access_policy(policy['id'])

Async Support

from client import AsyncUniFiAccessClient

# Use async client for high-performance applications
async with AsyncUniFiAccessClient() as client:
    users = await client.users.fetch_all_users()
    for user in users:
        print(f"{user.get('first_name')} {user.get('last_name')}")

API Managers

The client provides the following manager interfaces:

  • client.users: User and user group management
  • client.visitors: Visitor management
  • client.access_policies: Access policy management
  • client.credentials: Credential management (NFC cards, PIN codes)
  • client.spaces: Door and door group management
  • client.devices: Device management
  • client.system_logs: System log retrieval
  • client.https_certificates: HTTPS certificate management
  • client.notifications: Notification management

Requirements

  • Python 3.8+
  • httpx >= 0.23.0

License

MIT License - see LICENSE file for details

Author

Travis Tucker

Links

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

unifi_access-0.1.0.tar.gz (21.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

unifi_access-0.1.0-py3-none-any.whl (26.6 kB view details)

Uploaded Python 3

File details

Details for the file unifi_access-0.1.0.tar.gz.

File metadata

  • Download URL: unifi_access-0.1.0.tar.gz
  • Upload date:
  • Size: 21.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for unifi_access-0.1.0.tar.gz
Algorithm Hash digest
SHA256 ad6a215b8d99fa32e930231535f952716ea4c5d32ce5c52f13668a58de958c86
MD5 51f3bc5e38f7152b02f3609e3cdceeb7
BLAKE2b-256 0b230af081e8d5a40e536c3a61754e96c20a7841322fdea14167120c376a0b22

See more details on using hashes here.

File details

Details for the file unifi_access-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: unifi_access-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 26.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for unifi_access-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d36ad10864f687165b3686307f6f9449760f0e5f7bb1d5a524c1ce4498abc811
MD5 79314fcd77e47c9ac77914141c858a3f
BLAKE2b-256 69db41783c646e9999b9ac54f4b5214702860de127b47f67920e59c4af6b27ef

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page