diff --git a/FaveScraper.py b/FaveScraper.py index 5f48a6e..5b0dd0a 100755 --- a/FaveScraper.py +++ b/FaveScraper.py @@ -8,6 +8,10 @@ from FAAPI import FAAPI def download(url: str): + """ + Downloads the file at the given URL. + @param url: URL of the file to download. + """ print('Downloading ' + url) with open(url.split('/')[-1], 'wb') as file: res = requests.get(url)