Skip to main content

Python 3 asyncio package for interacting with Control4 systems

Project description

pyControl4

PyPI versionDownloads

CIpdocPyPI Release

An asynchronous library to interact with Control4 systems through their built-in REST API. This is known to work on controllers with OS 2.10.1.544795-res and OS 3.0+.

Auto-generated function documentation can be found at https://lawtancool.github.io/pyControl4

For those who are looking for a pre-built solution for controlling their devices, this library is implemented in the official Home Assistant Control4 integration.

Usage example

from pyControl4.auth import C4Account
from pyControl4.director import C4Director
from pyControl4.light import C4Light
import asyncio
import json

username = ""
password = ""

ip = "192.168.1.25"

"""Authenticate with Control4 account"""
account = C4Account(username, password)
asyncio.run(account.getAccountBearerToken())

"""Get and print controller name"""
accountControllers = asyncio.run(account.getAccountControllers())
print(accountControllers["controllerCommonName"])

"""Get bearer token to communicate with controller locally"""
director_bearer_token = asyncio.run(
    account.getDirectorBearerToken(accountControllers["controllerCommonName"])
)["token"]

"""Create new C4Director instance"""
director = C4Director(ip, director_bearer_token)

"""Print all devices on the controller"""
print(asyncio.run(director.getAllItemInfo()))

"""Create new C4Light instance"""
light = C4Light(director, 253)

"""Ramp light level to 10% over 10000ms"""
asyncio.run(light.rampToLevel(10, 10000))

"""Print state of light"""
print(asyncio.run(light.getState()))

Contributing

Pull requests are welcome! Please lint your Python code with flake8 and format it with Black.

Disclaimer

This library is not affiliated with or endorsed by Control4.

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

pyControl4-1.0.0b5.tar.gz (16.1 kB view details)

Uploaded Source

Built Distribution

pyControl4-1.0.0b5-py3-none-any.whl (18.9 kB view details)

Uploaded Python 3

File details

Details for the file pyControl4-1.0.0b5.tar.gz.

File metadata

  • Download URL: pyControl4-1.0.0b5.tar.gz
  • Upload date:
  • Size: 16.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.1

File hashes

Hashes for pyControl4-1.0.0b5.tar.gz
Algorithm Hash digest
SHA256 69ca88b48f5e676c264fde20e5e86b181a3820e505b7a204e5df33d30f401835
MD5 3b9de6f25629e7c73cba64b8c105baac
BLAKE2b-256 d63792174ead11f40d09ab2eda0dcfc48f61d3eec1d9421a91af437639c98c8a

See more details on using hashes here.

Provenance

File details

Details for the file pyControl4-1.0.0b5-py3-none-any.whl.

File metadata

  • Download URL: pyControl4-1.0.0b5-py3-none-any.whl
  • Upload date:
  • Size: 18.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.1

File hashes

Hashes for pyControl4-1.0.0b5-py3-none-any.whl
Algorithm Hash digest
SHA256 39598c55a52edfbb96959dab291ac6e246f47ae64afbe583d7a9487f3581e1c1
MD5 980978880935455b465e06120420fcb4
BLAKE2b-256 07e3319296561d7c35f01b547bdf436f6faaa99f28253a17ae80e1df17601866

See more details on using hashes here.

Provenance

Supported by

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