python获取文件真实链接的方法,针对于302返回码
使用模块requests
方式代码如下:
importrequests url_string="https://******" r=requests.head(url_string,stream=True) printr.headers['Location']
扩展:
设置属性:allow_redirects=True,则head方式会自动解析重定向链接,requests.get()方法的allow_redirects默认为True,head方法默认为False
url_string="https://******" r=requests.head(url_string,stream=True,allow_redirects=True) #printr.headers['Location'] printr.headers["Content-Length"]
使用requests.get()方法,该方法会自动解析重定向的链接.
实例:
importrequests url_string="https://******" r=requests.get(url_string,stream=True) printr.headers["Content-Length"]
以上这篇python获取文件真实链接的方法,针对于302返回码就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持毛票票。