0

我正在寻找一个带有 python 的网页并将源代码转换为字符串(我的页面只有文本,例如 Year2012,没有 html 或其他代码,所以如果你查看源代码,你会看到 Year2012,这就是我需要的)

例如,我在 Python 中有我想要的这个 C# 代码:

string WebClient = new WebClient().DownloadString(WebPage);

如果我创建 myscript.php 并输入 Year2012 字符串 WebClient 将为 = "Year2012" 如果我​​稍后更改它并且我的程序检查网页,它将是我更改的内容。我想要同样的东西在 windows 的 python 中你知道怎么做吗?

谢谢!

4

1 回答 1

3

我建议您使用包requests。这是一个可能满足您需求的代码片段:

import requests
r = requests.get('https://github.com/timeline.json')

编辑

或者你可以使用 python 中的默认包:urllib2,一个简单的例子:

import urllib2
f = urllib2.urlopen('http://www.python.org/')
print f.read(100)

输出:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<?xml-stylesheet href="./css/ht2html
于 2013-05-14T01:17:56.367 回答