aws-cli

Universal Command Line Interface for Amazon Web Services

https://github.com/aws/aws-cli

Science Score: 36.0%

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

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

Keywords

aws aws-cli cloud cloud-management

Keywords from Contributors

distributed tensors deep-neural-networks unit-testing cryptocurrencies transformers autograd reinforcement-learning fuzzing yapf
Last synced: 6 months ago · JSON representation

Repository

Universal Command Line Interface for Amazon Web Services

Basic Info
  • Host: GitHub
  • Owner: aws
  • License: other
  • Language: Python
  • Default Branch: develop
  • Homepage:
  • Size: 342 MB
Statistics
  • Stars: 16,337
  • Watchers: 566
  • Forks: 4,344
  • Open Issues: 609
  • Releases: 1
Topics
aws aws-cli cloud cloud-management
Created over 13 years ago · Last pushed 6 months ago
Metadata Files
Readme Changelog Contributing License Code of conduct

README.rst

aws-cli
=======

.. image:: https://github.com/aws/aws-cli/actions/workflows/run-tests.yml/badge.svg
   :target: https://github.com/aws/aws-cli/actions/workflows/run-tests.yml
   :alt: Build Status

This package provides a unified command line interface to Amazon Web
Services.

Jump to:

-  `Getting Started <#getting-started>`__
-  `Getting Help <#getting-help>`__
-  `More Resources <#more-resources>`__

Getting Started
---------------

This README is for the AWS CLI version 1. If you are looking for
information about the AWS CLI version 2, please visit the `v2
branch `__.

Requirements
~~~~~~~~~~~~

The aws-cli package works on Python versions:

-  3.9.x and greater
-  3.10.x and greater
-  3.11.x and greater
-  3.12.x and greater
-  3.13.x and greater

Notices
~~~~~~~

On 2025-04-22, support for Python 3.8 ended for the AWS CLI. This follows the
Python Software Foundation `end of support `__
for the runtime which occurred on 2024-10-07.
For more information, see this `blog post `__.

*Attention!*

*We recommend that all customers regularly monitor the* `Amazon Web
Services Security Bulletins
website `__ *for
any important security bulletins related to aws-cli.*

Maintenance and Support for CLI Major Versions
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

The AWS CLI version 1 was made generally available on 09/02/2013 and is currently in the full support phase of the availability life cycle.

For information about maintenance and support for SDK major versions and their underlying dependencies, see the `Maintenance Policy `__ section in the *AWS SDKs and Tools Shared Configuration and Credentials Reference Guide*.

Installation
~~~~~~~~~~~~

Installation of the AWS CLI and its dependencies use a range of packaging
features provided by ``pip`` and ``setuptools``. To ensure smooth installation,
it's recommended to use:

- ``pip``: 9.0.2 or greater
- ``setuptools``: 36.2.0 or greater

The safest way to install the AWS CLI is to use
`pip `__ in a ``virtualenv``:

::

   $ python -m pip install awscli

or, if you are not installing in a ``virtualenv``, to install globally:

::

   $ sudo python -m pip install awscli

or for your user:

::

   $ python -m pip install --user awscli

If you have the aws-cli package installed and want to upgrade to the
latest version, you can run:

::

   $ python -m pip install --upgrade awscli

This will install the aws-cli package as well as all dependencies.

.. note::
   On macOS, if you see an error regarding the version of ``six`` that
   came with ``distutils`` in El Capitan, use the ``--ignore-installed``
   option:

::

   $ sudo python -m pip install awscli --ignore-installed six

On Linux and Mac OS, the AWS CLI can be installed using a `bundled
installer `__.
The AWS CLI can also be installed on Windows via an `MSI
Installer `__.

If you want to run the ``develop`` branch of the AWS CLI, see the
`Development Version `__ section of
the contributing guide.

See the
`installation `__
section of the AWS CLI User Guide for more information.

Configuration
~~~~~~~~~~~~~

Before using the AWS CLI, you need to configure your AWS credentials.
You can do this in several ways:

-  Configuration command
-  Environment variables
-  Shared credentials file
-  Config file
-  IAM Role

The quickest way to get started is to run the ``aws configure`` command:

::

   $ aws configure
   AWS Access Key ID: MYACCESSKEY
   AWS Secret Access Key: MYSECRETKEY
   Default region name [us-west-2]: us-west-2
   Default output format [None]: json

To use environment variables, do the following:

