# jcaptcha **Repository Path**: xiaofeng283_a/jcaptcha ## Basic Information - **Project Name**: jcaptcha - **Description**: 重新造的轮子,基于后端的验证码,解决恶意请求端口等问题 - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-04-28 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # jcaptcha ## 安装 ``` pip install jcaptcha ``` ## django view中使用 ``` from jcaptcha.VerificationCode import jcaptcha def create_code(request): text, result, file_path, image_data = jcaptcha() request.session['v_code'] = result return HttpResponse(image_data, content_type="image/png") ``` ## uwsgi启动权限问题