pymitter
pymitter copied to clipboard
Python port of the extended Node.js EventEmitter 2 approach providing namespaces, wildcards and TTL.
Results
2
pymitter issues
Sort by
recently updated
recently updated
newest added
Hello! I'd like to use pymitter with async callable classes, like this. ```python class EventHandler: def __init__(self, dep1, dep2): # Injected dependencies. self.dep1 = dep1 self.dep2 = dep2 async def...
Hey! I'm using pymitter in a couple of projects and I'm really missing the type hints. So this is my attempt to fix this problem. What I did: 1. I...