Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Like http://stackoverflow.com/questions/1521646/best-profanity-filter, but for Python — and I’m looking for libraries I can run and control myself locally, as opposed to web services.

(And whilst it’s always great to hear your fundamental objections of principle to profanity filtering, I’m not specifically looking for them here. I know profanity filtering can’t pick up every hurtful thing being said. I know swearing, in the grand scheme of things, isn’t a particularly big issue. I know you need some human input to deal with issues of content. I’d just like to find a good library, and see what use I can make of it.)

share|improve this question
Well I thought your tag was amusing. Perhaps easy_install d_roseman would work? – Adam Aug 20 '10 at 14:33
4  
Human moderation? – Nick T Aug 20 '10 at 14:45
1  
Whoops, did I leave that tag in? Heh! Sweet. – Paul D. Waite Aug 20 '10 at 15:04
2  
No accepted answer? – leoluk Aug 24 '10 at 14:16
5  
Clbuttic question! – Peter K. Oct 7 '10 at 1:11
show 6 more comments

7 Answers

up vote 19 down vote accepted
+250

I didn't found any Python profanity library, so I made one myself.

Parameters


filterlist

A list of regular expressions that match a forbidden word. Please do not use \b, it will be inserted depending on inside_words.

Example: ['bad', 'un\w+']

ignore_case

Default: True

Self-explanatory.

replacements

Default: "$@%-?!"

A string with characters from which the replacements strings will be randomly generated.

Examples: "%&$?!" or "-" etc.

complete

Default: True

Controls if the entire string will be replaced or if the first and last chars will be kept.

inside_words

Default: False

Controls if words are searched inside other words too. Disabling this

Module source


(examples at the end)

"""
Module that provides a class that filters profanities

"""

__author__ = "leoluk"
__version__ = '0.0.1'

import random
import re

class ProfanitiesFilter(object):
    def __init__(self, filterlist, ignore_case=True, replacements="$@%-?!", 
                 complete=True, inside_words=False):
        """
        Inits the profanity filter.

        filterlist -- a list of regular expressions that
        matches words that are forbidden
        ignore_case -- ignore capitalization
        replacements -- string with characters to replace the forbidden word
        complete -- completely remove the word or keep the first and last char?
        inside_words -- search inside other words?

        """

        self.badwords = filterlist
        self.ignore_case = ignore_case
        self.replacements = replacements
        self.complete = complete
        self.inside_words = inside_words

    def _make_clean_word(self, length):
        """
        Generates a random replacement string of a given length
        using the chars in self.replacements.

        """
        return ''.join([random.choice(self.replacements) for i in
                  range(length)])

    def __replacer(self, match):
        value = match.group()
        if self.complete:
            return self._make_clean_word(len(value))
        else:
            return value[0]+self._make_clean_word(len(value)-2)+value[-1]

    def clean(self, text):
        """Cleans a string from profanity."""

        regexp_insidewords = {
            True: r'(%s)',
            False: r'\b(%s)\b',
            }

        regexp = (regexp_insidewords[self.inside_words] % 
                  '|'.join(self.badwords))

        r = re.compile(regexp, re.IGNORECASE if self.ignore_case else 0)

        return r.sub(self.__replacer, text)


if __name__ == '__main__':

    f = ProfanitiesFilter(['bad', 'un\w+'], replacements="-")    
    example = "I am doing bad ungood badlike things."

    print f.clean(example)
    # Returns "I am doing --- ------ badlike things."

    f.inside_words = True    
    print f.clean(example)
    # Returns "I am doing --- ------ ---like things."

    f.complete = False    
    print f.clean(example)
    # Returns "I am doing b-d u----d b-dlike things."
