Programming Languages: Python
License: BSD License
browse code,
statistics,
last commit on 2012-01-07
svn co https://pubsub.svn.sourceforge.net/svnroot/pubsub pubsub
Contribution from Kurt Mueller: On http://pubsub.sourceforge.net/apidocs/modules_setup.html under Arg1 Messaging Protocol: ------------------------------------------------------- from pubsub import setuparg1 from pubsub import pub def listener(msg): assert msg.data['hi'] == 123 data = dict('hi':123, ...) pub.sendMessage('someTopic', data...
2012-04-25 19:25:18 PDT by schoenborno
Contribution from Kurt Mueller: On http://pubsub.sourceforge.net/apidocs/modules_setup.html under Kwargs Messaging Protocol: --------------------------------------------------------------- from pubsub import pub def listener(hi): assert msg == 123 pub.subscribe(listener, 'someTopic') def listener2(hi, foo): assert hi == 123; assert foo = 'bar' pub.subscribe(listener2...
2012-04-25 19:24:15 PDT by schoenborno
schoenborno committed revision 288 to the pypubsub SVN repository, changing 6 files.
2012-01-07 01:12:12 PST by schoenborno
schoenborno committed revision 287 to the pypubsub SVN repository, changing 2 files.
2011-12-17 23:15:13 PST by schoenborno
Checked that works on Ubuntu with Py 2.7 and setuptools 0.6.15.
2011-12-17 23:00:47 PST by schoenborno
Changes made in 3.1.2 package and pypi page should allow this to work fine now. Could you please confirm.
2011-12-17 22:07:25 PST by schoenborno
Use latest 3.1.2; update to pypi page means "easy_install pypubsub" works fine.
2011-12-17 22:06:03 PST by schoenborno
Use latest 3.1.2; update to pypi page means "easy_install pypubsub" works fine.
2011-12-17 22:06:03 PST by schoenborno
Use latest 3.1.2; update to pypi page means "easy_install pypubsub" works fine.
2011-12-17 22:06:02 PST by schoenborno
schoenborno made 1 file-release changes.
2011-12-17 20:20:03 PST by schoenborno