module documentation

CoAP Server binding to the ACME CSE.

Class ACMECoAPHandler ACME CoAP request handler.
Class ACMECoAPRequestLayer Implementation of an own request layer handler for the coapthon CoAP framework.
Class ACMECoAPServer ACME CoAP Server.
Class CoAPServer CoAPServer Server implementation.
Function dissectOptions Dissect the options of a CoAP request in a dictionary.
Function optionsToDict Convert CoAP options to a dictionary.
Function toCoAPContentType Return the CoAP content header for an enum value.
def dissectOptions(options: list[CoapthonOption]) -> MultiDict:

Dissect the options of a CoAP request in a dictionary.

Parameters
options:list[CoapthonOption]The options of a CoAP request.
Returns
MultiDictA multi-dictionary with the options. The key is the option number, the value is a set of option values for that number.
def optionsToDict(options: list[CoapthonOption]) -> MultiDict:

Convert CoAP options to a dictionary.

Parameters
options:list[CoapthonOption]The options to convert.
Returns
MultiDictA multi-dictionary with the options. The key is the option number, the value is a set of option values for that number
def toCoAPContentType(ct: ContentSerializationType) -> int:

Return the CoAP content header for an enum value.

Returns
intThe number for the CoAP content type.