scalr-api

Scalr REST API Python Wrapper


Keywords
scalr, infrastructure, software, rest, api
License
MIT
Install
pip install scalr-api==1.0.1

Documentation

Scalr Python API Wrapper

https://api.codacy.com/project/badge/Grade/c73aa1a661124abc95af293cbd4a2743

Install

$ pip install scalr-api

Examples

Here is an example of how to delete a Scalr role:

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.