美文网首页
【爬虫】(三)爬虫之处理简单验证码

【爬虫】(三)爬虫之处理简单验证码

作者: 朴有天虹 | 来源:发表于2017-06-06 15:38 被阅读0次

    date: 2016-12-16 10:48:50

    可处理简单的数字验证码。
    例如:

    import pytesseract
    from PIL import Image
    image = Image.open('vcode.gif')
    vcode = pytesseract.image_to_string(image)
    print(vcode)
    

    结果:


    对于复杂的字母等不可识别。

    相关文章

      网友评论

          本文标题:【爬虫】(三)爬虫之处理简单验证码

          本文链接:https://www.haomeiwen.com/subject/iaagfxtx.html