Skip to content

Write Amazon Simple Queue Service (SQS) consumers in Python with simplified interface.

License

Notifications You must be signed in to change notification settings

thuitaw/aws_sqs_consumer_python

 
 

Repository files navigation

Python AWS SQS Consumer

PyPI Build passing PyPI - Downloads

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/

Installation

pip install aws-sqs-consumer

Simple Usage

from aws_sqs_consumer import Consumer, Message

class SimpleConsumer(Consumer):
    def handle_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()

Contributing

Checkout the Contribution guidelines - CONTRIBUTING.md

About

Write Amazon Simple Queue Service (SQS) consumers in Python with simplified interface.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%