Это первый раз, когда я пытаюсь подключиться к API. В моем примере я использовал простой API Google со следующим кодом:
import requests
response = requests.get('https://google.com/')
print(response)
Я получил следующую ошибку ....
ConnectionError: HTTPSConnectionPool(host='google.com', port=443): Max retries exceeded with url: / (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x000001CD3210B888>: Failed to establish a new connection: [WinError 10061] No connection could be made because the target machine actively refused it'))