forked from Teaspiller/recaptcha-client-1.0.6-ssl
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPKG-INFO
54 lines (45 loc) · 2.56 KB
/
PKG-INFO
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
Metadata-Version: 1.0
Name: recaptcha-client
Version: 1.0.6-ssl
Summary: A plugin for reCAPTCHA and reCAPTCHA Mailhide
Home-page: http://recaptcha.net
Author: Ben Maurer
Author-email: [email protected]
License: MIT/X11
Description: Provides a CAPTCHA for Python using the reCAPTCHA service. Does not require
any imaging libraries because the CAPTCHA is served directly from reCAPTCHA.
Also allows you to securely obfuscate emails with Mailhide. This functionality
requires pycrypto. This library requires two types of API keys. If you'd like
to use the CAPTCHA, you'll need a key from https://www.google.com/recaptcha/admin/create.
For Mailhide, you'll need a key from http://www.google.com/recaptcha/mailhide/apikey.
The trunk can be checked out from
http://recaptcha.googlecode.com/svn/trunk/recaptcha-plugins/python,
and the associated Google Code project lives at
http://code.google.com/p/recaptcha. Note that this is a shared
project/repository for reCAPTCHA clients for several languages/environments.
There is also a Google Group at http://groups.google.com/group/recaptcha/.
Please use the associated mailing list for any questions or comments:
[email protected]. Like the Google Code project, the Google Group
mailing list is also shared among the several reCAPTCHA client implementations.
reCAPTCHA is written by Ben Maurer and maintained by Josh Bronson. It is
licensed under an MIT/X11 license.
--------------------------------------------------------------------------------
Version 1.0.6-ssl was created by Dave Gallagher on April 28, 2011, and was
heavily derived from version 1.0.6. It's fully backwards compatible with 1.0.6
and no code changes are necessary. Additions include:
- SSL support for submit() in captcha.py.
- SSL support for asurl() and ashtml() in mailhide.py.
- Timeout variable for submit().
- Exception handling for urllib2.urlopen in submit().
- Lots of comments.
- Code tidying.
Installation: $ sudo python setup.py install
reCAPTCHA: from recaptcha.client.captcha import displayhtml, submit
reCAPTCHA Mailhide: from recaptcha.client.mailhide import ashtml
See comments inside /client/captcha.py and /client/mailhide.py for usage
instructions.
Platform: UNKNOWN
Classifier: Topic :: Security
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment