Richi
Richi

Reputation: 39

Python Choice for Message Bus Between Objects

I need a message bus framework that would allow two Python objects to communicate. What are some of the existing frameworks I could use? I think DBus is overkill at this point (having to involve an external daemon).

Upvotes: 1

Views: 2588

Answers (1)

Richi
Richi

Reputation: 39

I ended up using PyBus. It's a simple messaging bus implemented in about 20 lines of code. It hasn't been updated in a while (and the project site, www.pybus.org, no longer exists), but it does what it needs to do and there aren't any bugs.

Upvotes: 2

Related Questions