Simonlob commited on
Commit
bb57065
·
verified ·
1 Parent(s): 6f1c7eb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -16,6 +16,7 @@ import requests
16
 
17
  def download_file(url, save_path):
18
  response = requests.get(url)
 
19
  with open(save_path, 'wb') as file:
20
  file.write(response.content)
21
 
 
16
 
17
  def download_file(url, save_path):
18
  response = requests.get(url)
19
+ print(f'---Loading from URL: {url} ---')
20
  with open(save_path, 'wb') as file:
21
  file.write(response.content)
22