Metadata-Version: 1.1
Name: pysaba
Version: 1.1.0
Summary: Sabat client library for API management
Home-page: https://github.com/tonybaloney/pysaba
Author: Anthony Shaw
Author-email: anthonyshaw@apache.org
License: Apache License (2.0)
Description: sabat
        ===========
        
        .. image:: https://img.shields.io/pypi/v/pysaba.svg
                :target: https://pypi.python.org/pypi/pysaba
        
        .. image:: https://img.shields.io/travis/tonybaloney/pysaba.svg
                :target: https://travis-ci.org/tonybaloney/pysaba
        
        .. image:: https://readthedocs.org/projects/pysaba/badge/?version=latest
                :target: https://readthedocs.org/projects/pysaba/?badge=latest
                :alt: Documentation Status
        
        
        Saba client library for API management
        
        * Free software: Apache-2 license
        * Documentation: https://pysaba.readthedocs.org.
        
        Features
        --------
        
        * Certificate authentication
        
        Usage
        -----
        
        .. code-block:: python
        
            from saba.client import SabaClient
            from saba.auth.certificate import CertificateAuthentication
            
            host = 'mycompany-api.sabacloud.com'
            user = 'me'
            password = 'password'
            
            cert = CertificateAuthentication(host, user, password)
            
            client = SabaClient(host, cert)
            
            print(client.courses.all())
        
        
        =======
        History
        =======
        
        0.1.0 (22nd March 2017)
        -----------------------
        
        * First beta release on PyPI.
        
Keywords: sabat
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
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: Programming Language :: Python :: 3.5
