python-sqs-listener
python-sqs-listener copied to clipboard
A simple wrapper for boto3 for listening, and sending, to an AWS SQS queue
- adding an internal variable `_should_listen` for managing the state of the endless for loop - this variable also will stop the messages loop in case there are many messages...
Say I have two existing queues: a queue `process-queue` and an error queue `error-queue`. My error queue is never flagged as existing because the `ListQueues` operation is prefixed to the...
Hey, this may be a bit of an unusual requirement, but I need to run a check whenever the queue gets polled but doesn’t have messages in it. I’m not...
Hi Is there a best pythonic way to mock the connection to actual AWS, e.g. with something like `moto`, for unit tests? Thanks!