🪴 Daily gardening

Search

Search IconIcon to open search

unleash

Last updated Jan 1, 2023

# Feature 토글 타입

# API Token 만들기

# SDK 연결하기 - Python

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
from UnleashClient import UnleashClient  
  
client = UnleashClient(  
url="`https://us.app.unleash-hosted.com/**/api/",  # 위에서 받은 API URL 입력
app_name="cheese", # 나중에 admin ui에서 applications에 뜬다.  
custom_headers={'Authorization': '<API token>'})  # 위에서 만든 API token Thpe "Client"
  
client.initialize_client()  
  
client.is_enabled("unleash.beta.variants")

# References