boto

For the latest version of boto, see https://github.com/boto/boto3 -- Python interface to Amazon Web Services

https://github.com/boto/boto

Science Score: 10.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
  • .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
    15 of 667 committers (2.2%) from academic institutions
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (10.7%) to scientific vocabulary

Keywords from Contributors

templates views apps requests python-requests humans forhumans cookies cloud-management pallets
Last synced: 10 months ago · JSON representation

Repository

For the latest version of boto, see https://github.com/boto/boto3 -- Python interface to Amazon Web Services

Basic Info
Statistics
  • Stars: 6,453
  • Watchers: 276
  • Forks: 2,241
  • Open Issues: 1,119
  • Releases: 0
Archived
Created almost 16 years ago · Last pushed over 2 years ago
Metadata Files
Readme Contributing License

README.rst

####
Deprecation notice
####

**This package is no longer maintained and has been replaced by** `Boto3 `__.
**Issues and pull requests are not reviewed. If you are having an issue with the** `Boto3 `__ **package or the** `AWS CLI `__, **please open an issue on their respective repositories.**

####
boto
####
boto 2.49.0

Released: 11-July-2018

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


************
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

Owner

  • Name: the boto project
  • Login: boto
  • Kind: organization

GitHub Events

Total
  • Watch event: 13
  • Fork event: 5
Last Year
  • Watch event: 13
  • Fork event: 5

Committers

Last synced: over 1 year ago

All Time
  • Total Commits: 5,475
  • Total Committers: 667
  • Avg Commits per committer: 8.208
  • Development Distribution Score (DDS): 0.812
Past Year
  • Commits: 0
  • Committers: 0
  • Avg Commits per committer: 0.0
  • Development Distribution Score (DDS): 0.0
Top Committers
Name Email Commits
Mitch.Garnaat M****t@6****f 1,032
Mitch Garnaat m****h@g****m 539
Daniel Lindsley d****l@t****m 293
Daniel G. Taylor d****r@g****m 251
kopertop k****p@6****f 230
James Saryerwinnie js@j****m 220
Mitch Garnaat m****h@c****m 135
Mike Schwartz m****z@g****m 107
kyleknap k****p@a****m 96
paltman p****n@6****f 84
Chris Moyer k****p@g****m 82
Pascal Hakim p****c@r****t 80
Felix Yan f****s@g****m 65
JordonPhillips p****n@a****m 55
James Saryerwinnie j****i@g****m 51
Chris Moyer k****p@M****l 49
Greg Taylor g****r@d****m 49
walsh159 w****9@6****f 49
Thomas O'Dowd t****d@g****m 39
Justin Riley j****y@g****m 39
Jim Browne j****e@j****m 34
Slawek Ligus r****t@o****e 25
Andy Davidoff a****b@d****m 25
Jann Kleen j****n@p****m 24
Paulo Almeida p****u@g****m 23
Michael Barrientos m****e@s****m 23
rlotun r****n@6****f 22
Ryan Brown r****b@c****u 21
Jeff Terrace j****e@g****m 21
rdodev r****z@i****m 20
and 637 more...

Issues and Pull Requests

Last synced: 10 months ago

All Time
  • Total issues: 77
  • Total pull requests: 62
  • Average time to close issues: almost 4 years
  • Average time to close pull requests: almost 5 years
  • Total issue authors: 77
  • Total pull request authors: 52
  • Average comments per issue: 6.53
  • Average comments per pull request: 1.65
  • Merged pull requests: 5
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • geekpete (1)
  • kloczek (1)
  • ghostakstevelodx (1)
  • ps-jay (1)
  • neamanahmed (1)
  • dacut (1)
  • mjpan (1)
  • simonwhitaker (1)
  • CoderSpinoza (1)
  • GabrielHare (1)
  • jamesls (1)
  • xyb (1)
  • cancan101 (1)
  • gongchengshi (1)
  • Langholt (1)
Pull Request Authors
  • kdaily (7)
  • mtougeron (2)
  • piotrbulinski (2)
  • radeksimko (2)
  • chocobn69 (2)
  • gotmax23 (2)
  • maishsk (2)
  • dustinboswell (2)
  • rbp (1)
  • the-neil (1)
  • ekalosak (1)
  • chooper (1)
  • jiashuChen (1)
  • lishubing (1)
  • gene1wood (1)
Top Labels
Issue Labels
accepted (6) bug (5) s3 (4) Needs Implementation (3) needs-repro (3) cloudformation (2) Waiting for Comments (2) closing-soon-if-no-response (2) feature (2) glacier (2) auth (1) regression (1) opsworks (1) emr (1) dynamodb (1) documentation (1) ec2 (1) packaging (1)
Pull Request Labels
needs-tests (14) needs-review (6) accepted (4) bug (3) dynamodb (2) configservice (2) iam (2) s3 (2) pending-verification (2) mturk (2) route53 (2) ec2 (1) lambda (1) api-update (1) glacier (1) pending-feedback (1) mws (1) python3 (1) cloudsearch (1) rds (1) Waiting for Comments (1) cloudfront (1)

