{ "info": { "author": "Mitch Garnaat", "author_email": "mitch@garnaat.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Topic :: Internet" ], "description": "####\nboto\n####\nboto 2.37.0\n\nReleased: 2-Apr-2015\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************\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******\nBoto 3\n******\nThe next major version of Boto is currently in developer preview and can\nbe found in the `Boto 3 `__\nrepository and installed via ``pip``. It supports the latest service APIs\nand provides a high-level object-oriented interface to many services.\n\nPlease try Boto 3 and\n`leave feedback `__ with any issues,\nsuggestions, and feature requests you might have.\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\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", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/boto/boto/", "keywords": null, "license": "MIT", "maintainer": null, "maintainer_email": null, "name": "gc-boto", "package_url": "https://pypi.org/project/gc-boto/", "platform": "Posix; MacOS X; Windows", "project_url": "https://pypi.org/project/gc-boto/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/boto/boto/" }, "release_url": "https://pypi.org/project/gc-boto/2.37.1/", "requires_dist": null, "requires_python": null, "summary": "Amazon Web Services Library", "version": "2.37.1" }, "last_serial": 2722140, "releases": { "2.37.0": [ { "comment_text": "", "digests": { "md5": "a991ec9cfe383870af41d59b2cdbf36c", "sha256": "4a24ed557b724b0c82a08c8bbd9eee1bc22694b2add09e482ac07bcd53e6cff7" }, "downloads": -1, "filename": "gc-boto-2.37.0.tar.gz", "has_sig": false, "md5_digest": "a991ec9cfe383870af41d59b2cdbf36c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1411745, "upload_time": "2017-03-21T21:20:30", "url": "https://files.pythonhosted.org/packages/85/ed/16ba90dead27bca1ea250a88128d3573375392bb4fef9ead5ff539642124/gc-boto-2.37.0.tar.gz" } ], "2.37.1": [ { "comment_text": "", "digests": { "md5": "4efdb7cc6efdb20019ffdb6b311c2795", "sha256": "9d39450919e7312b906794cfa7546a12cb36a5729fd53f422eb4aeba4efc457d" }, "downloads": -1, "filename": "gc-boto-2.37.1.tar.gz", "has_sig": false, "md5_digest": "4efdb7cc6efdb20019ffdb6b311c2795", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1412329, "upload_time": "2017-03-22T02:04:58", "url": "https://files.pythonhosted.org/packages/f4/f0/73de06cd59780811190a60a61391889bbcda5d3328575b6bf22c43316930/gc-boto-2.37.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "4efdb7cc6efdb20019ffdb6b311c2795", "sha256": "9d39450919e7312b906794cfa7546a12cb36a5729fd53f422eb4aeba4efc457d" }, "downloads": -1, "filename": "gc-boto-2.37.1.tar.gz", "has_sig": false, "md5_digest": "4efdb7cc6efdb20019ffdb6b311c2795", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1412329, "upload_time": "2017-03-22T02:04:58", "url": "https://files.pythonhosted.org/packages/f4/f0/73de06cd59780811190a60a61391889bbcda5d3328575b6bf22c43316930/gc-boto-2.37.1.tar.gz" } ] }