::

   $ export AWS_ACCESS_KEY_ID=
   $ export AWS_SECRET_ACCESS_KEY=

To use the shared credentials file, create an INI formatted file like
this:

::

   [default]
   aws_access_key_id=MYACCESSKEY
   aws_secret_access_key=MYSECRETKEY

   [testing]
   aws_access_key_id=MYACCESSKEY
   aws_secret_access_key=MYSECRETKEY

and place it in ``~/.aws/credentials`` (or in
``%UserProfile%\.aws/credentials`` on Windows). If you wish to place the
shared credentials file in a different location than the one specified
above, you need to tell aws-cli where to find it. Do this by setting the
appropriate environment variable:

::

   $ export AWS_SHARED_CREDENTIALS_FILE=/path/to/shared_credentials_file

To use a config file, create an INI formatted file like this:

::

   [default]
   aws_access_key_id=
   aws_secret_access_key=
   # Optional, to define default region for this profile.
   region=us-west-1

   [profile testing]
   aws_access_key_id=
   aws_secret_access_key=
   region=us-west-2

and place it in ``~/.aws/config`` (or in ``%UserProfile%\.aws\config``
on Windows). If you wish to place the config file in a different
location than the one specified above, you need to tell the AWS CLI
where to find it. Do this by setting the appropriate environment
variable:

::

   $ export AWS_CONFIG_FILE=/path/to/config_file

As you can see, you can have multiple ``profiles`` defined in both the
shared credentials file and the configuration file. You can then specify
which profile to use by using the ``--profile`` option. If no profile is
specified the ``default`` profile is used.

In the config file, except for the default profile, you **must** prefix
each config section of a profile group with ``profile``. For example, if
you have a profile named "testing" the section header would be
``[profile testing]``.

The final option for credentials is highly recommended if you are using
the AWS CLI on an EC2 instance. `IAM
Roles `__
are a great way to have credentials installed automatically on your
instance. If you are using IAM Roles, the AWS CLI will find and use them
automatically.

In addition to credentials, a number of other variables can be
configured either with environment variables, configuration file
entries, or both. See the `AWS Tools and SDKs Shared Configuration and
Credentials Reference
Guide `__
for more information.

For more information about configuration options, please refer to the
`AWS CLI Configuration Variables
topic `__.
You can access this topic from the AWS CLI as well by running
``aws help config-vars``.

Basic Commands
~~~~~~~~~~~~~~

An AWS CLI command has the following structure:

::

   $ aws   [options and parameters]

For example, to list S3 buckets, the command would be:

::

   $ aws s3 ls

To view help documentation, use one of the following:

::

   $ aws help
   $ aws  help
   $ aws   help

To get the version of the AWS CLI:

::

   $ aws --version

To turn on debugging output:

::

   $ aws --debug  

You can read more information on the `Using the AWS
CLI `__
chapter of the AWS CLI User Guide.

Command Completion
~~~~~~~~~~~~~~~~~~

The aws-cli package includes a command completion feature for Unix-like
systems. This feature is not automatically installed so you need to
configure it manually. To learn more, read the `AWS CLI Command
completion
topic `__.

Getting Help
------------

The best way to interact with our team is through GitHub. You can `open
an issue `__ and
choose from one of our templates for guidance, bug reports, or feature
requests.

You may find help from the community on `Stack
Overflow `__ with the tag
`aws-cli `__ or on
the `AWS Discussion Forum for
CLI `__. If you
have a support plan with `AWS Support
`__, you can also create
a new support case.

Please check for open similar
`issues `__ before opening
another one.

The AWS CLI implements AWS service APIs. For general issues regarding
the services or their limitations, you may find the `Amazon Web Services
Discussion Forums `__ helpful.

More Resources
--------------

-  `Changelog `__
-  `AWS CLI
   Documentation `__
-  `AWS CLI User
   Guide `__
-  `AWS CLI Command
   Reference `__
-  `Amazon Web Services Discussion
   Forums `__
-  `AWS Support `__

.. |Build Status| image:: https://travis-ci.org/aws/aws-cli.svg?branch=develop
   :target: https://travis-ci.org/aws/aws-cli
.. |Gitter| image:: https://badges.gitter.im/aws/aws-cli.svg
   :target: https://gitter.im/aws/aws-cli

Owner

  • Name: Amazon Web Services
  • Login: aws
  • Kind: organization
  • Email: open-source-github@amazon.com
  • Location: United States of America

