AWS CLI Utilities (eofs/aws)

0.2.5 · abandoned · verified Thu Apr 16

This library, `aws` by 'eofs', is a utility designed to manage Amazon Web Services and execute Fabric tasks against filtered sets of EC2 instances. It acts as a command-line interface and wrapper for the older `boto` library and `Fabric`. The project is largely unmaintained, with its last release (v0.2.5) in June 2013 and development primarily targeting Python 2.7.

Common errors

Warnings

Install

Quickstart

The library primarily functions as a command-line utility. Ensure `AWS_ACCESS_KEY_ID` and `AWS_SECRET_ACCESS_KEY` environment variables are set for authentication. Direct programmatic imports for general use are not documented, with most functionality exposed via its CLI.

import os

os.environ['AWS_ACCESS_KEY_ID'] = os.environ.get('AWS_ACCESS_KEY_ID', 'YOUR_ACCESS_KEY_ID')
os.environ['AWS_SECRET_ACCESS_KEY'] = os.environ.get('AWS_SECRET_ACCESS_KEY', 'YOUR_SECRET_ACCESS_KEY')

# This library is primarily a command-line utility.
# The following shows how to interact with its CLI help.
# Direct Python imports are not a primary documented use case.
# You would typically run 'aws --help' from your terminal.
# Example CLI command (cannot be run directly in Python without subprocess):
# print("$ aws --help")
# print("$ aws ec2 --help")

view raw JSON →