Difference between revisions of "Boto3"

From wikieduonline
Jump to navigation Jump to search
 
(16 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
[[wikipedia:Boto3]] ([[AWS timeline|Jun 2015]]) <ref>https://aws.amazon.com/blogs/aws/now-available-aws-sdk-for-python-3-boto3/</ref> AWS [[Python]] library.
 
[[wikipedia:Boto3]] ([[AWS timeline|Jun 2015]]) <ref>https://aws.amazon.com/blogs/aws/now-available-aws-sdk-for-python-3-boto3/</ref> AWS [[Python]] library.
 
* Homepage: https://aws.amazon.com/sdk-for-python/  
 
* Homepage: https://aws.amazon.com/sdk-for-python/  
* Installation: <code>[[pip install]] boto3</code>
+
* Installation:
 +
:<code>[[pip install boto3]]</code>
 +
:sudo apt-get install python-boto
  
 +
<code>[[/etc/boto.cfg]]</code>
  
 +
<code>[[.boto]]</code>
  
 +
== Examples ==
 
* <code>[[import]] boto3</code>
 
* <code>[[import]] boto3</code>
 
 
* [[S3]]: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3.html
 
s3 = boto3.client("s3")
 
 
copy_object () https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3.html#S3.Client.copy_object
 
 
 
* [[RDS]] https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/rds.html#client
 
 
  my_rds_client = boto3.client("rds")
 
 
  
  
Line 27: Line 20:
 
* [[AWS Chalice]]
 
* [[AWS Chalice]]
 
* <code>[[botocore]]</code>
 
* <code>[[botocore]]</code>
 +
* <code>[[boto3.resource]]</code>
 +
* <code>[[boto3.client]]</code>
 +
* <code>[[boto3.set_stream_logger]]</code>
 +
* <code>[[requirements.txt]]</code>
 +
* [[config]], [[credentials]]
 +
* <code>[[gsutil config -e]]</code>
 +
* <code>[[boto3 required for this module]]</code>
 +
* <code>[[Failed to import the required Python library]] ([[botocore]] or [[boto3]])</code>
  
 
== See also ==
 
== See also ==
Line 33: Line 34:
 
* {{AWS IaC}}
 
* {{AWS IaC}}
  
 +
[[Category:Boto3]]
 
[[Category:Python]]
 
[[Category:Python]]

Latest revision as of 14:19, 17 January 2023

Advertising: