Subversion Repositories Kolibri OS

Rev

Rev 9372 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. import urllib.request
  2.  
  3. def download(link, path):
  4.     log(f"Downloading {path}... ", end = "")
  5.     urllib.request.urlretrieve(link, path)
  6.     log("Done.")
  7.  
  8.  
  9.