使用urllib获取网页的一部分

时间:2012-04-15 19:52:23

标签: python urllib

我想获取一个网页,但我需要的数据是前十五个字符。我怎样才能使用urllib

来获取部分页面而不是整个页面

1 个答案:

答案 0 :(得分:0)

您可以像这样提及number of bytes to read

data = urllib.urlopen("www.example.com")
number_of_bytes_to_read = 15
content = data.read(number_of_bytes_to_read)