boto


Nameboto JSON
Version 2.49.0 PyPI version JSON
download
home_pagehttps://github.com/boto/boto/
SummaryAmazon Web Services Library
upload_time2018-07-11 20:58:58
maintainer
docs_urlNone
authorMitch Garnaat
requires_python
licenseMIT
keywords
VCS
bugtrack_url
requirements nose requests rsa simplejson argparse httpretty paramiko PyYAML coverage mock
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ####
boto
####
boto 2.49.0

Released: 11-July-2018

.. image:: https://travis-ci.org/boto/boto.svg?branch=develop
        :target: https://travis-ci.org/boto/boto

.. image:: https://pypip.in/d/boto/badge.svg
        :target: https://pypi.python.org/pypi/boto/

******
Boto 3
******

`Boto3 <https://github.com/boto/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.

To assist users who still depend on Boto and cannot immediately switch over, we
will be triaging and addressing critical issues and PRs in Boto in the short
term. As more users make the switch to Boto3, we expect to reduce our
maintenance involvement over time. If we decide on a cutoff date or any
significant changes to our maintenance plan, we will make pre-announcements
well ahead of schedule to allow ample time for our users to adapt/migrate.


************
Introduction
************

Boto is a Python package that provides interfaces to Amazon Web Services.
Currently, all features work with Python 2.6 and 2.7. Work is under way to
support Python 3.3+ in the same codebase. Modules are being ported one at
a time with the help of the open source community, so please check below
for compatibility with Python 3.3+.

To port a module to Python 3.3+, please view our `Contributing Guidelines`_
and the `Porting Guide`_. If you would like, you can open an issue to let
others know about your work in progress. Tests **must** pass on Python
2.6, 2.7, 3.3, and 3.4 for pull requests to be accepted.


********
Services
********

At the moment, boto supports:

* Compute

  * Amazon Elastic Compute Cloud (EC2) (Python 3)
  * Amazon Elastic Map Reduce (EMR) (Python 3)
  * AutoScaling (Python 3)
  * Amazon Kinesis (Python 3)
  * AWS Lambda (Python 3)
  * Amazon EC2 Container Service (Python 3)

* Content Delivery

  * Amazon CloudFront (Python 3)

* Database

  * Amazon Relational Data Service (RDS)
  * Amazon DynamoDB (Python 3)
  * Amazon SimpleDB (Python 3)
  * Amazon ElastiCache (Python 3)
  * Amazon Redshift (Python 3)

* Deployment and Management

  * AWS Elastic Beanstalk (Python 3)
  * AWS CloudFormation (Python 3)
  * AWS Data Pipeline (Python 3)
  * AWS Opsworks (Python 3)
  * AWS CloudTrail (Python 3)
  * AWS CodeDeploy (Python 3)

* Administration & Security

  * AWS Identity and Access Management (IAM) (Python 3)
  * AWS Key Management Service (KMS) (Python 3)
  * AWS Config (Python 3)
  * AWS CloudHSM (Python 3)

* Application Services

  * Amazon CloudSearch (Python 3)
  * Amazon CloudSearch Domain (Python 3)
  * Amazon Elastic Transcoder (Python 3)
  * Amazon Simple Workflow Service (SWF) (Python 3)
  * Amazon Simple Queue Service (SQS) (Python 3)
  * Amazon Simple Notification Server (SNS) (Python 3)
  * Amazon Simple Email Service (SES) (Python 3)
  * Amazon Cognito Identity (Python 3)
  * Amazon Cognito Sync (Python 3)
  * Amazon Machine Learning (Python 3)

* Monitoring

  * Amazon CloudWatch (EC2 Only) (Python 3)
  * Amazon CloudWatch Logs (Python 3)

* Networking

  * Amazon Route53 (Python 3)
  * Amazon Route 53 Domains (Python 3)
  * Amazon Virtual Private Cloud (VPC) (Python 3)
  * Elastic Load Balancing (ELB) (Python 3)
  * AWS Direct Connect (Python 3)

* Payments and Billing

  * Amazon Flexible Payment Service (FPS)

* Storage

  * Amazon Simple Storage Service (S3) (Python 3)
  * Amazon Glacier (Python 3)
  * Amazon Elastic Block Store (EBS)
  * Google Cloud Storage

* Workforce

  * Amazon Mechanical Turk

* Other

  * Marketplace Web Services (Python 3)
  * AWS Support (Python 3)

The goal of boto is to support the full breadth and depth of Amazon
Web Services.  In addition, boto provides support for other public
services such as Google Storage in addition to private cloud systems
like Eucalyptus, OpenStack and Open Nebula.

Boto is developed mainly using Python 2.6.6 and Python 2.7.3 on Mac OSX
and Ubuntu Maverick.  It is known to work on other Linux distributions
and on Windows.  Most of Boto requires no additional libraries or packages
other than those that are distributed with Python.  Efforts are made
to keep boto compatible with Python 2.5.x but no guarantees are made.

************
Installation
************

Install via `pip`_:

::

    $ pip install boto

Install from source:

::

    $ git clone git://github.com/boto/boto.git
    $ cd boto
    $ python setup.py install

**********
ChangeLogs
**********

To see what has changed over time in boto, you can check out the
release notes at `http://docs.pythonboto.org/en/latest/#release-notes`

