Metadata-Version: 1.1
Name: httpie-aws-auth
Version: 0.0.2
Summary: AWS/S3 auth plugin for HTTPie.
Home-page: https://github.com/jkbrzt/httpie-aws-auth
Author: Jakub Roztocil
Author-email: jakub@roztocil.co
License: BSD
Download-URL: https://github.com/jkbrzt/httpie-aws-auth
Description: httpie-aws-auth
        ===============
        
        AWS auth plugin for `HTTPie <https://github.com/jkbr/httpie>`_.
        
        
        Installation
        ============
        
        .. code-block:: bash
        
            $ pip install httpie-aws-auth
        
        
        You should now see ``aws`` under ``--auth-type / -A`` in ``$ http --help`` output.
        
        
        Usage
        =====
        
        
        Credentials on the CLI:
        -----------------------
        
        The syntax and behavior is the same as with the basic auth.
        
        
        Specify both access key ID and secret
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        
        .. code-block:: bash
        
            http --auth-type aws -a ACCESSKEYXXX:AWSSECRETKEYXXX http://bucket.s3.amazonaws.com/test
        
        
        Specify only the key
        ~~~~~~~~~~~~~~~~~~~~
        
        There'll be a password prompt:
        
        .. code-block:: bash
        
            $ http -A aws -a ACCESSKEYXXX http://bucket.s3.amazonaws.com/test
            http: password for ACCESSKEYXXX@bucket.s3.amazonaws.com:
        
        
        Auth via the ``AWS_*`` environment variables
        --------------------------------------------
        
        The names are identical to what
        `AWS CLI <https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-getting-started.html#cli-environment>`_
        and other tools use, so you might be already good to go.
        
        
        .. code-block:: bash
        
            export AWS_ACCESS_KEY_ID=ACCESSKEYXXX
            export AWS_SECRET_ACCESS_KEY=AWSSECRETKEYXXX
        
            http -A aws http://bucket.s3.amazonaws.com/test
        
        
        Implementation
        --------------
        
        This plugin uses https://github.com/tax/python-requests-aws
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Environment :: Plugins
Classifier: License :: OSI Approved :: BSD License
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Utilities
