You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

amqtt

Package Overview
Dependencies
Maintainers
2
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

amqtt - pypi Package Compare versions

Comparing version
0.10.0a4
to
0.10.0
+24
amqtt/config.yml
{
"listeners": {
"default": {
"type": "tcp",
"bind": "0.0.0.0:1883",
},
},
"sys_interval": 10,
"auth": {
"allow-anonymous": True,
"plugins": ["auth_anonymous"],
},
"topic-check": {
"enabled": True,
"plugins": ["topic_acl"],
"acl": {
# username: [list of allowed topics]
"anonymous": [
"#"
],
},
},
}
+1
-1
# See the file license.txt for copying permission.
__version__ = "0.10.0-alpha.4"
__version__ = "0.10.0"

@@ -197,9 +197,9 @@ # Copyright (c) 2015 Nicolas JOUANIN

async def _call_coro(plugin, coro_name, *args, **kwargs):
try:
coro = getattr(plugin.object, coro_name, None)(*args, **kwargs)
return await coro
except TypeError:
if not hasattr(plugin.object, coro_name):
# Plugin doesn't implement coro_name
return None
coro = getattr(plugin.object, coro_name)(*args, **kwargs)
return await coro
async def map_plugin_coro(self, coro_name, *args, **kwargs):

@@ -206,0 +206,0 @@ """

Metadata-Version: 2.1
Name: amqtt
Version: 0.10.0a4
Version: 0.10.0
Summary: MQTT client/broker using Python asyncio

@@ -5,0 +5,0 @@ Home-page: https://github.com/Yakifo/amqtt

[tool.poetry]
name = "amqtt"
version = "0.10.0-alpha.4"
version = "0.10.0"
description = "MQTT client/broker using Python asyncio"

@@ -5,0 +5,0 @@ authors = ["aMQTT Contributers"]

@@ -63,3 +63,3 @@ # -*- coding: utf-8 -*-

'name': 'amqtt',
'version': '0.10.0a4',
'version': '0.10.0',
'description': 'MQTT client/broker using Python asyncio',

@@ -66,0 +66,0 @@ 'long_description': None,