Skip to content

Instantly share code, notes, and snippets.

@seren
seren / dispatcher.py
Created February 11, 2017 22:49
Simple event dispatcher in python. Inspired by Symfony/EventDispatcher component.
from collections import OrderedDict
class Event(object):
def __init__(self):
self.__name = None
def setName(self, name):
self.__name = name