python-message - A message-oriented programming library for python - Google Project Hosting
A message-oriented programming library for python.
Install
run command
easy_install -U messageSample
- code
import message def hello(name): print 'hello, %s.'%name message.sub('greet', hello) message.pub('greet', 'lai')output hello, lai.User Guide