i´m pretty new in Python programming.I have python3 and i installed requests via pip.
I cant connect to any site with .get...
Is it a firewall or some connection problems ? I´m clueless
my code:
import requestsresponse = requests.get('https://google.com', timeout=20)print(response.status_code)
Output: I get a wall of Errors, see images.
If i try to catch exeptions:Code:
import requeststry: response = requests.get('https://google.com', timeout=20) if response.status_code == 200: print(response.json()) else: print(f"Fehler beim Abrufen der Daten. Statuscode: {response.status_code}")except Exception as e: print(f"Fehler: {e}")
Output:Fehler: HTTPSConnectionPool(host='google.com', port=443): Max retries exceeded with url: / (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x00000215B98DE900>: Failed to establish a new connection: [WinError 10051] A socket operation was related to an unavailable network'))