Content validator against profanity & obscenity
PurgoMalum is a free, RESTful web service for filtering and removing profanity and obscenity from input text, offering customizable replacement options.
import requests
url = "https://www.purgomalum.com/service/json"
params = {
"text": "This is some test input with a badword.",
"fill_text": "***"
}
response = requests.get(url, params=params)
print(response.json())Last 50 checks (10 min intervals)