Как подключиться к этой строке завитка в Python? - PullRequest
0 голосов
/ 10 июля 2020

Я пытаюсь подключиться к приложению knowbe4 в Python. Однако я не знаю, как преобразовать строку curl в запрос python.

Вот строка curl:

 curl -k -X GET   'https://us.api.knowbe4.com'   -H 'Authorization: Bearer 454yrghrtwehsthvNPXM'

Вот мой код:

import json
import requests
from config import configs
from exceptions import ConfigurationError, HTTPError

    url='https://us.api.knowbe4.com'
    t='454yrghrtwehsthvNPXM'
    
    h={'Authorization': 'Bearer {0}'.format(t)}
    
    resp = requests.get(url, headers=h, verify=False)

При запуске ничего не происходит. Я делаю что-то неправильно? Я новичок в вызовах API, поэтому любая информация может помочь.

Я получаю ошибку:

NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x00050>: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond'))
...