Committers

Last synced: 10 months ago

All Time
  • Total Commits: 8,525
  • Total Committers: 462
  • Avg Commits per committer: 18.452
  • Development Distribution Score (DDS): 0.634
Past Year
  • Commits: 600
  • Committers: 36
  • Avg Commits per committer: 16.667
  • Development Distribution Score (DDS): 0.173
Top Committers
Name Email Commits
aws-sdk-python-automation g****n@a****m 3,119
James Saryerwinnie js@j****m 1,217
awstools a****r@a****m 633
kyleknap k****p@a****m 613
AWS a****s@a****m 323
Mitch Garnaat m****h@g****m 279
Michael Wunderlich m****l@a****m 250
JordonPhillips p****n@a****m 238
Dave Bishop b****d@a****m 181
Elysa Hall e****h@a****m 140
stealthycoin s****n 109
Jordan Guymon j****d@g****m 93
Daniel G. Taylor d****r@g****m 84
Nate Prewitt n****t@g****m 66
Ray Luo r****o@a****m 52
Kenneth Daily k****y 44
Eron Hennessey e****n@a****m 37
Shuo Diao s****o@a****m 31
Donald Stufft d****d@s****o 28
Michael Dowling m****g@g****m 23
Julie Solon j****o@a****m 22
Sanath Kumar Ramesh s****r@a****m 22
Erik Weber e****e@a****m 20
Illia Batozskyi i****z@a****m 17
Steve Yoo h****o@a****m 15
Nitin Gupta g****t@a****m 12
George Yoshida d****n@g****m 12
Yu Xiang Zhang y****z@a****m 12
Surya Vadan Adivikolanu a****l@a****m 11
Nordlund, Eric e****n@a****m 11
and 432 more...

Issues and Pull Requests

Last synced: 6 months ago

All Time
  • Total issues: 958
  • Total pull requests: 1,746
  • Average time to close issues: 7 months
  • Average time to close pull requests: 3 months
  • Total issue authors: 859
  • Total pull request authors: 252
  • Average comments per issue: 6.85
  • Average comments per pull request: 1.06
  • Merged pull requests: 913
  • Bot issues: 1
  • Bot pull requests: 294
Past Year
  • Issues: 212
  • Pull requests: 867
  • Average time to close issues: 18 days
  • Average time to close pull requests: 10 days
  • Issue authors: 193
  • Pull request authors: 88
  • Average comments per issue: 1.59
  • Average comments per pull request: 0.55
  • Merged pull requests: 494
  • Bot issues: 1
  • Bot pull requests: 133
Top Authors
Issue Authors
  • tim-finnigan (10)
  • RyanFitzSimmonsAK (7)
  • kellertk (6)
  • kloczek (5)
  • isleshocky77 (4)
  • justindho (3)
  • lcmgh (3)
  • acdha (3)
  • alex-rowe (3)
  • LozanoMatheus (3)
  • jgournet (3)
  • lcswillems (3)
  • evgenijkostin (3)
  • ghost (3)
  • ArjunDandagi (2)
Pull Request Authors
  • dependabot[bot] (214)
  • kdaily (162)
  • hssyoo (129)
  • aemous (124)
  • cli-v2-merge (109)
  • elysahall (89)
  • nateprewitt (84)
  • github-actions[bot] (80)
  • ashovlin (70)
  • AndrewAsseily (45)
  • kyleknap (36)
  • jonathan343 (32)
  • daniil-millwood (25)
  • Sergius-Nyah (22)
  • DavidSouther (19)
Top Labels
Issue Labels
bug (368) feature-request (309) p2 (247) p3 (221) response-requested (202) needs-triage (190) closed-for-staleness (188) s3 (95) documentation (79) service-api (75) guidance (50) customization (48) closing-soon (45) sso (42) configuration (36) installation (31) v2 (29) cloudformation package-deploy (28) s3sync (26) investigating (25) ec2 (25) duplicate (24) source-distribution (24) needs-review (21) dependencies (17) community (16) cross-sdk (15) iam (15) ecr (15) docker (14)
Pull Request Labels
dependencies (214) documentation (204) v2 (175) pr:needs-review (63) community (50) pr:work-in-progress (34) response-requested (31) ready-for-review (24) pr:ready-to-merge (23) v1 (21) customization (20) cloudformation package-deploy (19) github_actions (19) housekeeping (19) implementation (17) contribution:core (16) feature-request (13) needs-rebase (12) needs-review (11) accessibility (11) MLH (7) eks-kubeconfig (5) s3 (5) changes-requested (4) bug (3) codeartifact login (3) s3sync (2) sso (2) ecs-execute-command (2) emr (2)

