Delete a projet with the API or some other programmatic way

Is it possible to delete a project programmatically, or can it be done only through the UI?

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!

Hi Davide, since we have not heard back from you we are going to close this request. If you would like to re-open the conversation, please let us know!

it does not really achieve what I am trying to do. I would like to delete a project, not the runs within a project.

1 Like

This would be a nice feature

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.