GUI utility for Windows OS to send message to AWS SQS. Currently MVP status. More feature and improvements will be added to it.
Executable can be downloaded from here. Unzip the folder and run the sqs_workbench.exe file.
If you never used Amazon Web Services with Python before, you have to install the following modules:
boto3
botocore
PySimpleGUI
Save your AWS Credentials in your home/users folder:
Linux:
/home/[username]/.aws
Windows:
/Users/[username]/.aws
For more information about the content of the .aws folder check the AWS documentation: Configuration and Credential Files.
Instead of creating the .aws folder manually you can use the AWS Command Line Interface:
After you've installed the AWS CLI open the PowerShell (or the Command Prompt) in Windows. In UNIX-like systems open a Shell. Then run the following command:
aws configure
Enter
- your AWS Access Key ID and
- your AWS Secret Access Key.
- As default region name enter your Availability Zone (AZ) and
- use "json" as default output format
If you would like to contribute to this project, please reachout to me. Issues and pull requests are welcomed too.
This project is licensed under the Apache License - see the LICENSE file for details