# Edit Tags for Pictures

### With the Platform

Tags allow you to quickly search for pictures in your Lake

From your "Data lake" tab you can select the pictures on which you want to add or delete some tags.&#x20;

![](/files/-Me-sOxJ8_ThlxY25nUE)

![](/files/-McA3Hn9pZpiO7uNl3Ow)

Once pictures have been selected you can click on add or delete tags.

![](/files/-Me-sxyVfqtCVJrB4-zn)

To delete a tag, you can click on "x" 🚀

{% hint style="warning" %}
Note that we do not allow tag edition, if you want to change the name of a tag, please delete it and then add another one with the desired name 🚨
{% endhint %}

### With Python SDK

```python
pip install picsellia
```

First make sure that you have Picsellia Python package installed&#x20;

then you will need to initialize the Client with your API Token, available in you profile page.

```python
from picsellia.client import Client
clt = Client(api_token="your token")
```

you can now search some assets on your lake with de datalake.fetch() method:

```python
pictures = clt.datalake.picture.fetch(quantity=1, tags=['tag1'])
```

You can use Client.datalake.pictures.status() to vizualize the fetched assets &#x20;

then you can add or remove tags on the fetched assets &#x20;

```python
clt.datalake.picture.remove_tag(tags=['tag1'])
clt.datalake.picture.add_tag(tags=['tag2'])
```

You can find a complete reference to the SDK [here](/picsellia/references-1/python-sdk-reference-1.md).


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://picsellia.gitbook.io/picsellia/data-management/edit-tags-for-pictures.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