Packages

  • Total packages: 73
  • Total downloads:
    • pypi 191,043,699 last-month
  • Total docker downloads: 808,647,639
  • Total dependent packages: 207
    (may contain duplicates)
  • Total dependent repositories: 11,413
    (may contain duplicates)
  • Total versions: 4,032
  • Total maintainers: 8
pypi.org: awscli

Universal Command Line Environment for AWS.

  • Versions: 2,234
  • Dependent Packages: 174
  • Dependent Repositories: 11,361
  • Downloads: 191,038,953 Last month
  • Docker Downloads: 808,647,639
Rankings
Downloads: 0.0%
Docker downloads count: 0.0%
Dependent repos count: 0.1%
Dependent packages count: 0.1%
Average: 0.1%
Forks count: 0.2%
Stargazers count: 0.3%
Maintainers (2)
Last synced: about 1 year ago
alpine-edge: aws-cli-completer

Universal Command Line Interface for Amazon Web Services (completions helper)

  • Versions: 11
  • Dependent Packages: 2
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.6%
Stargazers count: 1.1%
Average: 1.3%
Dependent packages count: 3.4%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.15: aws-cli-completer

Universal Command Line Interface for Amazon Web Services (completions helper)

  • Versions: 1
  • Dependent Packages: 5
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.6%
Stargazers count: 1.0%
Average: 1.8%
Dependent packages count: 5.5%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.13: aws-cli-completer

Universal Command Line Interface for Amazon Web Services (completions helper)

  • Versions: 1
  • Dependent Packages: 2
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.6%
Stargazers count: 1.1%
Average: 2.0%
Dependent packages count: 6.2%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.12: aws-cli-completer

Universal Command Line Interface for Amazon Web Services (completions helper)

  • Versions: 1
  • Dependent Packages: 2
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.7%
Stargazers count: 1.0%
Average: 2.1%
Dependent packages count: 6.7%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.16: aws-cli-completer

Universal Command Line Interface for Amazon Web Services (completions helper)

  • Versions: 1
  • Dependent Packages: 4
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.6%
Stargazers count: 1.0%
Average: 2.2%
Dependent packages count: 7.3%
Maintainers (1)
Last synced: 6 months ago
conda-forge.org: awscli
  • Versions: 1,127
  • Dependent Packages: 14
  • Dependent Repositories: 52
Rankings
Forks count: 1.8%
Stargazers count: 2.3%
Average: 3.4%
Dependent packages count: 4.5%
Dependent repos count: 4.9%
Last synced: 6 months ago
alpine-edge: aws-cli-pyc

Precompiled Python bytecode for aws-cli

  • Versions: 53
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.5%
Stargazers count: 1.1%
Average: 3.9%
Dependent packages count: 14.1%
Maintainers (1)
Last synced: 6 months ago
alpine-edge: aws-cli-bash-completion

Universal Command Line Interface for Amazon Web Services (v2) (bash completions)

  • Versions: 112
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.5%
Stargazers count: 1.0%
Average: 4.1%
Dependent packages count: 14.6%
Maintainers (1)
Last synced: 6 months ago
alpine-edge: aws-cli-doc

Universal Command Line Interface for Amazon Web Services (v2) (documentation)

  • Versions: 82
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.5%
Stargazers count: 1.0%
Average: 4.1%
Dependent packages count: 14.6%
Maintainers (1)
Last synced: 6 months ago
alpine-edge: aws-cli

Universal Command Line Interface for Amazon Web Services (v2)

  • Versions: 112
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.5%
Stargazers count: 1.0%
Average: 4.1%
Dependent packages count: 14.6%
Maintainers (1)
Last synced: 6 months ago
alpine-edge: aws-cli-zsh-completion

Universal Command Line Interface for Amazon Web Services (v2) (zsh completions)

  • Versions: 116
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.5%
Stargazers count: 1.0%
Average: 4.1%
Dependent packages count: 14.6%
Maintainers (1)
Last synced: 6 months ago
alpine-edge: aws-cli-v2-zsh-completion

