From ef105d878b323a36c400072e83baae1ab4e8683c Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Thu, 13 Jul 2023 08:52:42 +0100 Subject: [PATCH] fix logging example --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c7b991e..e97c2ce 100644 --- a/README.md +++ b/README.md @@ -517,11 +517,12 @@ It's possible to see the messages sent by the interface's setters and getters, m example: ```python -import voicemeeterlib +import vban_cmd logging.basicConfig(level=logging.DEBUG) -with voicemeeterlib.api("banana") as vm: +opts = {"ip": "ip.local", "port": 6980, "streamname": "Command1"} +with vban_cmd.api('banana', **opts) as vban: ... ```