Skip to main content

Python module to communicate over the CoAP protocol

Project description

libcoapy

libcoapy project enables communication over the CoAP protocol (RFC 7252). The llapi module provides ctypes-based wrappers for the libcoap C library. The libcoapy module uses llapi to provide a high-level class interface to the libcoap functions.

Dependencies:

  • libcoap
  • ifaddr (optional, to query all IPs of an interface)
  • netifaces (optional, to query all IPs of an interface)

Status

This project is still in early development. Several functions of the libcoap library are not yet available and existing high-level libcoapy APIs might change in the future.

Portability

libcoapy is a pure python module and the underlying libcoap supports several platforms like Linux, Windows, MacOS and Android. However, libcoap (and hence libcoapy) does not support all features on all platforms and with all possible SSL/TLS libraries.

If you want to use libcoapy with asyncio on platforms without epoll, like Windows, it might be necessary to choose an event loop that supports add_reader(). On Windows you might need to add this to your code before initializing the loop:

if sys.version_info[0] == 3 and sys.version_info[1] >= 8 and sys.platform.startswith('win'):
	asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())

Example: client

from libcoapy import *

if len(sys.argv) < 2:
	uri_str = "coap://localhost"
else:
	uri_str = sys.argv[1]

ctx = CoapContext()

session = ctx.newSession(uri_str)

def rx_cb(session, tx_msg, rx_msg, mid):
	print(rx_msg.payload)
	session.ctx.stop_loop()

session.sendMessage(path=".well-known/core", response_callback=rx_cb)

ctx.loop()

Example: server

from libcoapy import *

def echo_handler(resource, session, request, query, response):
	response.payload = request.payload

def time_handler(resource, session, request, query, response):
	import datetime
	now = datetime.datetime.now()
	response.payload = str(now)

ctx = CoapContext()
ctx.addEndpoint("coap://[::]")

time_rs = CoapResource(ctx, "time")
time_rs.addHandler(time_handler)
ctx.addResource(time_rs)

echo_rs = CoapResource(ctx, "echo")
echo_rs.addHandler(echo_handler)
ctx.addResource(echo_rs)

ctx.loop()

More examples can be found in the examples directory.

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

libcoapy-2024.7.19.tar.gz (22.2 kB view details)

Uploaded Source

Built Distribution

libcoapy-2024.7.19-py3-none-any.whl (21.9 kB view details)

Uploaded Python 3

File details

Details for the file libcoapy-2024.7.19.tar.gz.

File metadata

  • Download URL: libcoapy-2024.7.19.tar.gz
  • Upload date:
  • Size: 22.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.3

File hashes

Hashes for libcoapy-2024.7.19.tar.gz
Algorithm Hash digest
SHA256 77a6131eba564f0417d11a059c86421f54d9ecac2527ec6f6ad757fe0e988411
MD5 75eec9481e0c27c3b4c3cba2888742ef
BLAKE2b-256 da1317ebb21812be61a937d7a66c5cd34c8bf537b8938520eda9db0892f717d2

See more details on using hashes here.

File details

Details for the file libcoapy-2024.7.19-py3-none-any.whl.

File metadata

  • Download URL: libcoapy-2024.7.19-py3-none-any.whl
  • Upload date:
  • Size: 21.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.3

File hashes

Hashes for libcoapy-2024.7.19-py3-none-any.whl
Algorithm Hash digest
SHA256 e733a87c88a2025099461a6068dced3af3624c21c01dc170b778b5c086adcb53
MD5 82788b0ad546e61ac43999a3edefcdc2
BLAKE2b-256 170256282634b7f9fba5916937fb9281922cfda64d1faa7818aa9048403a4dd4

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