-
Notifications
You must be signed in to change notification settings - Fork 19
Closed
Description
I used the example code for DOWNLOAD option and the download is properly done, but there are a bunch of prints being outputted to terminal like this example:
{ uid: '244018',
url: 'http://ftp.ncbi.nlm.nih.gov/genomes/all/GCF/000/188/075/GCF_000188075.1_Si_gnG/GCF_000188075.1_Si_gnG_genomic.fna.gz',
path: '244018/GCF_000188075.1_Si_gnG_genomic.fna.gz',
status: 'downloading',
total: 116654441,
progress: 100,
speed: 2046569.1403508773 }
It would be better to have some nice output like the one shown in the examples with a progress bar than a lot of prints in each state.
Also, after the download is completed the console freezes in the following prints:
{ uid: '244018',
url: 'http://ftp.ncbi.nlm.nih.gov/genomes/all/GCF/000/188/075/GCF_000188075.1_Si_gnG/GCF_000188075.1_Si_gnG_genomic.fna.gz',
path: '244018/GCF_000188075.1_Si_gnG_genomic.fna.gz',
status: 'completed',
total: 116654441,
progress: 100,
speed: 'NA',
size: '111 MB' }
Finally, to escape this, I had to press "ctrl+c" on the console in order to be able to continue inputing new code.
Reactions are currently unavailable