I've noticed that the requests library for Python does not follow certain URL redirects like my browser.
For example, when I do:
response = requests.get('http://www.bbmt.org/', verify=False, allow_redirects=True)
However, in my browser, I am eventually redirected back to http://www.bbmt.org/.
Is there a way to have requests behave like my browser in these scenarios?