Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Downloading files in Jupyter: wget on Windows?

I am trying to download files from a url.

I found wget command to be able to do that. Since I use Jupyter, I did not want to use pip, however conda install conda wget didn't work as there is no Windows wget in the default repository. Thus I did conda install menpo wget which successfully installed wget. However I still cannot import wget in JupyterLab: ModuleNotFoundError: No module named 'wget'

  1. Are there any other steps to import wget?
  2. Is there a better way to download files in Jupyter?
like image 711
stinglikeabeer Avatar asked Sep 01 '19 18:09

stinglikeabeer


Video Answer


2 Answers

In Google-Collab this code works well:

!wget https://audio-previews.elements.envatousercontent.com/files/6319559/preview.mp3 -O sample_f.mp3
!wget https://audio-previews.elements.envatousercontent.com/files/256324900/preview.mp3 -O sample_m.mp3

But not locally on Windows 10. In my Jupyter Notebook cell this code:

# pip install wget
!python -m wget https://audio-previews.elements.envatousercontent.com/files/6319559/preview.mp3 -o sample_f.mp3
!python -m wget https://audio-previews.elements.envatousercontent.com/files/256324900/preview.mp3 -o sample_m.mp3

Saves files and returns:

Saved under sample_f.mp3
Saved under sample_m.mp3

OR I tried another way: I downloaded wget.exe for Windows from here and moved it to PATH-directory. Then code works too:

!wget https://audio-previews.elements.envatousercontent.com/files/6319559/preview.mp3 -O sample_f.mp3
!wget https://audio-previews.elements.envatousercontent.com/files/256324900/preview.mp3 -O sample_m.mp3
like image 123
Jackssn Avatar answered Oct 17 '22 22:10

Jackssn


As Trenton_M pointed out, there is a urllib library that can do it instead of wget:

import urllib.request
url = 'https://address'
filename = 'myfile.txt'
urllib.request.urlretrieve(url, filename)
like image 35
stinglikeabeer Avatar answered Oct 17 '22 22:10

stinglikeabeer