upyun / python-sdk

UPYUN Python SDK
117 stars 29 forks source link

Feature/stream fileobject #62

Closed timebug closed 6 years ago

timebug commented 6 years ago

stream file object 示例,对一些远程大文件转存的场景比较方便,并且无需进行多余的磁盘缓冲:

res = requests.get("http://httpbin.org/image/jpeg", stream=True)
up.put('/test.jpeg', res.raw)