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.
- {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/PKG-INFO +3 -3
- {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/README.md +2 -2
- {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/pyproject.toml +1 -1
- {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/LICENSE +0 -0
- {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/weenspace_queue/__init__.py +0 -0
- {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/weenspace_queue/asyncio/__init__.py +0 -0
- {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/weenspace_queue/asyncio/aws_async.py +0 -0
- {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/weenspace_queue/asyncio/publisher.py +0 -0
- {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/weenspace_queue/asyncio/rabbitmq_async.py +0 -0
- {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/weenspace_queue/base.py +0 -0
- {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/weenspace_queue/connection.py +0 -0
- {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/weenspace_queue/constants.py +0 -0
- {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/weenspace_queue/entities.py +0 -0
- {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/weenspace_queue/exceptions.py +0 -0
- {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/weenspace_queue/providers/__init__.py +0 -0
- {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/weenspace_queue/providers/aws.py +0 -0
- {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/weenspace_queue/providers/rabbitmq.py +0 -0
- {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/weenspace_queue/qpid/__init__.py +0 -0
- {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/weenspace_queue/qpid/proton/__init__.py +0 -0
- {weenspace_queue-0.1.3 → weenspace_queue-0.1.4}/weenspace_queue/ssl_configuration.py +0 -0
- {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
|
+
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](
|
|
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](
|
|
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](
|
|
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](
|
|
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
|
+
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|