Skip to main content

HID-IO Python Library

Project description

hidio core Client Python Library

HID-IO Core Client Side Library for Python

Linux Status macOS Status Windows Status

Visit our IRC channel

Getting

pip install hidiocore

Overview

This is a convenience Python library for the HID-IO daemon which handles automatic reconnection if the server goes down for any reason. The library also handles the HID-IO authentication procedure (key negotiation and TLS wrapping).

Usage

import asyncio
import sys

import hidiocore.client

# Optional callbacks
class MyHIDIOClient(hidiocore.client.HIDIOClient):
    async def on_connect(self, cap):
        print("Connected!")
        print("Connected API Call", await cap.alive().a_wait())


    async def on_disconnect(self):
        print("Disconnected!")


async def main():
    client = MyHIDIOClient('Python example.py')
    # Connect the client to the server using a background task
    # This will automatically reconnect
    tasks = [asyncio.gather(*[client.connect(auth=hidiocore.client.HIDIOClient.AUTH_BASIC)], return_exceptions=True)]
    while client.retry_connection_status():
        if client.capability_hidioserver():
            try:
                print("API Call", await asyncio.wait_for(
                    client.capability_hidioserver().alive().a_wait(),
                    timeout=2.0
                ))
                print("API Call", await asyncio.wait_for(
                    client.capability_authenticated().nodes().a_wait(),
                    timeout=2.0
                ))
            except asyncio.TimeoutError:
                print("Alive timeout.")
                continue
        await asyncio.sleep(5)


try:
    loop = asyncio.get_event_loop()
    loop.run_until_complete(main())
except KeyboardInterrupt:
    print("Ctrl+C detected, exiting...")
    sys.exit(1)

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

hidiocore-0.1.0b3.tar.gz (12.8 kB view details)

Uploaded Source

Built Distribution

hidiocore-0.1.0b3-py3-none-any.whl (35.8 kB view details)

Uploaded Python 3

File details

Details for the file hidiocore-0.1.0b3.tar.gz.

File metadata

  • Download URL: hidiocore-0.1.0b3.tar.gz
  • Upload date:
  • Size: 12.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.22.0

File hashes

Hashes for hidiocore-0.1.0b3.tar.gz
Algorithm Hash digest
SHA256 aa5c10899496d28e7633632c575cec0d90b55e87ff7daad2e92443aac73239d5
MD5 2bbe11f6b01aa2a055d64e4fa25b2dfe
BLAKE2b-256 9a85ff61ef3643a112cde75fc77d978d9e697f99ad550a4ea32775a62e34cabb

See more details on using hashes here.

File details

Details for the file hidiocore-0.1.0b3-py3-none-any.whl.

File metadata

  • Download URL: hidiocore-0.1.0b3-py3-none-any.whl
  • Upload date:
  • Size: 35.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.22.0

File hashes

Hashes for hidiocore-0.1.0b3-py3-none-any.whl
Algorithm Hash digest
SHA256 7d0772b548a0a82d569975f31ff26e33c5ba51889a60c85aa3f7b923d4257926
MD5 a5712ddb7448bbe97df990bdaefbfd87
BLAKE2b-256 8da3a0b1ff2a431d2e2dc37079f46baa52871e510b026e8b99014c4f7e817f0d

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