What is the difference between AWS's Python awscli bundle and the general linux AWS command line tools (e.g. ec2-describe-instances)?
-
-
Answer:
The Python command line tools feel a lot more like a unified suite of tools in much the same way that the git suite feels like a unified suite of tools. Secondly, the Python command line tools support a much wider range of services and APIs than the old ec2 tools. Thirdly, the Python command line tools are written in Python instead of Java, which makes them start up a lot faster. This is not that noticeable on fast desktops or larger instances, but on instances like the m1.small and t1.micro, the older Java tools are so very slow to start, which is a problem for a command line tool. Finally, the Python command line tools are newer and I believe they are intended to obsolete the old Java tools.
Cobi Carter at Quora Visit the source
Other answers
The AWS Command Line Interface (awscli) is a unified replacement for all of the older, service-specific command line tools. Where previously you had to install EC2 tools independently of S3 tools independently of SNS tools, for example, now you can simply install awscli and it can be used to manage all services. The older, service-specific tools were written in Java, used the AWS Java SDK, and were delivered in binary format. The newer, unified tools are written in Python, use the boto Python package, and are delivered in source format. An example of using the old tools: ec2-describe-instances An example of using the new tools: aws ec2 describe-instances You can read more at http://aws.typepad.com/aws/2013/09/new-aws-command-line-interface-cli.html and download the new tool at http://aws.amazon.com/cli/.
Jarmo Dee
Related Q & A:
- Why does e.g. Hubble's secondary mirror not block part of the picture?Best solution by Astronomy
- What is the difference between a static method and class method in Python?Best solution by pythoncentral.io
- How to change brightness on Linux desktop through the command line?Best solution by Super User
- What is the difference between B.Tech I.T and C.S.E?Best solution by quora.com
- What is an interview at Sainsbury's like for a general assistant?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.