> For the complete documentation index, see [llms.txt](https://docs.mindkosh.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.mindkosh.com/ko/python-sdk/getting-started.md).

# 시작하기

[Github 저장소](https://github.com/Mindkosh/mindkosh-python-sdk)

[예제 스크립트](https://github.com/Mindkosh/mindkosh-python-sdk/tree/develop/examples)

[PyPi](https://pypi.org/project/mindkosh/)

### SDK 설정하기

SDK를 설정하는 데 가장 먼저 필요한 것은 개인 액세스 토큰입니다. <support@mindkosh.com>으로 이메일을 보내거나 Slack/전화로 문의하시면 받을 수 있습니다.&#x20;

{% hint style="info" %}
SDK 접근은 유료 사용자에게만 제공된다는 점에 유의하세요.
{% endhint %}

다음으로 SDK를 설치해야 합니다. Mindkosh SDK는 Pypi 패키지로 제공되며, 다음과 같이 pip을 사용해 설치할 수 있습니다:

```py
pip install mindkosh
```

이 SDK는 Python 3.9에서 테스트되었습니다. 다른 버전에서도 동작할 수 있지만, 해당 버전들은 테스트되지 않았으며 호환성이 보장되지 않습니다. mindkosh는 별도의 Python 환경에 설치하는 것이 좋습니다.

### 클라이언트 초기화하기

SDK로 무엇이든 하려면 먼저 SDK 토큰을 사용해 클라이언트를 생성해야 합니다. 다음과 같이 할 수 있습니다:

```py
## 클라이언트 초기화
client = mindkosh.Client(
    token = <"Your token here">,
)
```

워크스페이스에 있는 모든 작업 목록을 가져와서 이것이 성공했는지 확인할 수 있습니다.

```py
tasks = client.task.get()
print(f"Found {len(tasks)} tasks")
for task in tasks:
    print(task.name)
```
