Exemplo n.º 1
0
def __isCommentSpam(comment):
	akismet = Akismet('http://paul.annesley.cc/', secrets.AKISMET_API_KEY)
	return akismet.is_spam(
		comment.authorip,
		comment.authoruseragent,
		comment.authorname,
		comment.authoremail,
		comment.authorurl,
		comment.content
	);