Metadata-Version: 1.1
Name: hp-sdn-client
Version: 0.4.0
Summary: A python library to make interacting with the HP SDN Controller REST API easy
Home-page: https://github.com/dave-tucker/hp-sdn-client
Author: Dave Tucker, Hewlett-Packard Development Company, L.P
Author-email: dave.j.tucker@hp.com
License: Apache License, Version 2.0
Description: HP SDN Client
        =============
        
        **A Python library that makes interaction with the HP SDN Controller REST API easy**
        
        Author: Dave Tucker, Hewlett Packard
        
        This library is currently developed against the HP SDN Controller v2.0 API
        
        Usage Example
        -------------
        
            import hpsdnclient as hp
        
            controller = '10.44.254.129'
        
            auth = hp.XAuthToken(user='sdn', password='skyline', server=controller)
        
            api = hp.Api(controller=controller, auth=auth)
        
        
        Sample Application
        ------------------
        
        Please see examples/short_detour.py
        
        Running the Tests
        -----------------
        
        The unit tests can be run with tox. Make sure you have modified hpsdnclient/tests/tests.py before you run.
        
        	tox -e py27 -v -- -v
        
        tox.ini has py26, py27 and py33 environments. Only py26 and py27 have been tested right now
        
        ToDo
        ----
        
        Items still to do:
        
        - Better unit test coverage
        - Implement the cache
        - Python 3.3 compatibility
        - Documentation (Sphinx)
        
Keywords: hp,sdn,rest,api
Platform: UNKNOWN
Classifier: Environment :: Console
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
