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.
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()