我有一个像这样的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
模块并不是最好的方法。但我该怎么办,这是否可能?