Metadata-Version: 1.1
Name: python-adjutantclient
Version: 0.2.2
Summary: Adjutant API Client Library
Home-page: https://github.com/catalyst/python-adjutantclient
Author: Adrian Turjak
Author-email: adriant@catalyst.net.nz
License: UNKNOWN
Description: AdjutantClient is a command-line and python client for Adjutant.
        
        Getting Started
        ===============
        
        Adjutant Client can be installed from PyPI using pip:
        
        ::
        
            pip install python-openstackclient python-adjutantclient
        
        
        The command line client is installed as a plugin for the OpenStack client.
        
        Python API
        ==========
        
        In order to use the python api directly, you must first obtain an auth
        token and identify which endpoint you wish to speak to::
        
          >>> adjutant_url = 'http://adjutant.example.org:8004/v1/'
          >>> auth_token = '3bcc3d3a03f44e3d8377f9247b0ad155'
        
        Once you have done so, you can use the API like so::
        
          >>> from adjutantclient.client import Client
          >>> adjutant = Client('1', endpoint=adjutant_url, token=auth_token)
        
        An auth token isn't needed for accessing signup, user.password_forgot(),
        token.submit() or token.get().
        
        
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 :: 2.6
