我有一个位于远程位置的PHP脚本 - http://myremoteserver.net/myCode.php - 我想在我的python代码中运行。
我正在使用下面的内容,它运行得很好,但缺点是它会打开默认浏览器。如果没有浏览器打开,有没有办法可以做到这一点?
import webbrowser
webbrowser.open('http://myremoteserver.net/myCode.php')
答案 0 :(得分:1)
import requests
res = requests.get("http://myremoteserver.net/myCode.php")
page = res.text
答案 1 :(得分:1)
您可以使用请求模块在该网址上执行http请求。你只需要用pip安装包。
使用pip安装包
pip install requests
调用get请求的示例
import requests
response = requests.get("http://testing/test.php")