Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #75082 > unrolled thread

how to download special range content with requests in python?

Started by"水静流深" <1248283536@qq.com>
First post2014-07-23 17:44 +0800
Last post2014-07-23 17:44 +0800
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python


Contents

  how to download special range  content with requests  in python? "水静流深" <1248283536@qq.com> - 2014-07-23 17:44 +0800

#75082 — how to download special range content with requests in python?

From"水静流深" <1248283536@qq.com>
Date2014-07-23 17:44 +0800
Subjecthow to download special range content with requests in python?
Message-ID<mailman.12237.1406119861.18130.python-list@python.org>

[Multipart message — attachments visible in raw view] — view raw

url='http://debian.cites.illinois.edu/pub/debian-cd/7.6.0/amd64/iso-cd/debian-7.6.0-amd64-CD-1.iso'
 import requests
 r = requests.get(url).read(0,1000)  ‍

why i can not download special range(from 0 to 10000)  content with requests  in python‍?

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web