weenspace-queue 0.1.3__tar.gz → 0.1.4__tar.gz

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 (21) hide show
  1. {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/PKG-INFO +3 -3
  2. {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/README.md +2 -2
  3. {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/pyproject.toml +1 -1
  4. {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/LICENSE +0 -0
  5. {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/weenspace_queue/__init__.py +0 -0
  6. {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/weenspace_queue/asyncio/__init__.py +0 -0
  7. {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/weenspace_queue/asyncio/aws_async.py +0 -0
  8. {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/weenspace_queue/asyncio/publisher.py +0 -0
  9. {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/weenspace_queue/asyncio/rabbitmq_async.py +0 -0
  10. {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/weenspace_queue/base.py +0 -0
  11. {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/weenspace_queue/connection.py +0 -0
  12. {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/weenspace_queue/constants.py +0 -0
  13. {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/weenspace_queue/entities.py +0 -0
  14. {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/weenspace_queue/exceptions.py +0 -0
  15. {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/weenspace_queue/providers/__init__.py +0 -0
  16. {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/weenspace_queue/providers/aws.py +0 -0
  17. {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/weenspace_queue/providers/rabbitmq.py +0 -0
  18. {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/weenspace_queue/qpid/__init__.py +0 -0
  19. {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/weenspace_queue/qpid/proton/__init__.py +0 -0
  20. {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/weenspace_queue/ssl_configuration.py +0 -0
  21. {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/weenspace_queue/utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: weenspace-queue
3
- Version: 0.1.3
3
+ Version: 0.1.4
4
4
  Summary: WeenSpace queue client for RabbitMQ and AWS SQS, supporting both synchronous and asynchronous operations.
5
5
  License: MIT
6
6
  License-File: LICENSE
@@ -73,7 +73,7 @@ Install AWS support with `pip install "weenspace-queue[aws]"`.
73
73
 
74
74
  ### AWS SQS and SNS
75
75
 
76
- See [examples/aws/sqs.py](./examples/aws/sqs.py) for direct SQS publishing and [examples/aws/sns.py](./examples/aws/sns.py) for an SNS-to-SQS workflow with routing-key filters.
76
+ See [examples/aws/sqs.py](https://github.com/WeenSpace/weenspace-queue/blob/main/examples/aws/sqs.py) for direct SQS publishing and [examples/aws/sns.py](https://github.com/WeenSpace/weenspace-queue/blob/main/examples/aws/sns.py) for an SNS-to-SQS workflow with routing-key filters.
77
77
 
78
78
  ### Async Support
79
79
 
@@ -115,7 +115,7 @@ client = QueueClient(
115
115
 
116
116
  ## 📚 Documentation
117
117
 
118
- See [examples](./examples) folder for more detailed usage examples.
118
+ See the [examples folder](https://github.com/WeenSpace/weenspace-queue/tree/main/examples) for more detailed usage examples.
119
119
 
120
120
  ## 🔄 Migration from python-rabbitmq
121
121
 
@@ -45,7 +45,7 @@ Install AWS support with `pip install "weenspace-queue[aws]"`.
45
45
 
46
46
  ### AWS SQS and SNS
47
47
 
48
- See [examples/aws/sqs.py](./examples/aws/sqs.py) for direct SQS publishing and [examples/aws/sns.py](./examples/aws/sns.py) for an SNS-to-SQS workflow with routing-key filters.
48
+ See [examples/aws/sqs.py](https://github.com/WeenSpace/weenspace-queue/blob/main/examples/aws/sqs.py) for direct SQS publishing and [examples/aws/sns.py](https://github.com/WeenSpace/weenspace-queue/blob/main/examples/aws/sns.py) for an SNS-to-SQS workflow with routing-key filters.
49
49
 
50
50
  ### Async Support
51
51
 
@@ -87,7 +87,7 @@ client = QueueClient(
87
87
 
88
88
  ## 📚 Documentation
89
89
 
90
- See [examples](./examples) folder for more detailed usage examples.
90
+ See the [examples folder](https://github.com/WeenSpace/weenspace-queue/tree/main/examples) for more detailed usage examples.
91
91
 
92
92
  ## 🔄 Migration from python-rabbitmq
93
93
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "weenspace-queue"
3
- version = "0.1.3"
3
+ version = "0.1.4"
4
4
  description = "WeenSpace queue client for RabbitMQ and AWS SQS, supporting both synchronous and asynchronous operations."
5
5
  authors = ["WeenSpace <weenspace@gmail.com>"]
6
6
  license = "MIT"
File without changes