Python module that replaces inappropriate words with something more PG rated.
f = Filter('badword and bad words', clean_word='unicorn')
safe_string = f.clean()
print safe_string
Python module that replaces inappropriate words with something more PG rated.
Python