- Notifications
You must be signed in to change notification settings - Fork8
Write Amazon Simple Queue Service (SQS) consumers in Python with simplified interface.
License
NotificationsYou must be signed in to change notification settings
HexmosTech/aws_sqs_consumer_python
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Write Amazon Simple Queue Service (SQS) consumers in Python with simplified interface. Define your logic to process an SQS message. After you're done processing, messages are deleted from the queue.
Checkout the full documentation -https://aws-sqs-consumer-python.readthedocs.io/en/latest/
pip install aws-sqs-consumer
fromaws_sqs_consumerimportConsumer,MessageclassSimpleConsumer(Consumer):defhandle_message(self,message:Message):# Write your logic to handle a single `message`.print("Received message: ",message.Body)consumer=SimpleConsumer(queue_url="https://sqs.eu-west-1.amazonaws.com/12345678901/test_queue",polling_wait_time_ms=5)consumer.start()
Checkout the Contribution guidelines -CONTRIBUTING.md
About
Write Amazon Simple Queue Service (SQS) consumers in Python with simplified interface.
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Uh oh!
There was an error while loading.Please reload this page.
Contributors3
Uh oh!
There was an error while loading.Please reload this page.