我正在寻找一个带有 python 的网页并将源代码转换为字符串(我的页面只有文本,例如 Year2012,没有 html 或其他代码,所以如果你查看源代码,你会看到 Year2012,这就是我需要的)
例如,我在 Python 中有我想要的这个 C# 代码:
string WebClient = new WebClient().DownloadString(WebPage);
如果我创建 myscript.php 并输入 Year2012 字符串 WebClient 将为 = "Year2012" 如果我稍后更改它并且我的程序检查网页,它将是我更改的内容。我想要同样的东西在 windows 的 python 中你知道怎么做吗?
谢谢!