Packages

  • Total packages: 9
  • Total downloads:
    • pypi 7,100,871 last-month
  • Total docker downloads: 1,166,493,983
  • Total dependent packages: 171
    (may contain duplicates)
  • Total dependent repositories: 45,855
    (may contain duplicates)
  • Total versions: 141
  • Total maintainers: 7
pypi.org: boto

Amazon Web Services Library

  • Versions: 121
  • Dependent Packages: 142
  • Dependent Repositories: 45,437
  • Downloads: 7,100,500 Last month
  • Docker Downloads: 1,166,493,983
Rankings
Dependent repos count: 0.0%
Docker downloads count: 0.1%
Downloads: 0.1%
Dependent packages count: 0.1%
Average: 0.2%
Forks count: 0.3%
Stargazers count: 0.3%
Maintainers (2)
Last synced: 10 months ago
conda-forge.org: boto
  • Versions: 1
  • Dependent Packages: 25
  • Dependent Repositories: 206
Rankings
Forks count: 2.3%
Dependent repos count: 2.4%
Dependent packages count: 2.7%
Average: 2.9%
Stargazers count: 4.3%
Last synced: 11 months ago
proxy.golang.org: github.com/boto/boto
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 1
Rankings
Forks count: 0.2%
Stargazers count: 0.8%
Average: 3.8%
Dependent repos count: 4.8%
Dependent packages count: 9.6%
Last synced: 10 months ago
spack.io: py-boto

Boto is a Python package that provides interfaces to Amazon Web Services.

  • Versions: 1
  • Dependent Packages: 3
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.7%
Stargazers count: 1.5%
Average: 4.1%
Dependent packages count: 14.2%
Maintainers (1)
Last synced: 10 months ago
pypi.org: boto-mws

Amazon Web Services Library

  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 158 Last month
Rankings
Forks count: 0.3%
Stargazers count: 0.3%
Average: 8.4%
Downloads: 9.6%
Dependent packages count: 10.0%
Dependent repos count: 21.7%
Maintainers (1)
Last synced: 10 months ago
pypi.org: boto-patch

Amazon Web Services Library

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 2
  • Downloads: 27 Last month
Rankings
Forks count: 0.3%
Stargazers count: 0.4%
Dependent packages count: 10.0%
Average: 10.7%
Dependent repos count: 11.6%
Downloads: 31.2%
Maintainers (1)
Last synced: 10 months ago
pypi.org: boto-brimley

Amazon Web Services Library

  • Versions: 9
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 167 Last month
Rankings
Forks count: 0.3%
Stargazers count: 0.3%
Dependent packages count: 10.0%
Average: 11.6%
Dependent repos count: 21.7%
Downloads: 25.5%
Maintainers (1)
Last synced: 10 months ago
pypi.org: gc-boto

Amazon Web Services Library

  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 19 Last month
Rankings
Forks count: 0.3%
Stargazers count: 0.3%
Dependent packages count: 10.0%
Average: 12.4%
Dependent repos count: 21.7%
Downloads: 29.4%
Maintainers (1)
Last synced: 10 months ago
anaconda.org: boto

Boto aims to support the full breadth and depth of Amazon Web Services. NOTE: Boto3, the next version of Boto, is stable and recommended for general use.

  • Versions: 2
  • Dependent Packages: 1
  • Dependent Repositories: 206
Rankings
Forks count: 6.5%
Stargazers count: 10.1%
Dependent repos count: 13.4%
Average: 15.2%
Dependent packages count: 30.6%
Last synced: 10 months ago

Dependencies

.github/workflows/main.yml actions
.github/workflows/open_issue_message.yml actions
  • aws-actions/closed-issue-message v1 composite
.github/workflows/open_pr_message.yml actions
  • aws-actions/closed-issue-message v1 composite
.github/workflows/stale_bot.yml actions
  • aws-actions/stale-issue-cleanup v4 composite
requirements-docs.txt pypi
  • PyYAML >=3.10
  • Sphinx >=1.1.3,<1.3
  • argparse ==1.2.1
  • paramiko >=1.10.0
  • requests >=1.2.3,<=2.0.1
  • rsa ==3.1.4
  • simplejson ==3.5.2
requirements-py26.txt pypi
  • PyYAML ==3.11
  • idna ==2.7
  • ordereddict ==1.1
  • paramiko >=1.10.0,<2.4
  • unittest2 ==0.5.1
requirements-py33.txt pypi
  • idna ==2.7
  • paramiko >=1.10.0,<2.4
requirements.txt pypi
  • PyYAML >=3.10
  • argparse ==1.2.1
  • coverage ==3.7.1
  • httpretty >=0.9.6
  • mock ==1.0.1
  • nose ==1.3.3
  • paramiko >=1.10.0
  • requests >=1.2.3,<=2.0.1
  • rsa ==3.1.4
  • simplejson ==3.6.5
setup.py pypi