PKG-INFO 8.4 KB

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