***************************
Finding Out More About Boto
***************************

The main source code repository for boto can be found on `github.com`_.
The boto project uses the `gitflow`_ model for branching.

`Online documentation`_ is also available. The online documentation includes
full API documentation as well as Getting Started Guides for many of the boto
modules.

Boto releases can be found on the `Python Cheese Shop`_.

Join our IRC channel `#boto` on FreeNode.
Webchat IRC channel: http://webchat.freenode.net/?channels=boto

Join the `boto-users Google Group`_.

*************************
Getting Started with Boto
*************************

Your credentials can be passed into the methods that create
connections.  Alternatively, boto will check for the existence of the
following environment variables to ascertain your credentials:

**AWS_ACCESS_KEY_ID** - Your AWS Access Key ID

**AWS_SECRET_ACCESS_KEY** - Your AWS Secret Access Key

Credentials and other boto-related settings can also be stored in a
boto config file.  See `this`_ for details.

.. _Contributing Guidelines: https://github.com/boto/boto/blob/develop/CONTRIBUTING
.. _Porting Guide: http://boto.readthedocs.org/en/latest/porting_guide.html
.. _pip: http://www.pip-installer.org/
.. _release notes: https://github.com/boto/boto/wiki
.. _github.com: http://github.com/boto/boto
.. _Online documentation: http://docs.pythonboto.org
.. _Python Cheese Shop: http://pypi.python.org/pypi/boto
.. _this: http://docs.pythonboto.org/en/latest/boto_config_tut.html
.. _gitflow: http://nvie.com/posts/a-successful-git-branching-model/
.. _neo: https://github.com/boto/boto/tree/neo
.. _boto-users Google Group: https://groups.google.com/forum/?fromgroups#!forum/boto-users



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/boto/boto/",
    "name": "boto",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Mitch Garnaat",
    "author_email": "mitch@garnaat.com",
    "download_url": "https://files.pythonhosted.org/packages/c8/af/54a920ff4255664f5d238b5aebd8eedf7a07c7a5e71e27afcfe840b82f51/boto-2.49.0.tar.gz",
    "platform": "Posix; MacOS X; Windows",
    "description": "####\nboto\n####\nboto 2.49.0\n\nReleased: 11-July-2018\n\n.. image:: https://travis-ci.org/boto/boto.svg?branch=develop\n        :target: https://travis-ci.org/boto/boto\n\n.. image:: https://pypip.in/d/boto/badge.svg\n        :target: https://pypi.python.org/pypi/boto/\n\n******\nBoto 3\n******\n\n`Boto3 <https://github.com/boto/boto3>`__, the next version of Boto, is now\nstable and recommended for general use.  It can be used side-by-side with Boto\nin the same project, so it is easy to start using Boto3 in your existing\nprojects as well as new projects. Going forward, API updates and all new\nfeature work will be focused on Boto3.\n\nTo assist users who still depend on Boto and cannot immediately switch over, we\nwill be triaging and addressing critical issues and PRs in Boto in the short\nterm. As more users make the switch to Boto3, we expect to reduce our\nmaintenance involvement over time. If we decide on a cutoff date or any\nsignificant changes to our maintenance plan, we will make pre-announcements\nwell ahead of schedule to allow ample time for our users to adapt/migrate.\n\n\n************\nIntroduction\n************\n\nBoto is a Python package that provides interfaces to Amazon Web Services.\nCurrently, all features work with Python 2.6 and 2.7. Work is under way to\nsupport Python 3.3+ in the same codebase. Modules are being ported one at\na time with the help of the open source community, so please check below\nfor compatibility with Python 3.3+.\n\nTo port a module to Python 3.3+, please view our `Contributing Guidelines`_\nand the `Porting Guide`_. If you would like, you can open an issue to let\nothers know about your work in progress. Tests **must** pass on Python\n2.6, 2.7, 3.3, and 3.4 for pull requests to be accepted.\n\n\n********\nServices\n********\n\nAt the moment, boto supports:\n\n* Compute\n\n  * Amazon Elastic Compute Cloud (EC2) (Python 3)\n  * Amazon Elastic Map Reduce (EMR) (Python 3)\n  * AutoScaling (Python 3)\n  * Amazon Kinesis (Python 3)\n  * AWS Lambda (Python 3)\n  * Amazon EC2 Container Service (Python 3)\n\n* Content Delivery\n\n  * Amazon CloudFront (Python 3)\n\n* Database\n\n  * Amazon Relational Data Service (RDS)\n  * Amazon DynamoDB (Python 3)\n  * Amazon SimpleDB (Python 3)\n  * Amazon ElastiCache (Python 3)\n  * Amazon Redshift (Python 3)\n\n* Deployment and Management\n\n  * AWS Elastic Beanstalk (Python 3)\n  * AWS CloudFormation (Python 3)\n  * AWS Data Pipeline (Python 3)\n  * AWS Opsworks (Python 3)\n  * AWS CloudTrail (Python 3)\n  * AWS CodeDeploy (Python 3)\n\n* Administration & Security\n\n  * AWS Identity and Access Management (IAM) (Python 3)\n  * AWS Key Management Service (KMS) (Python 3)\n  * AWS Config (Python 3)\n  * AWS CloudHSM (Python 3)\n\n* Application Services\n\n  * Amazon CloudSearch (Python 3)\n  * Amazon CloudSearch Domain (Python 3)\n  * Amazon Elastic Transcoder (Python 3)\n  * Amazon Simple Workflow Service (SWF) (Python 3)\n  * Amazon Simple Queue Service (SQS) (Python 3)\n  * Amazon Simple Notification Server (SNS) (Python 3)\n  * Amazon Simple Email Service (SES) (Python 3)\n  * Amazon Cognito Identity (Python 3)\n  * Amazon Cognito Sync (Python 3)\n  * Amazon Machine Learning (Python 3)\n\n* Monitoring\n\n  * Amazon CloudWatch (EC2 Only) (Python 3)\n  * Amazon CloudWatch Logs (Python 3)\n\n* Networking\n\n  * Amazon Route53 (Python 3)\n  * Amazon Route 53 Domains (Python 3)\n  * Amazon Virtual Private Cloud (VPC) (Python 3)\n  * Elastic Load Balancing (ELB) (Python 3)\n  * AWS Direct Connect (Python 3)\n\n* Payments and Billing\n\n  * Amazon Flexible Payment Service (FPS)\n\n* Storage\n\n  * Amazon Simple Storage Service (S3) (Python 3)\n  * Amazon Glacier (Python 3)\n  * Amazon Elastic Block Store (EBS)\n  * Google Cloud Storage\n\n* Workforce\n\n  * Amazon Mechanical Turk\n\n* Other\n\n  * Marketplace Web Services (Python 3)\n  * AWS Support (Python 3)\n\nThe goal of boto is to support the full breadth and depth of Amazon\nWeb Services.  In addition, boto provides support for other public\nservices such as Google Storage in addition to private cloud systems\nlike Eucalyptus, OpenStack and Open Nebula.\n\nBoto is developed mainly using Python 2.6.6 and Python 2.7.3 on Mac OSX\nand Ubuntu Maverick.  It is known to work on other Linux distributions\nand on Windows.  Most of Boto requires no additional libraries or packages\nother than those that are distributed with Python.  Efforts are made\nto keep boto compatible with Python 2.5.x but no guarantees are made.\n\n************\nInstallation\n************\n\nInstall via `pip`_:\n\n::\n\n    $ pip install boto\n\nInstall from source:\n\n::\n\n    $ git clone git://github.com/boto/boto.git\n    $ cd boto\n    $ python setup.py install\n\n**********\nChangeLogs\n**********\n\nTo see what has changed over time in boto, you can check out the\nrelease notes at `http://docs.pythonboto.org/en/latest/#release-notes`\n\n***************************\nFinding Out More About Boto\n***************************\n\nThe main source code repository for boto can be found on `github.com`_.\nThe boto project uses the `gitflow`_ model for branching.\n\n`Online documentation`_ is also available. The online documentation includes\nfull API documentation as well as Getting Started Guides for many of the boto\nmodules.\n\nBoto releases can be found on the `Python Cheese Shop`_.\n\nJoin our IRC channel `#boto` on FreeNode.\nWebchat IRC channel: http://webchat.freenode.net/?channels=boto\n\nJoin the `boto-users Google Group`_.\n\n*************************\nGetting Started with Boto\n*************************\n\nYour credentials can be passed into the methods that create\nconnections.  Alternatively, boto will check for the existence of the\nfollowing environment variables to ascertain your credentials:\n\n**AWS_ACCESS_KEY_ID** - Your AWS Access Key ID\n\n**AWS_SECRET_ACCESS_KEY** - Your AWS Secret Access Key\n\nCredentials and other boto-related settings can also be stored in a\nboto config file.  See `this`_ for details.\n\n.. _Contributing Guidelines: https://github.com/boto/boto/blob/develop/CONTRIBUTING\n.. _Porting Guide: http://boto.readthedocs.org/en/latest/porting_guide.html\n.. _pip: http://www.pip-installer.org/\n.. _release notes: https://github.com/boto/boto/wiki\n.. _github.com: http://github.com/boto/boto\n.. _Online documentation: http://docs.pythonboto.org\n.. _Python Cheese Shop: http://pypi.python.org/pypi/boto\n.. _this: http://docs.pythonboto.org/en/latest/boto_config_tut.html\n.. _gitflow: http://nvie.com/posts/a-successful-git-branching-model/\n.. _neo: https://github.com/boto/boto/tree/neo\n.. _boto-users Google Group: https://groups.google.com/forum/?fromgroups#!forum/boto-users\n\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Amazon Web Services Library",
    "version": "2.49.0",
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "6c789d2f7d200c1a6ba679b6d544c48d",
                "sha256": "147758d41ae7240dc989f0039f27da8ca0d53734be0eb869ef16e3adcfa462e8"
            },
            "downloads": -1,
            "filename": "boto-2.49.0-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "6c789d2f7d200c1a6ba679b6d544c48d",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 1359202,
            "upload_time": "2018-07-11T20:58:55",
            "upload_time_iso_8601": "2018-07-11T20:58:55.711894Z",
            "url": "https://files.pythonhosted.org/packages/23/10/c0b78c27298029e4454a472a1919bde20cb182dab1662cec7f2ca1dcc523/boto-2.49.0-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "e9b79f80198da059d9a8055a5352fd6d",
                "sha256": "ea0d3b40a2d852767be77ca343b58a9e3a4b00d9db440efb8da74b4e58025e5a"
            },
            "downloads": -1,
            "filename": "boto-2.49.0.tar.gz",
            "has_sig": false,
            "md5_digest": "e9b79f80198da059d9a8055a5352fd6d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 1478498,
            "upload_time": "2018-07-11T20:58:58",
            "upload_time_iso_8601": "2018-07-11T20:58:58.057325Z",
            "url": "https://files.pythonhosted.org/packages/c8/af/54a920ff4255664f5d238b5aebd8eedf7a07c7a5e71e27afcfe840b82f51/boto-2.49.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2018-07-11 20:58:58",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "boto",
    "github_project": "boto",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "nose",
            "specs": [
                [
                    "==",
                    "1.3.3"
                ]
            ]
        },
        {
            "name": "requests",
            "specs": [
                [
                    "<=",
                    "2.0.1"
                ],
                [
                    ">=",
                    "1.2.3"
                ]
            ]
        },
        {
            "name": "rsa",
            "specs": [
                [
                    "==",
                    "3.1.4"
                ]
            ]
        },
        {
            "name": "simplejson",
            "specs": [
                [
                    "==",
                    "3.6.5"
                ]
            ]
        },
        {
            "name": "argparse",
            "specs": [
                [
                    "==",
                    "1.2.1"
                ]
            ]
        },
        {
            "name": "httpretty",
            "specs": [
                [
                    ">=",
                    "0.9.6"
                ]
            ]
        },
        {
            "name": "paramiko",
            "specs": [
                [
                    ">=",
                    "1.10.0"
                ]
            ]
        },
        {
            "name": "PyYAML",
            "specs": [
                [
                    ">=",
                    "3.10"
                ]
            ]
        },
        {
            "name": "coverage",
            "specs": [
                [
                    "==",
                    "3.7.1"
                ]
            ]
        },
        {
            "name": "mock",
            "specs": [
                [
                    "==",
                    "1.0.1"
                ]
            ]
        }
    ],
    "tox": true,
    "lcname": "boto"
}
        
Elapsed time: 0.01704s