Metadata-Version: 2.1
Name: awscli-sqsall
Version: 1.0.1
Summary: awscli pulgin to treat SQS queues more like files
Home-page: https://github.com/pkoch/awscli-sqsall
Author: Paulo Köch
Author-email: paulo.koch@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Requires-Dist: awscli (>=1.16.140)

awscli-sqsall
=============

Treat SQS queues more like files, with `receive-all-messages` and
`send-all-messages`.

Check their help for more details. You should be able to do something like this:
```
aws sqs receive-all-messages --queue my-dlq | sed '/some fault/d' | aws sqs send-all-messages my-queue
```

Check their help for more details.

Installing
----------
```
pip install awscli-sqsall
aws configure set plugins.sqsall sqsall
```


