Metadata-Version: 1.0
Name: awsamigo
Version: 0.1.0
Summary: Wrapper for quick & easy AMI lookup via boto3.
Home-page: http://github.com/baccenfutter/awsamigo
Author: Brian Wiborg
Author-email: baccenfutter@c-base.org
License: LICENCE.txt
Description: # AWS AMIgo
        
        Python package for quick and easy lookup of AWS AMI images.
        
        ## Installation
        
        ```bash
        # For users:
        pip install awsamigo
        
        
        # For developers:
        mkvirtualenv awsamigo  # perhaps: `apt install virtualenvwrapper`, first
        git clone https://github.com/baccenfutter/awsamigo
        cd awsamigo
        setvirtualenvproject
        pip install -e .
        ```
        
        ## Usage
        
        ```
        awsamigo - Quickly find the right AWS AMI ID for your instances.
        
        Usage:
            awsamigo (-h | --help)
            awsamigo --version
            awsamigo search <distro> [--region=<region>]
                                     [--image-name=<name>]
                                     [--arch=<arch>]
                                     [--image-type=<image_type>]
                                     [--hypervisor=<hypervisor>]
                                     [--virt-type=<virt_type>]
                                     [--device-type=<device_type>]
                                     [--state=<state>]
                                     [--description=<description>]
            awsamigo latest <distro> [--region=<region>]
                                     [--only-id | --only=<only_attr>]
                                     [--image-name=<name>]
                                     [--arch=<arch>]
                                     [--image-type=<image_type>]
                                     [--hypervisor=<hypervisor>]
                                     [--virt-type=<virt_type>]
                                     [--device-type=<device_type>]
                                     [--state=<state>]
                                     [--description=<description>]
        
        Options:
            -h --help                   Show this help and exit
            --version                   Print version and exit
            --region=<region>           AWS region to connect to [default: eu-west-1]
            --image-name=<name>         Only lookup image-names matchin this pattern [default: ubuntu/images/*16.04]
            --arch=<arch>               Display only images of this architecture [default: x86_64]
            --hypervisor=<hypervisor>   Display only images of this hypervisor [default: xen]
            --virt-type=<virt_type>     Display only images of this virtualization-type [default: hvm]
            --device-type=<device_type> Display only images with this root-device type [default: ebs]
            --image-type=<image_type>   Display only images of this machine-type [default: machine]
            --state=<state>             Display only images in this state [default: available]
            --description=<description> Display only images with this description
            --only-id                   Display only the image-id
            --only=<only>               Display only the given attribute of the found image(s)
        ```
Keywords: tool development aws ami
Platform: UNKNOWN
