Python-如何通过重定向获取最终的URL和数据

时间:2018-08-16 07:24:25

标签: python redirect python-requests

我尝试连接状态代码为my_dict = {} for line in open(file_path).readlines(): key, val = line.strip().split('=') # Remove \n and split on = my_dict[key.strip()] = val.strip() # Remove trailing leading spaces use # Note that vals will all be strings you may need to convert type for some 的链接,但收到以下消息:

200

当我再次尝试连接到此链接时,仍然会再次收到此消息!!

如何获取最终的网址和数据?

完整代码:

print _r.text
<script>window.location.href='/'</script>

非常感谢您的建议。

1 个答案:

答案 0 :(得分:0)

<script>window.location.href='/'</script>

'/'的{​​{1}}意味着您需要请求根目录。使用相同的域名,但不请求子目录。