Universal Command Line Interface for Amazon Web Services (v2) (zsh completions)

  • Versions: 5
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.5%
Stargazers count: 1.0%
Average: 4.1%
Dependent packages count: 14.6%
Maintainers (1)
Last synced: over 1 year ago
alpine-edge: aws-cli-v2-doc

Universal Command Line Interface for Amazon Web Services (v2) (documentation)

  • Versions: 4
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.5%
Stargazers count: 1.0%
Average: 4.1%
Dependent packages count: 14.6%
Maintainers (1)
Last synced: 6 months ago
alpine-edge: aws-cli-v2

Universal Command Line Interface for Amazon Web Services (v2)

  • Versions: 5
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.6%
Stargazers count: 1.1%
Average: 4.1%
Dependent packages count: 14.6%
Maintainers (1)
Last synced: over 1 year ago
alpine-edge: aws-cli-v2-completer

Universal Command Line Interface for Amazon Web Services (v2) (completions helper)

  • Versions: 2
  • Dependent Packages: 2
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.6%
Stargazers count: 1.1%
Average: 4.1%
Dependent packages count: 14.6%
Maintainers (1)
Last synced: over 1 year ago
alpine-edge: aws-cli-v2-bash-completion

Universal Command Line Interface for Amazon Web Services (v2) (bash completions)

  • Versions: 5
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.6%
Stargazers count: 1.1%
Average: 4.1%
Dependent packages count: 14.6%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.17: aws-cli-completer

Universal Command Line Interface for Amazon Web Services (completions helper)

  • Versions: 1
  • Dependent Packages: 1
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.6%
Stargazers count: 1.1%
Average: 5.2%
Dependent packages count: 19.0%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.17: aws-cli

Universal Command Line Interface for Amazon Web Services

  • Versions: 1
  • Dependent Packages: 1
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.6%
Stargazers count: 1.1%
Average: 5.2%
Dependent packages count: 19.0%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.13: aws-cli-doc

Universal Command Line Interface for Amazon Web Services (documentation)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.6%
Stargazers count: 1.1%
Average: 5.3%
Dependent packages count: 19.5%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.13: aws-cli

Universal Command Line Interface for Amazon Web Services

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.6%
Stargazers count: 1.1%
Average: 5.3%
Dependent packages count: 19.5%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.13: aws-cli-bash-completion

Universal Command Line Interface for Amazon Web Services (bash completions)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.6%
Stargazers count: 1.1%
Average: 5.3%
Dependent packages count: 19.5%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.13: aws-cli-zsh-completion

Universal Command Line Interface for Amazon Web Services (zsh completions)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.6%
Stargazers count: 1.1%
Average: 5.3%
Dependent packages count: 19.5%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.12: aws-cli-doc

Universal Command Line Interface for Amazon Web Services (documentation)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.7%
Stargazers count: 1.0%
Average: 5.8%
Dependent packages count: 21.5%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.12: aws-cli

Universal Command Line Interface for Amazon Web Services

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.7%
Stargazers count: 1.0%
Average: 5.8%
Dependent packages count: 21.5%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.12: aws-cli-zsh-completion

Universal Command Line Interface for Amazon Web Services (zsh completions)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.7%
Stargazers count: 1.0%
Average: 5.8%
Dependent packages count: 21.5%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.12: aws-cli-bash-completion

Universal Command Line Interface for Amazon Web Services (bash completions)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.7%
Stargazers count: 1.0%
Average: 5.8%
Dependent packages count: 21.5%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.14: aws-cli-zsh-completion

Universal Command Line Interface for Amazon Web Services (zsh completions)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.6%
Stargazers count: 1.0%
Average: 5.8%
Dependent packages count: 21.7%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.14: aws-cli-completer

Universal Command Line Interface for Amazon Web Services (completions helper)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.6%
Stargazers count: 1.0%
Average: 5.8%
Dependent packages count: 21.7%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.14: aws-cli-bash-completion

Universal Command Line Interface for Amazon Web Services (bash completions)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.6%
Stargazers count: 1.0%
Average: 5.8%
Dependent packages count: 21.7%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.14: aws-cli

Universal Command Line Interface for Amazon Web Services

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.6%
Stargazers count: 1.0%
Average: 5.8%
Dependent packages count: 21.7%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.14: aws-cli-doc

Universal Command Line Interface for Amazon Web Services (documentation)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.6%
Stargazers count: 1.0%
Average: 5.8%
Dependent packages count: 21.7%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.15: aws-cli-bash-completion

