buz 2.15.10rc6__py3-none-any.whl → 2.15.12__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.
Files changed (32) hide show
  1. buz/command/asynchronous/base_command_handler.py +13 -6
  2. buz/command/asynchronous/command_handler.py +8 -5
  3. buz/command/synchronous/base_command_handler.py +14 -6
  4. buz/command/synchronous/command_handler.py +7 -5
  5. buz/event/infrastructure/buz_kafka/kafka_event_async_subscriber_executor.py +20 -3
  6. buz/event/infrastructure/buz_kafka/kafka_event_sync_subscriber_executor.py +20 -5
  7. buz/event/infrastructure/buz_kafka/models/kafka_delivery_context.py +10 -0
  8. buz/event/infrastructure/kombu/kombu_consumer.py +10 -2
  9. buz/event/infrastructure/kombu/models/kombu_delivery_context.py +7 -0
  10. buz/event/infrastructure/models/__init__.py +0 -0
  11. buz/event/infrastructure/models/delivery_context.py +6 -0
  12. buz/event/infrastructure/models/execution_context.py +8 -0
  13. buz/event/middleware/async_consume_middleware.py +9 -2
  14. buz/event/middleware/async_consume_middleware_chain_resolver.py +16 -5
  15. buz/event/middleware/base_async_consume_middleware.py +23 -6
  16. buz/event/middleware/base_consume_middleware.py +9 -6
  17. buz/event/middleware/consume_middleware.py +5 -2
  18. buz/event/middleware/consume_middleware_chain_resolver.py +13 -4
  19. buz/event/sync/models/__init__.py +0 -0
  20. buz/event/sync/models/sync_delivery_context.py +7 -0
  21. buz/event/sync/sync_event_bus.py +10 -2
  22. buz/handler.py +6 -3
  23. buz/kafka/domain/models/kafka_poll_record.py +1 -0
  24. buz/query/asynchronous/base_query_handler.py +15 -6
  25. buz/query/asynchronous/query_handler.py +8 -4
  26. buz/query/synchronous/base_query_handler.py +15 -6
  27. buz/query/synchronous/query_handler.py +8 -5
  28. {buz-2.15.10rc6.dist-info → buz-2.15.12.dist-info}/LICENSE +1 -1
  29. buz-2.15.12.dist-info/METADATA +438 -0
  30. {buz-2.15.10rc6.dist-info → buz-2.15.12.dist-info}/RECORD +31 -24
  31. buz-2.15.10rc6.dist-info/METADATA +0 -41
  32. {buz-2.15.10rc6.dist-info → buz-2.15.12.dist-info}/WHEEL +0 -0
@@ -1,41 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: buz
3
- Version: 2.15.10rc6
4
- Summary: Buz is a set of light, simple and extensible implementations of event, command and query buses.
5
- License: MIT
6
- Author: Luis Pintado Lozano
7
- Author-email: luis.pintado.lozano@gmail.com
8
- Maintainer: Fever - Platform Squad
9
- Maintainer-email: platform@feverup.com
10
- Requires-Python: >=3.9
11
- Classifier: Intended Audience :: Developers
12
- Classifier: License :: OSI Approved :: MIT License
13
- Classifier: Operating System :: OS Independent
14
- Classifier: Programming Language :: Python :: 3
15
- Classifier: Programming Language :: Python :: 3.9
16
- Classifier: Programming Language :: Python :: 3.10
17
- Classifier: Programming Language :: Python :: 3.11
18
- Classifier: Programming Language :: Python :: 3.12
19
- Classifier: Programming Language :: Python :: 3.8
20
- Classifier: Topic :: Software Development :: Libraries
21
- Classifier: Typing :: Typed
22
- Provides-Extra: aiokafka
23
- Provides-Extra: kombu
24
- Provides-Extra: pypendency
25
- Requires-Dist: aiohttp (>=3.12.15,<4.0.0)
26
- Requires-Dist: aiokafka[lz4] (==0.12.0) ; extra == "aiokafka"
27
- Requires-Dist: asgiref (>=3.8.1,<4.0.0) ; extra == "aiokafka"
28
- Requires-Dist: cachetools (>=5.5.0,<6.0.0)
29
- Requires-Dist: dacite (>=1.8.1,<2.0.0)
30
- Requires-Dist: kafka-python-ng (==2.2.3)
31
- Requires-Dist: kombu (>=4.6.11) ; extra == "kombu"
32
- Requires-Dist: orjson (>=3.10.1,<4.0.0)
33
- Requires-Dist: pympler (==1.0.1)
34
- Requires-Dist: pypendency (>=0,<1) ; extra == "pypendency"
35
- Requires-Dist: uuid-utils (>=0.9.0,<0.10.0)
36
- Description-Content-Type: text/markdown
37
-
38
- # Buz
39
-
40
- Buz is a set of light, simple and extensible implementations of event, command and query buses.
41
-