首页 > 编程 > Python > 正文

python获取文件真实链接的方法,针对于302返回码

2020-01-04 15:05:40
字体:
来源:转载
供稿:网友

使用模块requests

方式代码如下:

import requests url_string="https://******" r = requests.head(url_string, stream=True) print r.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) # print r.headers['Location'] print r.headers["Content-Length"] 

使用requests.get()方法,该方法会自动解析重定向的链接.

实例:

import requests url_string="https://******" r = requests.get(url_string, stream=True) print r.headers["Content-Length"] 

以上这篇python获取文件真实链接的方法,针对于302返回码就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持VEVB武林网。


注:相关教程知识阅读请移步到python教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表