> ## Documentation Index
> Fetch the complete documentation index at: https://wb-21fd5541-docs-hivemind-launch.mintlify.site/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 ?

L'attribut `.name` d'un [`wandb.Run`](/fr/models/ref/python/experiments/run) est accessible comme suit :

```python theme={null}
import wandb

with wandb.init() as run:
   run_name = run.name
   print(f"Le nom de l'exécution lisible par un humain est : {run_name}")
```

***

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