python-message - A message-oriented programming library for python - Google Project Hosting

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 message

Sample

  • code
  • import message
    def hello(name):
      print 'hello, %s.'%name
    message.sub('greet', hello)
    message.pub('greet', 'lai')
  • output
  • hello, lai.

User Guide

你可能感兴趣的:(programming)