Home > aws_boto

aws_boto

Aws_boto is a project mainly written in Python, it's free.

interaction with aws with boto

Built for python2.7. Amazon Web Service access through Boto: http://code.google.com/p/boto/

Starting up an EC2 instance

From the src/ folder, run python and run:

from ec2.util *

Initialize the class:

a = util(,)

Open a connection to EC2 and start up an instance:

a.open() a.startInstance("instance1", "basicLinuxx32", "t1.micro", )

Once this function completes, you should have a running instance visible through the AWS management console.

To stop the instance, call:

a.stopInstance("instance1")