微博验证码识别系列六:微博验证码打标签小脚本

为了方便给验证码打标签,我写了一个小脚本,大家可以试试用

from PIL import Image
import os
def verification_code(dir_path):
    count = 1
    for i in os.listdir(dir_path):
        image = Image.open(f'{dir_path}/%s' % i)
        image.show()
        name = input('输入%s%s:' % (i, count))
        image.close()
        os.rename(f'{dir_path}/%s' % i, f'{dir_path}/%s.jpg' % name)
        count += 1

你可能感兴趣的:(验证码识别,微博验证码,python,验证码,图像识别)