share|improve this answer
Now that’s an answer. – Paul D. Waite Aug 20 '10 at 18:45
3  
Profanity isn't primarily about words, but usage; most words which can be used as "profanity" have perfectly "clean" uses, and it takes a lot more than a regex to distinguish them. (Never mind, of course, that anything like this will only prompt people to w*rk ar*und it.) – Glenn Maynard Oct 7 '10 at 2:22
(I think it's pretty neat that just putting apostrophies in w*rds makes it look l*ke a *wear.) – Glenn Maynard Oct 7 '10 at 2:37
@Glenn: yes, we know. We know filtering isn’t a complete solution to whatever profanity problem one has. We just want to know what the decent libraries are. – Paul D. Waite Oct 7 '10 at 7:56
1  
I pointed out that this solution is not very practically useful, and I did so because it seemed obvious that you were looking for something more than trivial word matching. I'm starting to regret wasting my time. – Glenn Maynard Oct 7 '10 at 11:00
show 4 more comments

WebPurify is a Profanity Filter Library for Python found here http://phpscrap.com/2011/05/18/web-purify-the-python-api/

share|improve this answer

You could probably combine http://spambayes.sourceforge.net/ and http://www.cs.cmu.edu/~biglou/resources/bad-words.txt.

share|improve this answer
I love that list. – Paul D. Waite Oct 7 '10 at 7:58
6  
Oh yes. Africa, Allah and heterosexual. (Was that list collected by a white gay christian?) – zoul Oct 7 '10 at 8:13
@zoul: shut up, you big he--FILTERED--al. – Paul D. Waite Oct 7 '10 at 8:57

You can use CleanSpeak profanity filter from Inversoft to filter from Python via a WebService. Clean Speak is deployable software, so you can install it on your servers and don't have to worry about network hops or failures.

share|improve this answer
And it is difficult to work around it. – leoluk Oct 7 '10 at 5:25
I think you mean that network failures and latency are difficult to work around, which is true. – Brian Pontarelli Oct 15 '10 at 15:39

Profanity? What the f***'s that? ;-)

It will still take a couple of years before a computer will really be able to recognize swearing and cursing and it is my sincere hope that people will have understood by then that profanity is human and not "dangerous."

Instead of a dumb filter, have a smart human moderator who can balance the tone of discussion as appropriate. A moderator who can detect abuse like:

"If you were my husband, I'd poison your tea." - "If you were my wife, I'd drink it."

(that was from Winston Churchill, btw.)

share|improve this answer
Exactly. Profanity filters are pointless, at least until natural language parsers are much better. – delnan Aug 20 '10 at 14:43
3  
@delnan: I guess because I asked what a good profanity filter library was, not whether I should use one at all. Suggestions like this can be better as comments, although they can be valid as answers too. – Paul D. Waite Aug 20 '10 at 15:05
2  
@Aaron: yeah, I’m not planning to have the machine deal with profanity on its own. But rather than making a human being look at every damn thing on the site, it’d be nice if the machine could offer suggestions of what’s worth taking a look at. (That’s not a criticism of your answer, as I didn’t provide any explanation of what I was going to use the filter for.) – Paul D. Waite Aug 20 '10 at 15:07
1  
@Aaron: oh, and I reckon it’ll be a lot longer than a couple of years before computers reliably understand English. And that the subset of people who care about the swears will not have gone away. – Paul D. Waite Aug 20 '10 at 15:17
1  
@Paul: Calm down, you're missing my point. My point is that abuse is not only profanity. People have much worse ways to mob each other than simple curse words. This is what kills the soul of a community, not s&c. – Aaron Digulla Aug 23 '10 at 7:36
show 3 more comments

Here's my Rather Lazy Attempt at this...My idea was to use the difflib. Ofcourse this isn't the entire program...but it should get you started :)

import difflib,re
badwords = map(lambda x: x.strip(), open("words.txt","r").readlines())

body = open("text.txt","r").read();

p = re.compile("\w+")

for word in set(p.findall(body)):
    lst = difflib.get_close_matches(word,badwords,n=1,cutoff=0.9) #configure the cutoff accordin to how strict you want the filter
    if lst :
        body = body.replace(word,"!@#&@%^tutsifruitsy$%&$")

print body

The tutsifruitsy is a reference to "The Late Late Show with Craig Ferguson" :)

share|improve this answer

It's possible for users to work around this, of course, but it should do a fairly thorough job of removing profanity:

import re
def remove_profanity(s):
    def repl(word):
        m = re.match(r"(\w+)(.*)", word)
        if not m:
            return word
        word = "Bork" if m.group(1)[0].isupper() else "bork"
        word += m.group(2)
        return word
    return " ".join([repl(w) for w in s.split(" ")])

print remove_profanity("You just come along with me and have a good time. The Galaxy's a fun place. You'll need to have this fish in your ear.")
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.