i try to send request to this URL : Site URL
And do a simple page reading with the following code :
import requests
url_1 = 'http://www.dsit.org.ir/?cmd=page&Cid=92&title=Kontakt&lang=fa'
print(requests.get(url_1).text)
But i get this Error :
requests.exceptions.ConnectionError: HTTPConnectionPool(host='www.srgfesrsergserg.com', port=80): Max retries exceeded with url: / (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x0000008EC69AAA90>: Failed to establish a new connection: [Errno 11001] getaddrinfo failed'))
This site is very basic and has no special security measures. Also, I only requested it once
Everything is fine and I open this page very easily with Request-html but I do not know what the problem is here !