A simple event/callback module, for use in any python project. It has no dependencies beyond python itself. It is used in Pyplanes as the method of communication between game objects.
Callback functions are registered with a manager object, along with a set of key/value pairs to listen for. When an event is triggered through the manager which matches all given key/value pairs, the relevant registered function/s are called.
Alternatively, an EventQueue manager can be used, which will queue up triggered events and only action them when it's tick() method is called.
Latest version: 1.1.0
This module is released under the MIT license.
The inspiration behind my writing a simple event module; OcempGUI contains a far more complex event-managing module than this one.