OnlineJudge/utils/captcha/views.py

9 lines
208 B
Python
Raw Normal View History

2017-08-18 22:10:48 +00:00
from . import Captcha
from ..api import APIView
from ..shortcuts import img2base64
2015-09-10 07:59:48 +00:00
2017-08-18 22:10:48 +00:00
class CaptchaAPIView(APIView):
def get(self, request):
return self.success(img2base64(Captcha(request).get()))