如何使用python脚本中的页面重定向?

时间:2018-06-17 14:20:14

标签: javascript python-3.x python-2.7 web

我有一个像这样的HTML页面。

index.php

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Submit</title>
</head>
<body>

</body>
<script type="text/javascript">
    window.onload = function () {
        window.location.href = "http://127.0.0.1:3333/test.php";
    }
</script>
</html>

这意味着,如果我使用网络浏览器加载此页面,它将自动重定向到/test.php。我在测试时在http://127.0.0.1:3333运行我的服务器。这个位按预期工作。

我的问题是如何使用python脚本执行相同的操作?

使用requests模块的此脚本无效。

import requests
response = requests.get('http://127.0.0.1:3333')
print(response.text)

因此,当我打印出response.text的值时,我希望获得test.php的值。我已经意识到response模块并不是最好的方法。但我该怎么办,这是否可能?

0 个答案:

没有答案