How Do I Delete My Algorithm From MAS?

Example of registered algorithm ids: registered_algorithms

The code snippet below will delete an algorithm registered as “test:develop”.

from maap.maap import MAAP
maap = MAAP(maap_host='api.maap-project.org')

algorithm_name = "test"
branch = "develop"

# Takes in an algorithm id
maap.deleteAlgorithm(f"{algorithm_name}:{branch}")
[ ]: