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

# Dataset.collection

```python theme={"system"}
def Dataset.collection(name: str) -> Collection
```

Access a specific collection by its name.

## Parameters

<ParamField path="name" type="string">
  The name of the collection
</ParamField>

## Returns

A collection object.

<RequestExample>
  ```python Python theme={"system"}
  collection = dataset.collection("My-collection")
  ```
</RequestExample>

## Errors

<ParamField path="NotFoundError" type="No such collection: Non-existent-Collection">
  The specified collection does not exist in the dataset.
</ParamField>
