up vote 1 down vote favorite
share [g+] share [fb]

I'm working on a Django-based site that consists mostly of user- generated content: reviews, comments, tweet-like posts, etc.

I'm concerned about spam. Are there any spam filters available for Django/Python? If not, what types of algorithms can be used for automatic spam filtering or flagging?

On a more general note, does anyone know how do major sites like Amazon and Yelp prevent spams in their user-submitted reviews?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Take a look at SO question 915204. Jason Baker recommends using the Akismet Python API, which he states is what WordPress uses to stop spam. From the Akismet Python API website:

Akismet is a web service for recognising spam comments.

Also, Patrick Beeson has a blog entry on how to use Akismet to stop spam on a Django blog that might be relevant to your application.

link|improve this answer
feedback

SpamBayes comes to mind.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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