Hi again! Could we get an answer from @system about this? There are other posts from previous years with many views asking for the same thing without an official/final solution
Hi @davideseddio , thanks for writing in! You can only delete projects from the UI but you can use our Public API to delete every run under the desired project like:
import wandb
runs = wandb.Api().runs("<entity-name>/<project-name>")
for run in runs:
run.delete()
Please let me know if this would be useful!
How can I efficiently delete multiple projects in my development environment? I currently have more than one hundred projects, many of which are no longer relevant, and I would like to clean up my workspace.
Manually deleting each project one by one is quite time-consuming. Is there a more efficient method or script I can use to delete projects in bulk? Any suggestions would be greatly appreciated. Thank you!