busline 0.5.1__py3-none-any.whl → 0.5.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -44,12 +44,15 @@ class TopicSubscriber(Subscriber, ABC):
44
44
  self.handlers[topic] = handler
45
45
 
46
46
  @override
47
- async def _on_unsubscribed(self, topic: str | None, **kwargs):
47
+ async def _on_unsubscribed(self, topic: Optional[str], **kwargs):
48
48
 
49
49
  if topic is None:
50
50
  self.handlers = {}
51
51
  else:
52
- del self.handlers[topic]
52
+ if topic in self.handlers:
53
+ del self.handlers[topic]
54
+ else:
55
+ logging.warning(f"{self}: unsubscribed from unknown topic: {topic}")
53
56
 
54
57
  def __get_handlers_of_topic(self, topic: str) -> List[EventHandler]:
55
58
 
@@ -7,6 +7,9 @@ from busline.local.eventbus.eventbus import EventBus
7
7
  from busline.exceptions import EventBusClientNotConnected
8
8
 
9
9
 
10
+ ALL_TOPIC_WILDCARD = "*"
11
+
12
+
10
13
  @dataclass
11
14
  class LocalEventBusSubscriber(TopicSubscriber):
12
15
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: busline
3
- Version: 0.5.1
3
+ Version: 0.5.2
4
4
  Summary: Agnostic eventbus for Python
5
5
  Author-email: Nicola Ricciardi <ricciardincl@gmail.com>
6
6
  Project-URL: Homepage, https://github.com/orbitalis-framework/py-busline
@@ -8,7 +8,7 @@ Project-URL: Issues, https://github.com/orbitalis-framework/py-busline/issues
8
8
  Classifier: Programming Language :: Python :: 3
9
9
  Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
10
10
  Classifier: Operating System :: OS Independent
11
- Requires-Python: >=3.8
11
+ Requires-Python: >=3.12
12
12
  Description-Content-Type: text/markdown
13
13
  License-File: LICENSE
14
14
  Dynamic: license-file
@@ -9,7 +9,7 @@ busline/client/publisher/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
9
9
  busline/client/publisher/publisher.py,sha256=FUht2eeV25lrQzgHxB0OjijEGUiTSan8AEjb-IqYjX8,1521
10
10
  busline/client/subscriber/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
11
  busline/client/subscriber/subscriber.py,sha256=QHMEi6PbzoiY6SywVGPjOBUL86PD3OYRVH6fCTeZPfw,2713
12
- busline/client/subscriber/topic_subscriber.py,sha256=uUdgmwkGSn0A1aM81CxuitmKLxNL3QMxAlO0AkD1xE4,3157
12
+ busline/client/subscriber/topic_subscriber.py,sha256=sxhISxKqIH6lvdk_MnHBjHAcwKSwJO65KaiLD4SdNWE,3306
13
13
  busline/client/subscriber/event_handler/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
14
  busline/client/subscriber/event_handler/closure_event_handler.py,sha256=YvgHEDgsWkW5shZ4r11pPSXnPotcXcr56xQQJDnkmxg,497
15
15
  busline/client/subscriber/event_handler/event_handler.py,sha256=az-zyJpZykowWN9M0x7PzO1qsUUOgVcEqi15crX8txc,296
@@ -28,9 +28,9 @@ busline/local/eventbus/local_eventbus.py,sha256=2wK2NMlWXm_9CTYR39y7Z40C8yOQ8RdV
28
28
  busline/local/publisher/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
29
  busline/local/publisher/local_publisher.py,sha256=FngthjSMZyswYK2Ka1LHrTqFkZ6yvGUjn0COGEzI0hI,1076
30
30
  busline/local/subscriber/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
- busline/local/subscriber/local_subscriber.py,sha256=tWQ5YCRH78wiFlwO6I_dSAvCyhkQLox0GhoeVPKWxro,1237
32
- busline-0.5.1.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
33
- busline-0.5.1.dist-info/METADATA,sha256=3TUbFdlKE9649gtM2z0b9Ck_vxXMnjQHylagZD4GT90,5922
34
- busline-0.5.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
35
- busline-0.5.1.dist-info/top_level.txt,sha256=bZY0fK2wgNEI5igR7DBF3CyXHGkzujGvmoqdSzG6Zp0,8
36
- busline-0.5.1.dist-info/RECORD,,
31
+ busline/local/subscriber/local_subscriber.py,sha256=GIHlumOlMtTHw_TGof24JcAz6rT3VE7ywhLkVrM2TOM,1264
32
+ busline-0.5.2.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
33
+ busline-0.5.2.dist-info/METADATA,sha256=4M-mXVToBVGPB3uBUYt4BpVyEYYTOeEHIT_MUi9cB0k,5923
34
+ busline-0.5.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
35
+ busline-0.5.2.dist-info/top_level.txt,sha256=bZY0fK2wgNEI5igR7DBF3CyXHGkzujGvmoqdSzG6Zp0,8
36
+ busline-0.5.2.dist-info/RECORD,,