# Upload assets to your Lake

### With the Platform

Uploading assets to your Lake is really simple, once on your "Datalake" page

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

To upload data, just click on Upload Data on the top right of the page.

Then select the assets you want to upload, **and add tags if you want,** once you've typed a tag, do not forget to press ENTER to validate it.&#x20;

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

Then click on upload 🚀 !

### With the 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")
```

Then simply pass the absolute path of the assets to upload.

```python
clt.datalake.picture.upload(filepath=filepath, tags=['AAA', 'BBB'])
```

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/upload-assets-to-your-lake.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.
