How to get generated captcha image using mechanize

后端 未结 1 716
梦如初夏
梦如初夏 2021-02-04 14:46

I\'m trying to use python and mechanize to send sms from my mobile provider website.
The problem is that form has a captcha image. Using mechanize I can get the link to the

相关标签:
1条回答
  • 2021-02-04 15:42

    This is a rough example of how to get the image, note that mechanize uses cookies so any cookies received will be sent to the server with the request for the image (this is probably what you want).

    br = mechanize.Browser()
    response = br.open('http://example.com')
    soup = BeautifulSoup(response.get_data())
    img = soup.find('img', id='id_of_image')
    image_response = br.open_novisit(img['src'])
    image = image_response.read()
    

    id='id_of_image' is an example, BeautifulSoup provides many ways to find the tag you're looking for (see the BeautifulSoup docs). image_response is a file-like object.

    0 讨论(0)
提交回复
热议问题