Metadata-Version: 1.1
Name: scalr-api
Version: 1.0.1
Summary: Scalr REST API Python Wrapper
Home-page: https://github.com/Nrupesh29/scalr-api
Author: Nrupesh Patel
Author-email: nrupesh.patel2912@gmail.com
License: MIT
Download-URL: https://github.com/Nrupesh29/scalr-api
Description: ========================
        Scalr Python API Wrapper
        ========================
        
        .. image:: https://badge.fury.io/py/scalr-api.svg
            :target: https://badge.fury.io/py/scalr-api
        .. image:: https://img.shields.io/pypi/l/scalr-api.svg
            :target: https://pypi.python.org/pypi/scalr-api/
        .. image:: https://api.codacy.com/project/badge/Grade/c73aa1a661124abc95af293cbd4a2743
           :target: https://app.codacy.com/manual/Nrupesh29/scalr-api?utm_source=github.com&utm_medium=referral&utm_content=Nrupesh29/scalr-api&utm_campaign=Badge_Grade_Dashboard
        
        Install
        -------
        
        .. code-block:: console
        
           $ pip install scalr-api
        
        
        Examples
        --------
        
        Here is an example of how to delete a Scalr role:
        
        .. code-block:: python
        
            from scalr import ScalrUserAPI
        
            scalr = ScalrUserAPI(
                        url='https://your-scalr-host/',
                        key_id='your_scalr_key_id',
                        secret_key='your_scalr_secret_key',
                        env_id=your_scalr_environment_id
                    )
        
            scalr.role_delete(role_id=your_role_id)
        
        
        Credits
        -------
        
        * Scalr_ for providing examples on how to use Scalr API v2.
        
        .. _Scalr: https://github.com/scalr-tutorials/apiv2-examples
        
Keywords: scalr infrastructure software rest api
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Libraries :: Python Modules
