import wget
for link in saved:
url = link.url
wget.download(url,'downloads/')
This code works however it fails and stops soon as the first error occurs, as I don't filter or test whats in link.url as that gets populated from another function. How do I ignore any errors wget receives so it can continue on. I don't care but if possible, errors can be appended to the local file system this is running from in a file called error.
Thank you for any assistance. I am still very new to Python.