如何提交包含 Captch Image 的表格?试过这段代码
import urllib
import urllib2
from PIL import Image
import pytesser
#include the pytesser into the site pacakges
#and run sudo apt-get tesseract-ocr it is required by the
#pytesser to run the image converter
image = urllib.URLopener()
image.retrieve("http://www.stat.gov.pl/regon/Captcha.jpg","Captcha.jpg")
#The image get saved into current script directory
image = Image.open('Captcha.jpg')
print image_to_string(image) #I will get the text from the Captcha Image
text=image_to_string(image)
现在我想将此数据字典发送到帖子中打开的请求,以便让下一页包含详细信息
data={'criterion1TF':5213510101,'verifCodeTF':text}
但是当我使用 urllib.URLopener() 它再次打开具有不同验证码图像的新页面。我希望任何人都可以帮助我解决这个问题。提前致谢。