시작하기
Mindkosh SDK를 시작하는 방법
SDK 설정하기
pip install mindkosh클라이언트 초기화하기
## 클라이언트 초기화
client = mindkosh.Client(
token = <"Your token here">,
)마지막 업데이트
tasks = client.task.get()
print(f"Found {len(tasks)} tasks")
for task in tasks:
print(task.name)