scottwernervt / favicon

Find a website's favicon.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

max-redirect limit not supported to pass as parameter - Takes too long to exceed default redirection limit (=30)

parth-gm opened this issue · comments

To set max_redirects we have to create requests.Session() object.

session = requests.Session()
session.max_redirects = 3
session.get(url)

Reference: https://stackoverflow.com/questions/31552627/python-requests-limit-number-of-redirects-followed/31553146