1. 程式人生 > >python爬蟲下載驗證碼或附件的方法

python爬蟲下載驗證碼或附件的方法

下邊的是下載京東驗證碼的方法,一些方法給記錄一下:      

   url='https://mall.jd.com/sys/vc/createVerifyCode.html?random='+str(random.random())
   img = requests.get(url)
   if img.status_code==200:
       imgname = 'jd/' + str(i)+'.jpg'
       print('下載圖片'+imgname)
       with open(imgname, 'wb') as fd:
            fd.write(img.content)