Skip to main content

Skeddly SDK for Python

Project description

Skeddly SDK for Python

The official Skeddly SDK for Python.

Build status

Requirements

  • Python 3.6 or later

Installation

Install the SDK using pip.

pip install skeddly-sdk

Usage

Step 1: In your .py file, import the Skeddly namespace:

import skeddly

Step 2: Create a configuration file in ~/.skeddlyrc:

[default]
accessKey=sk_12345678901234567890123456789012

The default section header is required.

Step 3: Create your client object:

client = skeddly.Client()

Step 4: Call the Skeddly API:

actions = client.list_actions(
    filter={
        "actionTypes": "amazon-start-ec2-instances"
    })

Per-Client Configuration

If you want to set the Skeddly access key via code rather than in the ~/skeddlyrc file, you can do so by passing the access key into the client constructor:

client = skeddly.Client(accessKey="sk_12345678901234567890123456789012")

Data Formats

Responses

Unless otherwise mentioned, responses are dict.

actions = client.list_actions()
for action in actions:
    print("Action ID: " + action["actionId"])
    print("Action Name: " + action["name"])

Additional Resources

Getting Help

SDK Bugs

If you think you found a bug in the code of this SDK, feel free to create an issue.

Missing Functionality

If a method if missing from this library that is in the Skeddly API Documentation, feel free to create an issue.

Pull Requests

We can accept pull requests. Our review requirements are strict though :)

All Other Help

Please contact us.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

skeddly-sdk-1.0.8.tar.gz (3.7 kB view hashes)

Uploaded Source

Built Distribution

skeddly_sdk-1.0.8-py3-none-any.whl (6.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page