Universal Command Line Interface for Amazon Web Services (bash completions)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.6%
Stargazers count: 1.0%
Average: 6.8%
Dependent packages count: 25.6%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.15: aws-cli-doc

Universal Command Line Interface for Amazon Web Services (documentation)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.6%
Stargazers count: 1.0%
Average: 6.8%
Dependent packages count: 25.6%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.15: aws-cli

Universal Command Line Interface for Amazon Web Services

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.6%
Stargazers count: 1.0%
Average: 6.8%
Dependent packages count: 25.6%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.15: aws-cli-zsh-completion

Universal Command Line Interface for Amazon Web Services (zsh completions)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.6%
Stargazers count: 1.0%
Average: 6.8%
Dependent packages count: 25.6%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.16: aws-cli-zsh-completion

Universal Command Line Interface for Amazon Web Services (zsh completions)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.6%
Stargazers count: 1.0%
Average: 7.2%
Dependent packages count: 27.3%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.16: aws-cli-bash-completion

Universal Command Line Interface for Amazon Web Services (bash completions)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.6%
Stargazers count: 1.0%
Average: 7.2%
Dependent packages count: 27.3%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.16: aws-cli

Universal Command Line Interface for Amazon Web Services

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.6%
Stargazers count: 1.0%
Average: 7.2%
Dependent packages count: 27.3%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.16: aws-cli-doc

Universal Command Line Interface for Amazon Web Services (documentation)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.6%
Stargazers count: 1.0%
Average: 7.2%
Dependent packages count: 27.3%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.17: aws-cli-zsh-completion

Universal Command Line Interface for Amazon Web Services (zsh completions)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.6%
Stargazers count: 1.1%
Average: 7.2%
Dependent packages count: 27.3%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.17: aws-cli-doc

Universal Command Line Interface for Amazon Web Services (documentation)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.6%
Stargazers count: 1.1%
Average: 7.2%
Dependent packages count: 27.3%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.17: aws-cli-bash-completion

Universal Command Line Interface for Amazon Web Services (bash completions)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Forks count: 0.6%
Stargazers count: 1.1%
Average: 7.2%
Dependent packages count: 27.3%
Maintainers (1)
Last synced: 6 months ago
pypi.org: awsclii

Universal Command Line Environment for AWS.

  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Forks count: 0.1%
Stargazers count: 0.1%
Dependent packages count: 5.7%
Average: 9.2%
Dependent repos count: 30.9%
Last synced: about 1 year ago
pypi.org: awsclie

Universal Command Line Environment for AWS.

  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Forks count: 0.1%
Stargazers count: 0.1%
Dependent packages count: 5.7%
Average: 9.2%
Dependent repos count: 30.9%
Last synced: about 1 year ago
pypi.org: awscl

Universal Command Line Environment for AWS.

  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Forks count: 0.1%
Stargazers count: 0.1%
Dependent packages count: 5.7%
Average: 9.2%
Dependent repos count: 30.9%
Last synced: about 1 year ago
pypi.org: custom-awscli

Universal Command Line Environment for AWS.

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,746 Last month
Rankings
Forks count: 0.1%
Stargazers count: 0.1%
Dependent packages count: 7.5%
Average: 19.3%
Dependent repos count: 69.6%
Maintainers (1)
Last synced: 6 months ago
anaconda.org: awscli

This package provides a unified command line interface to Amazon Web Services.

  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent packages count: 46.1%
Average: 48.3%
Dependent repos count: 50.6%
Last synced: 6 months ago
alpine-v3.20: aws-cli

Universal Command Line Interface for Amazon Web Services (v2)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Last synced: 6 months ago
alpine-v3.21: aws-cli-doc

Universal Command Line Interface for Amazon Web Services (v2) (documentation)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.19: aws-cli-pyc

Precompiled Python bytecode for aws-cli

  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.18: aws-cli-doc

Universal Command Line Interface for Amazon Web Services (v2) (documentation)

  • Versions: 20
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.21: aws-cli-zsh-completion

Universal Command Line Interface for Amazon Web Services (v2) (zsh completions)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.19: aws-cli-bash-completion

Universal Command Line Interface for Amazon Web Services (v2) (bash completions)

  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.20: aws-cli-doc

Universal Command Line Interface for Amazon Web Services (v2) (documentation)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Last synced: 6 months ago
alpine-v3.19: aws-cli-doc

