Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 403 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 403 Bytes

Sana Labs Unofficial Python API

Python library for Sana APIS (https://sanalabs.com/developer/).

Initialization

# first initialize api key

import sana
sana.SANA_API_REGION = 'EU' # or US
sana.SANA_API_KEY = 'Your API key'

# now import any submodule you want.

from sana.learn import get_base_url
get_base_url() # 'https://api.sanalabs.com'

Asset Management

WIP