I'm trying to download a file from a website which requires log-in. By command line it can easily be done via
curl --proxy-anyauth -p -c cookie -u user:psw -L url > file.ext
Any advices on how to do that in python? Thank you
I'm trying to download a file from a website which requires log-in. By command line it can easily be done via
curl --proxy-anyauth -p -c cookie -u user:psw -L url > file.ext
Any advices on how to do that in python? Thank you
I have never used this before however I think this could work.
Here is the link to PyCurl library