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 only known to work on controllers with OS 3.0 or newer.

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

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-0.1.0a1.tar.gz (8.9 kB view details)

Uploaded Source

Built Distribution

pyControl4-0.1.0a1-py3-none-any.whl (13.9 kB view details)

Uploaded Python 3

File details

Details for the file pyControl4-0.1.0a1.tar.gz.

File metadata

  • Download URL: pyControl4-0.1.0a1.tar.gz
  • Upload date:
  • Size: 8.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.5

File hashes

Hashes for pyControl4-0.1.0a1.tar.gz
Algorithm Hash digest
SHA256 6c18e1d2b6d1efcbcffbb4f98700304bd375a5a94f835ca28874409a0797a0b5
MD5 2a65983fae50b554b8fb48a9e6d08991
BLAKE2b-256 d78a4579d1598b19f9794d1c657f5e7a2f1bdfae543d8189eee39440d9bd9a88

See more details on using hashes here.

Provenance

File details

Details for the file pyControl4-0.1.0a1-py3-none-any.whl.

File metadata

  • Download URL: pyControl4-0.1.0a1-py3-none-any.whl
  • Upload date:
  • Size: 13.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.5

File hashes

Hashes for pyControl4-0.1.0a1-py3-none-any.whl
Algorithm Hash digest
SHA256 0583ef7a5a4243f983afc1542fc7423e834c168b554fcbb68eb92f4d0c611308
MD5 8668f85a14ecbe093fac074ec1324311
BLAKE2b-256 9231b1d335f25236d2ba6fdc753607dfbc7e4a31d2dd5c131a35cb814b834b9b

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