i was trying to fill an online form at the time when the traffic of site is very high that it is almost impossible to get response from the server and the form is open for only limited time . So i use python request library to get the response but when i tried this simple code :
import requests
res = requests.get('url')
But i got an 'requests.exceptions.ConnectionError' saying 'An Existing Connection Was Forcibly Closed by the Remote Host'
How can i solve this problem and wait till i get response from request object as much as time it take to get response.