How to deal with 401 (unauthorised) in python requests
问题 What I want to do is GET from a site and if that request returns a 401, then redo my authentication wiggle (which may be out of date) and try again. But I don't want to try a third time, since that would be my authentication wiggle having the wrong credentials. Does anyone have a nice way of doing this that doesn't involve properly ugly code, ideally in python requests library, but I don't mind changing. 回答1: It doesn't get any less ugly than this, I think: import requests from requests.auth