pypubsub icon indicating copy to clipboard operation
pypubsub copied to clipboard

A Python publish-subcribe library (moved here from SourceForge.net where I had it for many years)

Results 17 pypubsub issues
Sort by recently updated
recently updated
newest added

This package has type information, but ti doesn't ship a magic `py.typed` marker file. So [MyPy refuses to actually use the type information in the package](https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-library-stubs-or-py-typed-marker) and instead throws an...

Fix a minor typo in documentation.

Given that this is a fairly widely used library (e.g. according to GitHub 744 repos depend on it), it seems like adding CI testing to this repo would be worth...

from pubsub import pub def localCall(func): def real_func(data): print("In real function : {}".format(data)) func(data) return real_func def localUpdate(data): print("In local update") pub.subscribe(localCall(localUpdate), "update") pub.sendMessage("update", data="updateUI") In the example above, the...

Hello Oliver, I would like to use PyPubSub-4.0.3 in my [Gentoo Overlay for Home Assistant](https://github.com/onkelbeh/HomeAssistantRepository), because the pyinsteon component [seems to need it](https://github.com/pyinsteon/pyinsteon/blob/master/setup.py). First, I hope you don't mind. Therefor...

Hi, I am in the process of debugging and application that uses PyPubSub for its messages. I am using the snoop methods (https://pypubsub.readthedocs.io/en/v4.0.3/usage/usage_advanced_debug.html#id4) to see which messages are published. However,...

I have finally gotten the pypubsub package to a status where it could be included in the main Gentoo Linux software repository (making it accessible to all Gentoo users). However,...

I haven't looked too deeply in what would be involved to implement this properly, but before I do I was wondering whether you have any thoughts on this. The main...