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

# Datazone SDK

> Learn how to use Datazone SDK to access and manage your data in Datazone in your local environment.

### Get Dataset as Pandas Dataframe

<Info>
  Before use the Datazone SDK, you need to create a profile. It always use the default profile.
  Check the [Installation](/installation) section for more information.
</Info>

```python theme={null}
from datazone.sdk.client import DatazoneClient

client = DatazoneClient()
df = client.get_dataset_as_pandas(id="<dataset-id>")
```
