Um downloader desenvolvido para mim.(selfuse)
Instale dependências.
$ pip3 instalar -r requisitos.txt
Verifique o uso.
$ python3 main.py -h usage: main.py [-h] [--src SRC] [--save SAVE] [--max MAX] [--interval INTERVAL] [--chunk CHUNK] fastDownloader v0.0.1 options: -h, --help show this help message and exit --src SRC This parameter specifies the file path where the links to be downloaded are stored. --save SAVE This parameter specifies the path for storing the downloaded files. No / at the end. --max MAX This parameter specifies the concurrency level. --interval INTERVAL This parameter specifies the interval of requests. --chunk CHUNK This parameter specifies the number of bytes to be read per download.
["url1","url2"...]
Sucesso
$ python3 main.py --src ./test_success.json --max 3 --chunk 1024> Baixando -3557342921266950271_500 agora!> Baixando -2865197712751752189_300 agora!> Baixando -700390739090695736_600 agora!> Baixando 5636641034660171054_700 agora!> Baixando 5773939477608183504_400 agora!> Baixando 1310250945337633844_200 agora!> Todos os recursos foram baixados com sucesso!Baixado 6 Falhou 0 Restante 0: 100%|██████████████████████████| 6/6 [00:01<00:00, 4.33it/s]# Aviso: A longa sequência de caracteres na frente do nome do arquivo é# um código hash exclusivo usado para garantir a exclusividade da nomenclatura do arquivo.
Fracassado
$ python3 main.py --src ./test_failed.json --max 3 --chunk 1024> Baixando -6762229335681689814_700 agora!> Baixando -55066400530373971_600 agora!> Baixando -2931830335596416142_500 agora!> Baixando 2353655904693015958_300 agora!> Baixando -5222952479054798371_non-existent-url agora!> 1 arquivo falhou ao baixar!> Por favor, execute novamente com "python3 main.py --src failed.json --save. --max 3 --interval 0,5 -- pedaço 1024"Baixado 4 Falhou 1 Restante 0: 100% | 5/5 [00:01<00:00, 4,53it/s]
Siga as instruções para executar novamente.