To download a file from a web server, I do below -
import wget
url = "https:xxxxx/file"
iso_filename = wget.download(url, '/Users/xxxxx/Downloads/')
Now, I am trying to download a file from a website which requires authentication.
User credentials involve special characters - @, # etc
I would like to know a way of how to supply username and password in python3 while using wget ?
I would prefer to use wget unless there isn't any other option to overcome this issue.
Any advise would be highly appreciated.