How to display download progress when Python downloads files

Source: Internet
Author: User
Tags flush function definition

The specific analysis is as follows:

Put this code in your script, like this: Urllib.urlretrieve (GetFile, SaveFile, Reporthook=report)

The third parameter, such as the following function definition, report,urlretrieve a real-time callback to the call function when downloading files, showing download progress

1 2 3 4 5 6 7 8 Def (count, BlockSize, totalsize): percent = Int (count*blocksize*100/totalsize) sys.stdout.write ("r%d%%"% Percent + ' complete ') Sys.stdout.flush () sys.stdout.write (' rfetching ' + name + ' ... n ') urllib.urlretrieve (GetFile, SAVEF Ile, Reporthook=report) sys.stdout.write ("Rdownload complete, saved as%s"% (fileName) + ' nn ') Sys.stdout.flush ()
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.