📜  colab 从 url 下载文件 - 任何代码示例

📅  最后修改于: 2022-03-11 14:57:09.534000             🧑  作者: Mango

代码示例2
import requests 
file_url = "http://1.droppdf.com/files/5iHzx/automate-the-boring-stuff-with-python-2015-.pdf"
    
r = requests.get(file_url, stream = True) 

with open("/content/gdrive/My Drive/python.pdf", "wb") as file: 
    for block in r.iter_content(chunk_size = 1024): 
        if block: 
            file.write(block)