Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Webページを取得したいのですが、必要なデータは最初の15文字です。ページ全体ではなく、ページの一部のみをフェッチするにはどうすればよいurllibですか?
urllib
number of bytes to read次のように言及できます。
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)