Skip to main content

A python library for communication with IQRF Network

Project description

What is iqrfpy?

iqrfpy is a library that provides a python API for interacting with the IQRF network utilizing the DPA framework (DPA) or IQRF Gateway Daemon (Daemon) JSON API. Communication between a python runtime and the IQRF network is facilitated by transports.

For communication with Daemon, only the MQTT transport is implemented at this time. However, this library provides an abstract transport class, allowing for custom communication implementations.

The library provides classes for serialization of requests and deserialization of responses to message class objects.

Quick start

iqrfpy can be installed using the pip utility:

python3 -m pip install -U iqrfpy

Example use:

from iqrfpy.transports.mqtt_transport import MqttTransport, MqttTransportParams
from iqrfpy.peripherals.coordinator.requests.bonded_devices import BondedDevicesRequest
from iqrfpy.peripherals.coordinator.responses.bonded_devices import BondedDevicesResponse

params = MqttTransportParams(
    host=..., # MQTT broker host
    port=..., # MQTT broker port
    client_id=..., # MQTT client ID
    request_topic=..., # Request topic that Daemon subscribes to
    response_topic=..., # Response topic that Daemon publishes responses to
    qos=1,
    keepalive=25
)
transport = MqttTransport(params=params, auto_init=True)

request = BondedDevicesRequest()
response: BondedDevicesResponse = transport.send_and_receive(request=request, timeout=10)

print(response.bonded)

The library also provides a single import solution for messages:

from iqrfpy.transports.mqtt_transport import MqttTransport, MqttTransportParams
from iqrfpy.messages import CoordinatorBondedDevicesReq, CoordinatorBondedDevicesRsp

params = MqttTransportParams(
    host=..., # MQTT broker host
    port=..., # MQTT broker port
    client_id=..., # MQTT client ID
    request_topic=..., # Request topic that Daemon subscribes to
    response_topic=..., # Response topic that Daemon publishes responses to
    qos=1,
    keepalive=25
)
transport = MqttTransport(params=params, auto_init=True)

request = CoordinatorBondedDevicesReq()
response: CoordinatorBondedDevicesRsp = transport.send_and_receive(request=request, timeout=10)

print(response.bonded)

Documentation

For more information, check out our API reference.

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

iqrfpy-0.1.51.tar.gz (171.1 kB view details)

Uploaded Source

Built Distribution

iqrfpy-0.1.51-py3-none-any.whl (271.0 kB view details)

Uploaded Python 3

File details

Details for the file iqrfpy-0.1.51.tar.gz.

File metadata

  • Download URL: iqrfpy-0.1.51.tar.gz
  • Upload date:
  • Size: 171.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for iqrfpy-0.1.51.tar.gz
Algorithm Hash digest
SHA256 a98b83ed9726b6c22a767ce2ea65bab80dec01f7eeda0fe6c4a818ba4c351517
MD5 41b1ae7312bd8082a7e231919141b399
BLAKE2b-256 9dd053ae5c96659854784c0780561c9d9536fe5eb8d90af6a476cf08fc20cd60

See more details on using hashes here.

File details

Details for the file iqrfpy-0.1.51-py3-none-any.whl.

File metadata

  • Download URL: iqrfpy-0.1.51-py3-none-any.whl
  • Upload date:
  • Size: 271.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for iqrfpy-0.1.51-py3-none-any.whl
Algorithm Hash digest
SHA256 e389ed600a70aac0e6a5bce764dcfc1d0f7b1081be7770b629645e87d0bdb91b
MD5 9c90353a811cf56413d07ade6c5ead62
BLAKE2b-256 85d0831da31e9659e7960b2b8d4721bc31cc032b30ace18a1e60b843723da4b1

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