> ## Documentation Index
> Fetch the complete documentation index at: https://wb-21fd5541-docs-1917.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# 한 번에 하나씩 삭제하는 대신 여러 run을 일괄 삭제하려면 어떻게 해야 하나요?

여러 run을 한 번에 삭제하려면 [public API](/ko/models/ref/python/public-api/api)를 사용하세요:

```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>
