Python-Tls-Client
Python-Tls-Client copied to clipboard
No History
trafficstars
Can you add the response.history like requests has
I'll look into it. Thank you very much for the suggestion :)
Hey, yes the client can do redirects for you. Just turn the allow_redirects option to True in your request.
Example:
session = tls_client.Session(
client_identifier="chrome_108",
random_tls_extension_order=True,
)
res = session.get(
"https://nike.de",
allow_redirects=True
)
print(res.url)