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

# Comment puis-je accéder par programmation au nom de l'exécution en clair ?

Pour accéder à l’attribut `.name` d’un [`wandb.Run`](/fr/models/ref/python/experiments/run), utilisez le code suivant :

```python theme={null}
import wandb

with wandb.init() as run:
   run_name = run.name
   print(f"The human-readable run name is: {run_name}")
```

***

<Badge stroke shape="pill" color="orange" size="md">[Experiments](/fr/support/models/tags/experiments)</Badge>
