File downloading using python with threads

后端 未结 4 880
一生所求
一生所求 2021-01-03 19:09

I\'m creating a python script which accepts a path to a remote file and an n number of threads. The file\'s size will be divided by the number of threads, when each thread c

4条回答
  •  春和景丽
    2021-01-03 19:22

    for "download several files simultaneously", I recommond this article: Practical threaded programming with Python . It provides a simultaneously download related example by combining threads with Queues, I thought it's worth a reading.

提交回复
热议问题