Quantcast
Channel: Active questions tagged https - Stack Overflow
Viewing all articles
Browse latest Browse all 1495

python requests: connection problems

$
0
0

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'))


Viewing all articles
Browse latest Browse all 1495

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>