PKG-INFO 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. Metadata-Version: 1.1
  2. Name: boto
  3. Version: 2.49.0
  4. Summary: Amazon Web Services Library
  5. Home-page: https://github.com/boto/boto/
  6. Author: Mitch Garnaat
  7. Author-email: mitch@garnaat.com
  8. License: MIT
  9. Description: ####
  10. boto
  11. ####
  12. boto 2.49.0
  13. Released: 11-July-2018
  14. .. image:: https://travis-ci.org/boto/boto.svg?branch=develop
  15. :target: https://travis-ci.org/boto/boto
  16. .. image:: https://pypip.in/d/boto/badge.svg
  17. :target: https://pypi.python.org/pypi/boto/
  18. ******
  19. Boto 3
  20. ******
  21. `Boto3 <https://github.com/boto/boto3>`__, the next version of Boto, is now
  22. stable and recommended for general use. It can be used side-by-side with Boto
  23. in the same project, so it is easy to start using Boto3 in your existing
  24. projects as well as new projects. Going forward, API updates and all new
  25. feature work will be focused on Boto3.
  26. To assist users who still depend on Boto and cannot immediately switch over, we
  27. will be triaging and addressing critical issues and PRs in Boto in the short
  28. term. As more users make the switch to Boto3, we expect to reduce our
  29. maintenance involvement over time. If we decide on a cutoff date or any
  30. significant changes to our maintenance plan, we will make pre-announcements
  31. well ahead of schedule to allow ample time for our users to adapt/migrate.
  32. ************
  33. Introduction
  34. ************
  35. Boto is a Python package that provides interfaces to Amazon Web Services.
  36. Currently, all features work with Python 2.6 and 2.7. Work is under way to
  37. support Python 3.3+ in the same codebase. Modules are being ported one at
  38. a time with the help of the open source community, so please check below
  39. for compatibility with Python 3.3+.
  40. To port a module to Python 3.3+, please view our `Contributing Guidelines`_
  41. and the `Porting Guide`_. If you would like, you can open an issue to let
  42. others know about your work in progress. Tests **must** pass on Python
  43. 2.6, 2.7, 3.3, and 3.4 for pull requests to be accepted.
  44. ********
  45. Services
  46. ********
  47. At the moment, boto supports:
  48. * Compute
  49. * Amazon Elastic Compute Cloud (EC2) (Python 3)
  50. * Amazon Elastic Map Reduce (EMR) (Python 3)
  51. * AutoScaling (Python 3)
  52. * Amazon Kinesis (Python 3)
  53. * AWS Lambda (Python 3)
  54. * Amazon EC2 Container Service (Python 3)
  55. * Content Delivery
  56. * Amazon CloudFront (Python 3)
  57. * Database
  58. * Amazon Relational Data Service (RDS)
  59. * Amazon DynamoDB (Python 3)
  60. * Amazon SimpleDB (Python 3)
  61. * Amazon ElastiCache (Python 3)
  62. * Amazon Redshift (Python 3)
  63. * Deployment and Management
  64. * AWS Elastic Beanstalk (Python 3)
  65. * AWS CloudFormation (Python 3)
  66. * AWS Data Pipeline (Python 3)
  67. * AWS Opsworks (Python 3)
  68. * AWS CloudTrail (Python 3)
  69. * AWS CodeDeploy (Python 3)
  70. * Administration & Security
  71. * AWS Identity and Access Management (IAM) (Python 3)
  72. * AWS Key Management Service (KMS) (Python 3)
  73. * AWS Config (Python 3)
  74. * AWS CloudHSM (Python 3)
  75. * Application Services
  76. * Amazon CloudSearch (Python 3)
  77. * Amazon CloudSearch Domain (Python 3)
  78. * Amazon Elastic Transcoder (Python 3)
  79. * Amazon Simple Workflow Service (SWF) (Python 3)
  80. * Amazon Simple Queue Service (SQS) (Python 3)
  81. * Amazon Simple Notification Server (SNS) (Python 3)
  82. * Amazon Simple Email Service (SES) (Python 3)
  83. * Amazon Cognito Identity (Python 3)
  84. * Amazon Cognito Sync (Python 3)
  85. * Amazon Machine Learning (Python 3)
  86. * Monitoring
  87. * Amazon CloudWatch (EC2 Only) (Python 3)
  88. * Amazon CloudWatch Logs (Python 3)
  89. * Networking
  90. * Amazon Route53 (Python 3)
  91. * Amazon Route 53 Domains (Python 3)
  92. * Amazon Virtual Private Cloud (VPC) (Python 3)
  93. * Elastic Load Balancing (ELB) (Python 3)
  94. * AWS Direct Connect (Python 3)
  95. * Payments and Billing
  96. * Amazon Flexible Payment Service (FPS)
  97. * Storage
  98. * Amazon Simple Storage Service (S3) (Python 3)
  99. * Amazon Glacier (Python 3)
  100. * Amazon Elastic Block Store (EBS)
  101. * Google Cloud Storage
  102. * Workforce
  103. * Amazon Mechanical Turk
  104. * Other
  105. * Marketplace Web Services (Python 3)
  106. * AWS Support (Python 3)
  107. The goal of boto is to support the full breadth and depth of Amazon
  108. Web Services. In addition, boto provides support for other public
  109. services such as Google Storage in addition to private cloud systems
  110. like Eucalyptus, OpenStack and Open Nebula.
  111. Boto is developed mainly using Python 2.6.6 and Python 2.7.3 on Mac OSX
  112. and Ubuntu Maverick. It is known to work on other Linux distributions
  113. and on Windows. Most of Boto requires no additional libraries or packages
  114. other than those that are distributed with Python. Efforts are made
  115. to keep boto compatible with Python 2.5.x but no guarantees are made.
  116. ************
  117. Installation
  118. ************
  119. Install via `pip`_:
  120. ::
  121. $ pip install boto
  122. Install from source:
  123. ::
  124. $ git clone git://github.com/boto/boto.git
  125. $ cd boto
  126. $ python setup.py install
  127. **********
  128. ChangeLogs
  129. **********
  130. To see what has changed over time in boto, you can check out the
  131. release notes at `http://docs.pythonboto.org/en/latest/#release-notes`
  132. ***************************
  133. Finding Out More About Boto
  134. ***************************
  135. The main source code repository for boto can be found on `github.com`_.
  136. The boto project uses the `gitflow`_ model for branching.
  137. `Online documentation`_ is also available. The online documentation includes
  138. full API documentation as well as Getting Started Guides for many of the boto
  139. modules.
  140. Boto releases can be found on the `Python Cheese Shop`_.
  141. Join our IRC channel `#boto` on FreeNode.
  142. Webchat IRC channel: http://webchat.freenode.net/?channels=boto
  143. Join the `boto-users Google Group`_.
  144. *************************
  145. Getting Started with Boto
  146. *************************
  147. Your credentials can be passed into the methods that create
  148. connections. Alternatively, boto will check for the existence of the
  149. following environment variables to ascertain your credentials:
  150. **AWS_ACCESS_KEY_ID** - Your AWS Access Key ID
  151. **AWS_SECRET_ACCESS_KEY** - Your AWS Secret Access Key
  152. Credentials and other boto-related settings can also be stored in a
  153. boto config file. See `this`_ for details.
  154. .. _Contributing Guidelines: https://github.com/boto/boto/blob/develop/CONTRIBUTING
  155. .. _Porting Guide: http://boto.readthedocs.org/en/latest/porting_guide.html
  156. .. _pip: http://www.pip-installer.org/
  157. .. _release notes: https://github.com/boto/boto/wiki
  158. .. _github.com: http://github.com/boto/boto
  159. .. _Online documentation: http://docs.pythonboto.org
  160. .. _Python Cheese Shop: http://pypi.python.org/pypi/boto
  161. .. _this: http://docs.pythonboto.org/en/latest/boto_config_tut.html
  162. .. _gitflow: http://nvie.com/posts/a-successful-git-branching-model/
  163. .. _neo: https://github.com/boto/boto/tree/neo
  164. .. _boto-users Google Group: https://groups.google.com/forum/?fromgroups#!forum/boto-users
  165. Platform: Posix; MacOS X; Windows
  166. Classifier: Development Status :: 5 - Production/Stable
  167. Classifier: Intended Audience :: Developers
  168. Classifier: License :: OSI Approved :: MIT License
  169. Classifier: Operating System :: OS Independent
  170. Classifier: Topic :: Internet
  171. Classifier: Programming Language :: Python :: 2
  172. Classifier: Programming Language :: Python :: 2.6
  173. Classifier: Programming Language :: Python :: 2.7
  174. Classifier: Programming Language :: Python :: 3
  175. Classifier: Programming Language :: Python :: 3.3
  176. Classifier: Programming Language :: Python :: 3.4