Universal Command Line Interface for Amazon Web Services (v2) (documentation)

  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.20: aws-cli-pyc

Precompiled Python bytecode for aws-cli

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Last synced: 6 months ago
alpine-v3.22: aws-cli-pyc

Precompiled Python bytecode for aws-cli

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.20: aws-cli-bash-completion

Universal Command Line Interface for Amazon Web Services (v2) (bash completions)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Last synced: 6 months ago
alpine-v3.19: aws-cli-zsh-completion

Universal Command Line Interface for Amazon Web Services (v2) (zsh completions)

  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.18: aws-cli-zsh-completion

Universal Command Line Interface for Amazon Web Services (v2) (zsh completions)

  • Versions: 20
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.18: aws-cli-pyc

Precompiled Python bytecode for aws-cli

  • Versions: 20
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.19: aws-cli

Universal Command Line Interface for Amazon Web Services (v2)

  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.20: aws-cli-zsh-completion

Universal Command Line Interface for Amazon Web Services (v2) (zsh completions)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Last synced: 6 months ago
alpine-v3.18: aws-cli-bash-completion

Universal Command Line Interface for Amazon Web Services (v2) (bash completions)

  • Versions: 20
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.22: aws-cli-bash-completion

Universal Command Line Interface for Amazon Web Services (v2) (bash completions)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.21: aws-cli-bash-completion

Universal Command Line Interface for Amazon Web Services (v2) (bash completions)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.22: aws-cli

Universal Command Line Interface for Amazon Web Services (v2)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.21: aws-cli

Universal Command Line Interface for Amazon Web Services (v2)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.22: aws-cli-zsh-completion

Universal Command Line Interface for Amazon Web Services (v2) (zsh completions)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.21: aws-cli-pyc

Precompiled Python bytecode for aws-cli

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.18: aws-cli

Universal Command Line Interface for Amazon Web Services (v2)

  • Versions: 20
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago
alpine-v3.22: aws-cli-doc

Universal Command Line Interface for Amazon Web Services (v2) (documentation)

  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 0.0%
Dependent packages count: 0.0%
Average: 100%
Maintainers (1)
Last synced: 6 months ago

Dependencies

setup.py pypi
  • PyYAML >=3.10,<5.5
  • botocore ==1.27.27
  • colorama >=0.2.5,<0.4.5
  • docutils >=0.10,<0.17
  • rsa >=3.1.2,<4.8
  • s3transfer >=0.6.0,<0.7.0
requirements-check.txt pypi
  • check-manifest ==0.37
  • setuptools >=43.0
requirements-dev-lock.txt pypi
  • atomicwrites ==1.4.1
  • attrs ==21.4.0
  • colorama ==0.4.4
  • coverage ==5.5
  • importlib-metadata ==4.12.0
  • iniconfig ==1.1.1
  • packaging ==21.3
  • pluggy ==1.0.0
  • py ==1.11.0
  • pyparsing ==3.0.9
  • pytest ==6.2.5
  • pytest-cov ==2.12.1
  • toml ==0.10.2
  • typing-extensions ==4.3.0
  • wheel ==0.37.0
  • zipp ==3.8.0
requirements-dev.txt pypi
  • atomicwrites >=1.0
  • colorama >0.3.0
  • coverage ==5.5
  • pytest ==6.2.5
  • pytest-cov ==2.12.1
  • wheel ==0.37.0
requirements-docs.txt pypi
  • Sphinx ==1.3.2
  • docutils >=0.10,<0.17
  • jinja2 <3.1
.github/workflows/closed-issue-message.yml actions
  • aws-actions/closed-issue-message v1 composite
.github/workflows/run-tests.yml actions
  • actions/checkout v3 composite
  • actions/setup-python v4 composite
.github/workflows/stale_community_prs.yml actions
  • actions/stale 3cc123766321e9f15a6676375c154ccffb12a358 composite
.github/workflows/stale_issue.yml actions
  • aws-actions/stale-issue-cleanup v4 composite
.github/workflows/changelog.yml actions
  • actions/checkout v4 composite
  • actions/setup-python v4 composite
.github/workflows/fail-master-prs.yml actions
.github/workflows/handle-stale-discussions.yml actions
  • aws-github-ops/handle-stale-discussions v1 composite
.github/workflows/update-lockfiles.yml actions
  • actions/checkout v4 composite
  • actions/setup-python v4 composite
pyproject.toml pypi
requirements.txt pypi