Skip to main content

A port of node.js's primus/eventemitter3 to python. Based on jfhbrook/pyee.

Project description

pyee2

Code style: black

pyee2 is the primus/eventemitter3 EventEmitter implementation ported to python based on jfhbrook/pyee.

pyee2:

  • Does not raise or emit an error event when your listener raises an error and no one is listening for the "error" event. That is to say pyee2 catches all errors raised by event listeners and only emits an error if there are listeners for the "error" event.
  • Does not not emit an event when a new listener is added or removed.
  • Only supports function or functions that return awaitables (coroutine, future, task) as event listeners. The test for awaitableness is done via "inspect.isawaitable"
from pyee2 import EventEmitter

ee = EventEmitter()

@ee.on("event")
def handler(arg, data=3):
    print(f"handler called arg={arg} data={data}")

ee.emit("event", 1, data=2)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyee2-1.0.0.tar.gz (3.6 kB view hashes)

Uploaded Source

Built Distribution

pyee2-1.0.0-py3-none-any.whl (3.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page