Linux server1.dn-server.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
LiteSpeed
Server IP : 195.201.204.189 & Your IP : 216.73.216.60
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
python35 /
share /
doc /
alt-python35-captcha /
Delete
Unzip
Name
Size
Permission
Date
Action
LICENSE
1.44
KB
-rw-r--r--
2014-11-25 13:44
PKG-INFO
3.23
KB
-rw-r--r--
2015-10-04 13:28
README.rst
1.71
KB
-rw-r--r--
2015-08-12 16:34
Save
Rename
Metadata-Version: 1.1 Name: captcha Version: 0.2.1 Summary: A captcha library that generates audio and image CAPTCHAs. Home-page: https://github.com/lepture/captcha Author: Hsiaoming Yang Author-email: me@lepture.com License: BSD Description: Captcha ======= A captcha library that generates audio and image CAPTCHAs. .. image:: https://travis-ci.org/lepture/captcha.png?branch=master :target: https://travis-ci.org/lepture/captcha .. image:: https://ci.appveyor.com/api/projects/status/amm21f13lx4wuura :target: https://ci.appveyor.com/project/lepture/captcha .. image:: https://coveralls.io/repos/lepture/captcha/badge.png?branch=master :target: https://coveralls.io/r/lepture/captcha Features -------- 1. Audio CAPTCHAs `DEMO <https://github.com/lepture/captcha/releases/download/v0.1-beta/out.wav>`_ 2. Image CAPTCHAs .. image:: https://cloud.githubusercontent.com/assets/290496/5213632/95e68768-764b-11e4-862f-d95a8f776cdd.png Installation ------------ Install captcha with pip:: $ pip install captcha Usage ----- Audio and Image CAPTCHAs are in seprated modules: .. code:: python from io import BytesIO from captcha.audio import AudioCaptcha from captcha.image import ImageCaptcha audio = AudioCaptcha(voicedir='/path/to/voices') image = ImageCaptcha(fonts=['/path/A.ttf', '/path/B.ttf']) data = audio.generate('1234') assert isinstance(data, bytearray) audio.write('1234', 'out.wav') data = image.generate('1234') assert isinstance(data, BytesIO) image.write('1234', 'out.png') This is the APIs for your daily works. We do have built-in voice data and font data. But it is suggested that you use your own voice and font data. Contribution ------------ We need voice wav files. The voice wav file should be in 8-bit, please keep it as small as possible. Name your voice file as:: {{language}}-{{character}}-{{username}}.wav # exmaple: zh-1-lepture.wav TODO: we need a place to upload voice files. Platform: UNKNOWN Classifier: Development Status :: 4 - Beta Classifier: Environment :: Console Classifier: Intended Audience :: Developers Classifier: License :: OSI Approved Classifier: License :: OSI Approved :: BSD License Classifier: Operating System :: MacOS Classifier: Operating System :: POSIX Classifier: Operating System :: POSIX :: Linux Classifier: Programming Language :: Python Classifier: Programming Language :: Python :: 2.6 Classifier: Programming Language :: Python :: 2.7 Classifier: Programming Language :: Python :: 3.3 Classifier: Programming Language :: Python :: 3.4 Classifier: Programming Language :: Python :: Implementation Classifier: Programming Language :: Python :: Implementation :: CPython Classifier: Programming Language :: Python :: Implementation :: PyPy