From 9fee1ed6f129334ae9d4358092b65089f73dcc6a Mon Sep 17 00:00:00 2001 From: Carlos Derich Date: Thu, 8 Dec 2022 19:46:45 -0500 Subject: [PATCH] readme: add setup part --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 3b68e40..e6e7c86 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,16 @@ To install Klotty Python SDK, simply execute the following command in a terminal pip install klotty ``` +## Setup + +First, you need to get an API key, which is available in the [Klotty Dashboard](https://klotty.com). + +```py +from klotty import Klotty + +client = Klotty(api_key="kl_123") +``` + ## Example ```py