21 lines
558 B
Python
21 lines
558 B
Python
"""
|
|
数据生成器包
|
|
|
|
提供三种验证码类型的数据生成器:
|
|
- NormalCaptchaGenerator: 普通字符验证码
|
|
- MathCaptchaGenerator: 算式验证码
|
|
- ThreeDCaptchaGenerator: 3D 立体验证码
|
|
"""
|
|
|
|
from generators.base import BaseCaptchaGenerator
|
|
from generators.normal_gen import NormalCaptchaGenerator
|
|
from generators.math_gen import MathCaptchaGenerator
|
|
from generators.threed_gen import ThreeDCaptchaGenerator
|
|
|
|
__all__ = [
|
|
"BaseCaptchaGenerator",
|
|
"NormalCaptchaGenerator",
|
|
"MathCaptchaGenerator",
|
|
"ThreeDCaptchaGenerator",
|
|
]
|