Boto: Difference between revisions
Jump to navigation
Jump to search
(Created page with "http://boto.cloudhackers.com/en/latest/ boto: A Python interface to Amazon Web Services Boto3, the next version of Boto, is now stable and recommended for general use. It c...") |
|||
(3 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
boto: A Python interface to Amazon Web Services |
boto: A Python interface to [[AWS|Amazon Web Services]] |
||
Boto3, the next version of Boto, is now stable and recommended for general use. It can be used side-by-side with Boto in the same project, so it is easy to start using Boto3 in your existing projects as well as new projects. Going forward, API updates and all new feature work will be focused on Boto3. |
Boto3, the next version of Boto, is now stable and recommended for general use. It can be used side-by-side with Boto in the same project, so it is easy to start using Boto3 in your existing projects as well as new projects. Going forward, API updates and all new feature work will be focused on Boto3. |
||
An integrated interface to current and future infrastructural services offered by Amazon Web Services. |
An integrated interface to current and future infrastructural services offered by [[AWS|Amazon Web Services]]. |
||
=Getting Started= |
|||
Récupérer les crédentials AWS |
|||
<pre> |
|||
#!/bin/python |
|||
import boto.ec2 |
|||
conn = boto.ec2.connect_to_region( |
|||
"us-west-2", |
|||
aws_access_key_id='<aws access key>', |
|||
aws_secret_access_key='<aws secret key>') |
|||
TBC |
|||
</pre> |
Latest revision as of 11:25, 29 February 2016
http://boto.cloudhackers.com/en/latest/
boto: A Python interface to Amazon Web Services
Boto3, the next version of Boto, is now stable and recommended for general use. It can be used side-by-side with Boto in the same project, so it is easy to start using Boto3 in your existing projects as well as new projects. Going forward, API updates and all new feature work will be focused on Boto3.
An integrated interface to current and future infrastructural services offered by Amazon Web Services.
Getting Started
Récupérer les crédentials AWS
#!/bin/python import boto.ec2 conn = boto.ec2.connect_to_region( "us-west-2", aws_access_key_id='<aws access key>', aws_secret_access_key='<aws secret key>') TBC