-
After a lot of digging around I have discovered that getting a dtls coap client working on windows is pretty much impossible with the current libraries available. After some more searching I have disc…
-
Hi @chrysn
I am using aiocoap and need the ability to configure the source port of outgoing requests.
Is it possible?
Thank you
-
Hello! Has anyone successfully used aiocoap with Micropython? It seems feasible in theory but I could imagine there could be gotchas with asyncio, DTLS, etc.
-
Python version: 3.9.6 (default, Feb 3 2024, 15:58:27)
[Clang 15.0.0 (clang-1500.3.9.4)]
aiocoap version: 0.4.7
Modules missing for subsystems:
dtls: missing DTLSSocket
oscore: missing c…
-
I'm using `aiocoap` in a test setup where I would like to create a server context bound to a random port. The device I'm testing should then send requests to that server, but how do I get the server p…
-
When running the CoAP client example, adding a token to the request doesn't seem to influence the actual token used when sending the message (I captured it using Wireshark). After some digging I found…
-
We would like to use CoAP over WS.
Is there a simple example availabe showing how the WS-client opens a websocket connection and then the WS-server side acts as
CoAP client and sends a CoAP request …
-
As gbulb is abandoned, https://github.com/jhenstridge/asyncio-glib/ seems to be the most direct successor.
This will not actually require code changes to aiocoap itself, but to examples, documentat…
-
Upstream support for Python 3.7 expires in June 2023, which means that around that date (possibly even end of 2022), libraries might start dropping support for that version. (Concrete point: For aioco…
-
I'm trying to understand what is supposed to happen during an observer cancellation.
Let's say I have the following code:
```
async def make_observer(self, key, callback):
message = ai…