> ## Documentation Index
> Fetch the complete documentation index at: https://qreater.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Getting Started

The `tartarus-lib` library is a Python client designed to simplify interactions with the Tartarus configuration store API. The developers can seamlessly integrate Tartarus into their Python applications without worrying about low-level API calls.

To install the library, use `pip`

```bash theme={null}
pip install tartarus-lib
```

***

## TartarusAPIClient

The primary class to interact with Tartarus.

#### Initialization

```py theme={null}
from tartarus_lib import TartarusAPIClient

tartarus = TartarusAPIClient(
    base_url="BASE_URL",
    api_key="API_KEY"
)
```

<ParamField path="base_url" type="string" required="true">
  Base URL of your Tartarus instance.
</ParamField>

<ParamField path="api_key" type="string" required="true">
  API key for authentication.
</ParamField>
