Copyright (c) 2011 AYAH LLC http://www.areyouahuman.com
BY USING THIS SOFTWARE YOU AGREE TO THE TERMS AND CONDITIONS FOUND AT: http://portal.areyouahuman.com/termsAndCondition
The AYAH Python Integration Library is compatible with Python 2.x and 3.x. (It was built and tested on versions 2.7.x and 3.2.x.) The setup script detects which version of Python you're running and installs the appropriate files.
The AYAH Python Integration Library is compatible with all web application frameworks.
Get your publisher key and scoring key from https://portal.areyouahuman.com/.
Import the ayah module:
import ayah
Configure the ayah module when your application initializes:
ayah.configure(<your-publisher-key>, <your-scoring-key>)
Display the AYAH HTML on any page that requires a human:
html = ayah.get_publisher_html()
Allow the alleged human to complete the PlayThru challenge. When they're finished, your web page will have a hidden field on it with id="session_secret".
Use the value of the hidden session secret field to determine if the alleged human passed the challenge:
passed = ayah.score_result(<session-secret>)
Congratulations, your application detects humans without requiring CAPTCHA!