observer example added

This commit is contained in:
onyx-and-iris
2022-06-26 02:07:37 +01:00
parent aa15aed615
commit 12a8f7d603
2 changed files with 36 additions and 7 deletions

View File

@@ -0,0 +1,29 @@
import voicemeeterlib
class Observer:
def __init__(self, vm):
self.vm = vm
def on_update(self, subject):
print(subject)
def main():
with voicemeeterlib.api(kind_id) as vm:
obs = Observer(vm)
vm.subject.add(obs)
try:
while True:
cmd = input("Press Return to exit\n")
if not cmd:
break
except KeyboardInterrupt as e:
SystemExit(e)
if __name__ == "__main__":
kind_id = "banana"
main()