Skip to main content

Asynchronous API Library to work with Elmax devices

Project description

Python Elmax API client

Elmax Logo

Asynchronous Python API client for interacting with the Elmax Cloud services, via HTTP apis.

Release Build Status Testing Status Documentation

Installation

Use the package manager pip to install Python Elmax API client:

$ pip3 install elmax-api --user

or, to install it globally, use the following command

$ pip3 install elmax-api

Usage

import asyncio

from elmax_api.http import Elmax
from elmax_api.model.command import SwitchCommand

MY_USERNAME = 'TYPE_HERE_YOUR_ELMAX_EMAIL'
MY_PASSWORD = 'TYPE_HERE_YOUR_ELMAX_PASSWORD'


async def main():
    # Instantiate the Elmax API client
    client = Elmax(username=MY_USERNAME, password=MY_PASSWORD)

    # List panels for your user
    panels = await client.list_control_panels()
    print(f"Found {len(panels)} panels for user {client.get_authenticated_username()}")

    # Get online panels only
    online_panels = []
    for p in panels:
        status = 'ONLINE' if p.online else 'OFFLINE'
        print(f"+ {p.hash}: {status}")
        if p.online:
            online_panels.append(p)

    if len(online_panels) == 0:
        print("Sorry, no panel to work with. Exiting.")
        exit(0)

    # Fetch status of first panel
    p = online_panels[0]
    panel_status = await client.get_panel_status(control_panel_id=p.hash)

    # Print some zone status
    for z in panel_status.zones:
        print(f"Zone '{z.name}' open: {z.opened}")

    # Toggle some actuator
    actuator = panel_status.actuators[0]
    old_status = actuator.opened
    print(f"Actuator {actuator.name} was {'ON' if old_status else 'OFF'}")
    print(f"Switching {'OFF' if old_status else 'ON'} actuator {actuator.name}")
    await client.execute_command(endpoint_id=actuator.endpoint_id, command=SwitchCommand.TURN_ON if not old_status else SwitchCommand.TURN_OFF)

    print("Waiting a bit...")
    await asyncio.sleep(5)

    print("Reverting back original actuator status")
    await client.execute_command(endpoint_id=actuator.endpoint_id,
                                 command=SwitchCommand.TURN_ON if old_status else SwitchCommand.TURN_OFF)
    print("Done!")

if __name__ == '__main__':
    asyncio.run(main())

Documentation

Full API documentation is available on GitHub pages, here.

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

elmax_api-0.0.5rc3.tar.gz (17.9 kB view details)

Uploaded Source

Built Distribution

elmax_api-0.0.5rc3-py3-none-any.whl (18.7 kB view details)

Uploaded Python 3

File details

Details for the file elmax_api-0.0.5rc3.tar.gz.

File metadata

  • Download URL: elmax_api-0.0.5rc3.tar.gz
  • Upload date:
  • Size: 17.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for elmax_api-0.0.5rc3.tar.gz
Algorithm Hash digest
SHA256 ad3c152702a8e15203ad4382c6b215251891282ae8848e1c913a063c1054943c
MD5 df68f7b7198c111aa31fca0d4b56f881
BLAKE2b-256 1aff0be7a8563c81f2d16be53e76d5b3114a91e274e974c1894a1ef23d32a994

See more details on using hashes here.

File details

Details for the file elmax_api-0.0.5rc3-py3-none-any.whl.

File metadata

File hashes

Hashes for elmax_api-0.0.5rc3-py3-none-any.whl
Algorithm Hash digest
SHA256 446c0fb07afc830133265901d4d796eb469cb8d15ddbafe8ed2e6acf599708ee
MD5 d51f9a8541b505b7889a2265cd519178
BLAKE2b-256 3fe24e3bd0afbc1956982f8c1ad9eaf97f22ac7ea2c8a343d24407ff20a1365b

See more details on using hashes here.

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