hi I trying to get a request to https://www.playerup.com/ with blow code :
import requests
header = {"user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36"}
r = requests.get("https://www.playerup.com/",headers=header)
print(r.status_code)
but it give me a [503]type error I trying timeout for 5 second and also not work how I should fix it ?