I am trying to login to a site using python requests. Normally I do this using curl in the cmd.
curl -c <path/urs_cookies.txt> -n -L https://site_FileUpload/login
Where the -n searches for the .netrc file in the cwd which contains my username and password.
However doing this in python using does not work
login = requests.get(url, auth=(username, password))
I believe this is because I need to use my .netrc file instead of using the authorisation method.
Is there anyway I can attach this file to my login request?
Thanks a lot