A message-oriented programming library for python.
run command
easy_install -U message
import message def hello(name): print 'hello, %s.'%name message.sub('greet', hello) message.pub('greet', 'lai')
hello, lai.