zoukankan      html  css  js  c++  java
  • python实现进度条下载

    核心代码:

    for i in range(10):
        print('
    ' + '>' * i, end='')

    示例展示以搜狗输入法为例:

    import time
    import requests
    import os

    for i in range(10):
    print(' ' + '>' * i, end='')


    def process_file(url, target_path):
    start = time.time()
    size_done = 0
    response = requests.get(url, stream=True)
    chunk_size = 1024
    content_length = int(response.headers["content-length"])
    file_size = content_length / 1024 / 1024
    if response.status_code == 200:
    with open(target_path, "wb")as file:
    for chunk_bytes in response.iter_content(chunk_size):
    file.write(chunk_bytes)
    size_done += chunk_size
    print(" " + "[downloded%s%.2f%%]" % ('█' * int(size_done * 50 / content_length),
    float(size_done / content_length * 100)), end="")
    costs = float(time.time() - start)
    print(" Downloaded %s Successfully, use time %.2fs,file size %.2fM." % (
    os.path.basename(target_path), costs, file_size), end=" ")


    if __name__ == '__main__':
    url = "http://cdn2.ime.sogou.com/dl/index/1571302197/sogoupinyin_2.3.1.0112_amd64.deb?st=5Yzdh3CQffIhJFj1yH0t7w&e=1581503601&fn=sogoupinyin_2.3.1.0112_amd64.deb"
    target = os.path.join(os.getcwd(), "sougou_input.deb")
    process_file(url, target)

    [downloded██████████████████████████████████████████████████100.00%]
    Downloaded sougou_input.deb Successfully, use time 18.79s,file size 25.52M.

  • 相关阅读:
    video标签
    正则表达式
    BOM和DOM
    css样式属性
    js简介
    格式与布局
    CSS样式表
    表单
    redis学习心得之三-【java操作redis】
    redis学习心得之二【redis主从配置】
  • 原文地址:https://www.cnblogs.com/SunshineKimi/p/12300132.html
Copyright © 2011-2022 走看看