> ## 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.

# 人が読める形式の run 名にプログラムからアクセスするにはどうすればよいですか?

[`wandb.Run`](/ja/models/ref/python/experiments/run) の `.name` 属性にアクセスするには、次のコードを使用します。

```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](/ja/support/models/tags/experiments)</Badge>
