requests response.iter_content() gets incomplete file ( 1024MB instead of 1.5GB )?

后端 未结 3 1902
醉梦人生
醉梦人生 2021-02-13 21:46

hi i have been using this code snippet to download files from a website, so far files smaller than 1GB are all good. but i noticed a 1.5GB file is incomplete

# s         


        
相关标签:
3条回答
  • 2021-02-13 22:10

    I think you forgot to close req.

    from the requests author said, "If you find yourself partially reading request bodies (or not reading them at all) while using stream=True, you should make the request within a with statement to ensure it’s always closed:"

    http://2.python-requests.org//en/latest/user/advanced/#body-content-workflow.

    0 讨论(0)
  • 2021-02-13 22:14

    If you are using Nginx as file system, you may check Nginx config file to see if you have set

    proxy_max_temp_file_size 3000m;
    

    or not.

    By default this size is 1G. So you can only get 1024MB.

    0 讨论(0)
  • 2021-02-13 22:16

    Please double check that you can download the file via wget and/or any regular browser. It could be restriction on the server. As I see your code can download big files (bigger then 1.5Gb)

    Update: please try to inverse the logic - instead of

    if chunk: # filter out keep-alive new chunks                                                                                                                                                                                                         
        f.write(chunk)                                                                                                                                                                                                                                   
        f.flush()
    

    try

    if not chunk:
       break
    
    f.write(chunk)                                                                                                                                                                                                                                   
    f.flush()
    
    0 讨论(0)
提交回复
热议问题