Skip to content

Latest commit

 

History

History
29 lines (17 loc) · 566 Bytes

README.md

File metadata and controls

29 lines (17 loc) · 566 Bytes

Account Python SDK

Overview

Read the API documentation.

Synchronous Client

from linode_py import Client
from os import getenv

client = Client(oauth_token_1=getenv("API_TOKEN"), token=getenv("API_TOKEN"))

Asynchronous Client

from linode_py import AsyncClient
from os import getenv

client = AsyncClient(oauth_token_1=getenv("API_TOKEN"), token=getenv("API_TOKEN"))

SDK Usage

See SDK Examples for example usage of all SDK functionality