Metadata-Version: 2.0
Name: os-http
Version: 0.1.0
Summary: Simple HTTP CLI for OpenStack
Home-page: http://www.openstack.org/
Author: OpenStack
Author-email: openstack-dev@lists.openstack.org
License: UNKNOWN
Platform: UNKNOWN
Classifier: Environment :: OpenStack
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Requires-Dist: Babel (>=1.3)
Requires-Dist: keystoneauth1
Requires-Dist: os-client-config
Requires-Dist: pbr (>=1.4,<2.0)
Requires-Dist: pygments

===============================
os-http
===============================

Simple HTTP CLI for OpenStack

A common problem I have in development is needing to make a request against an
authenticated request against an OpenStack API "correctly" (using the catalog,
real authentication, version discovery etc).

os-http is a httpie_ inspired wrapper around basic keystoneauth_ functionality
that can make and display the response to HTTP requests against openstack
services.

* Free software: Apache license
* Source: https://github.com/jamielennox/os-http

.. _httpie: http://httpie.org/
.. _keystoneauth: https://github.com/openstack/keystoneauth

Usage
-----

.. code-block:: bash

    source accrc  # load your cloud authentication
    os-http --os-service-type image \
            --os-api-version 2      \
            --os-interface public   \
            --os-region RegionTwo   \
            get /images



