How can I delete multiple runs in bulk instead of one at a time?

public API를 사용하여 단일 작업에서 여러 개의 runs을 삭제합니다.

import wandb

api = wandb.Api()
runs = api.runs('<entity>/<project>')
for run in runs:
    if <condition>:
        run.delete()