Closed PythooonUser closed 6 years ago
As requested by #56 this PR adds decorator support for event handlers.
Usage:
>>> @observer.on_event(ChatEventType.TWITCHCHATJOIN) >>> def handle_join_event(event): >>> print(event.nickname + " joined")
Of course I need to add proper testing.
Okay. I will wait on my review until the tests are in.
@joshuaskelly I added a test case. Please review and decide if this is sufficient.
🎉
Summary
As requested by #56 this PR adds decorator support for event handlers.
Usage: