diff --git a/python/test.py b/python/test.py index ede00810..67252d5f 100644 --- a/python/test.py +++ b/python/test.py @@ -12,4 +12,9 @@ async def main(): await b.protocols.update() print(b.protocols) + for name, protocol in b.protocols.data.items(): + print(f"{name}: {protocol.channels}") + for name, channel in protocol.channels.items(): + print(f" {name}: {channel.route_change_stats}") + asyncio.run(main())