AWS Client is python utility that use boto3 library
to get information about EC2 instances
to put, get files from S3 buckets
to send, receive messages from SQS
Install via pip
pip install awsconnect
Get information about instances in EC2
python3 -m awsconnect ec2
Put files to S3 buckets
python3 -m awsconnect s3 put --filename test.json --bucket test
Get files from S3 buckets
python3 -m awsconnect s3 get --filename test.json --bucket test
Send messages from SQS
python3 -m awsconnect sqs send --queue test --filename example_sqs_messages.json
Receive messages from SQS
python3 -m awsconnect sqs receive --queue test
Using SemVer for versioning. For the versions available, see the tags on this repository.
- Zakhar Bengart - Initial work - Ze
See also the list of contributors who participated in this project.
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation - see the LICENSE file for details