0

Webページを取得したいのですが、必要なデータは最初の15文字です。ページ全体ではなく、ページの一部のみをフェッチするにはどうすればよいurllibですか?

4

1 に答える 1

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)
于 2012-04-15T19:56:34.643 に答える