CVSROOT:        /cvs
Module name:    ports
Changes by:     [email protected]  2025/07/10 11:41:38

Log message:
    Import net/py-aiomqtt, OK sthen@
    
    aiomqtt is an idiomatic asyncio MQTT client for Python. It supports MQTT
    versions 3.1, 3.1.1 and 5.0 via paho-mqtt, handles disconnection gracefully,
    is fully type-hinted, and client code is simple (callbacks are not needed):
    
    Publish:
    
    async with Client("test.mosquitto.org") as client:
    await client.publish("temperature/outside", payload=28.4)
    
    Subscribe:
    
    async with Client("test.mosquitto.org") as client:
    await client.subscribe("temperature/#")
    async for message in client.messages:
    print(message.payload)
    
    Status:
    
    Vendor Tag: caspar
    Release Tags:       caspar_20250710
    
    N ports/net/py-aiomqtt/Makefile
    N ports/net/py-aiomqtt/distinfo
    N ports/net/py-aiomqtt/pkg/PLIST
    N ports/net/py-aiomqtt/pkg/DESCR
    
    No conflicts created by this import

Reply via email to