/wodby-sdk-python

Wodby Python SDK

Primary LanguagePythonMIT LicenseMIT

Wodby SDK Python

TravisCI PyPi

The Wodby SDK for Python makes it easy for developers to access Wodby in their Python code. You can get started in minutes by installing the SDK through Composer or by downloading a single zip.


Table of Contents

Documentation

Basic usage

Install wodby client:

pip install wodby

Fetch user`s organizations:

import os
import wodby
from pprint import pprint

configuration = wodby.Configuration()
configuration.api_key['X-API-KEY'] = os.environ['WODBY_API_KEY']

org_api = wodby.OrganizationApi(wodby.ApiClient(configuration))
org_api.get_orgs()