Delete a projet with the API or some other programmatic way

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!