请教一下,怎么获取到验证码的请求地址呢
请教各位,我想知道怎么爬到这个网站的验证码的地址查询网站的url地址:
http://cx.mem.gov.cn/
验证码的地址后面跟着一个data=一串数字
类似:
http://cx.mem.gov.cn//GetImg?date=1621147452058
怎么才能获取到这串数字呢{:10_291:}
最好的有过程,感激不尽{:10_254:}
本帖最后由 suchocolate 于 2021-5-17 01:55 编辑
那串数字是当前系统秒数,用time.time()就能得到:import requests
import time
def main():
timestmp = str(time.time()).split('.')
url = f'http://cx.mem.gov.cn//GetImg?date={timestmp}'
headers = {'user-agent': 'firefox'}
r = requests.get(url, headers=headers)
with open('test.jpg', 'wb') as f:
f.write(r.content)
if __name__ == '__main__':
main()
看到这么长的会变的数字,肯定要往时间戳去想
页:
[1]