How Do I Delete My Algorithm From MAS?
Example of registered algorithm ids: 
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')
# Takes in a process id which you can find on the algorithm catalog
maap.delete_algorithm(process_id=1)
[ ]: