Web based antispam API for Python applications
Prevents spam in your python web apps. Cloud features allow you to use additional anti-spam functionality. Cloud features allow you to use additional anti-spam functionality, such as: Personal IP/Email lists, blocking by country, language, stop words and etc.
Spam attacks log - allows to view all filtered requests in the “Log of spam attacks”.
The log contains a detailed information about each request for a time period. At any time, you can check the request and make sure that the filtering is correct. A Python API for antispam service cleantalk.org. Invisible protection from spam, no captches, no puzzles, no animals and no math.
API uses several simple tests to stop spammers.
API sends a comment’s text and several previous approved comments to the servers. Servers evaluates the relevance of the comment’s text on the topic, tests on spam and finaly provides a solution - to publish or put on manual moderation of comments. If a comment is placed on manual moderation, the plugin adds to the text of a comment explaining the reason for the ban server publishing.
from cleantalk import CleanTalk
import json
ct = CleanTalk(auth_key='yourkey')
ct_result = ct.request(
message = 'abc', # Required. Visitor comment
sender_ip = '196.19.250.114', # Required. Visitor IP address
sender_email = 'stop_email@example.com', # Required. Visitor email
sender_nickname = 'spam_bot', # Required. Visitor nickname
post_info= json.dumps({'post_url': 'https://yoursite.com'}) # Optional. Additional post info in JSON format.
# event_token = 'xxx' # fill it with ct_bot_detector_event_token hidden input from your form (auto generate)
)
#Check
if ct_result['allow']:
print('Comment allowed. Reason ' + ct_result['comment'])
else:
print('Comment blocked. Reason ' + ct_result['comment'])
API returns Python dictionary object, where keys:
Run the next command in the terminal:
pip install cleantalk-python-antispam
Then you can use Cleantalk class import:
from cleantalk_python_antispam.cleantalk import CleanTalk
For improve protection include javascript to your layout before \<\/body> tag:
<script type="text/javascript" src="https://moderate.cleantalk.org/ct-bot-detector-wrapper.js"></script>
Version 1.2