> ## 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을 일괄 삭제하려면 어떻게 해야 하나요?

Workspace의 **Runs** 탭에서 삭제할 각 run 옆의 체크박스를 선택한 다음 **Delete**를 클릭하세요.

수동으로 선택하는 대신 조건으로 run을 필터링하려면 [public API](/ko/models/ref/python/public-api/api)를 사용해 여러 run을 한 번에 삭제하세요. `[ENTITY]`와 `[PROJECT]`를 entity 및 프로젝트 이름으로 바꾸고, `[CONDITION]`을 삭제할 run에 대해 `True`로 평가되는 Python 표현식으로 바꾸세요:

```python theme={null}
import wandb

api = wandb.Api()
runs = api.runs('[ENTITY]/[PROJECT]')
for run in runs:
    if [CONDITION]:
        run.delete()
```

***

<Badge stroke shape="pill" color="orange" size="md">[Projects](/ko/support/models/tags/projects)</Badge><Badge stroke shape="pill" color="orange" size="md">[Runs](/ko/support/models/tags/runs)</Badge>
