Metadata-Version: 1.1
Name: recaptcha2
Version: 0.1
Summary: A minimalist Python client for the Google reCAPTCHA 2.0 API
Home-page: https://github.com/bryanchow/python-recaptcha2
Author: Bryan Chow
Author-email: UNKNOWN
License: WTFPL
Download-URL: https://github.com/bryanchow/python-recaptcha2/tarball/master
Description: python-recaptcha2
        -----------------
        
        A minimalist Python client for the Google reCAPTCHA 2.0 API.
        
        Usage::
        
            >>> import recaptcha2
        
            >>> recaptcha2.verify(SECRET_KEY, INVALID_RESPONSE, REMOTE_IP)
            {u'error-codes': [u'invalid-input-response'], u'success': False}
        
            >>> recaptcha2.verify(SECRET_KEY, VALID_RESPONSE, REMOTE_IP)
            {u'success': True}
        
Platform: UNKNOWN
