from linode_py import Client
from os import getenv
client = Client(oauth_token_1=getenv("API_TOKEN"), token=getenv("API_TOKEN"))
from linode_py import AsyncClient
from os import getenv
client = AsyncClient(oauth_token_1=getenv("API_TOKEN"), token=getenv("API_TOKEN"))
See SDK Examples for example usage of all SDK functionality