request.get () выдает ошибку при доступе к сайту https, а выводит html при доступе к сайту http - PullRequest
0 голосов
/ 22 октября 2019

ниже - программа, которую я пытаюсь запустить для тестирования API. я запускаю его через pycharm ide последнюю версию selenium / python

import requests
import json
import jsonpath
url = "https://jsonplaceholder.typicode.com/posts"
grsp = requests.get(url)
print(grsp.content)

ошибка, которую я получаю:

Traceback (most recent call last):
  File "python\lib\site-packages\urllib3-1.25.3-py3.7.egg\urllib3\connection.py", line 159, in _new_conn
    (self._dns_host, self.port), self.timeout, **extra_kw
  File "C:\python\lib\site-packages\urllib3-1.25.3-py3.7.egg\urllib3\util\connection.py", line 84, in create_connection
    raise err
  File "C:\python\lib\site-packages\urllib3-1.25.3-py3.7.egg\urllib3\util\connection.py", line 74, in create_connection
    sock.connect(sa)
TimeoutError: [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

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "C:\python\lib\site-packages\urllib3-1.25.3-py3.7.egg\urllib3\connectionpool.py", line 660, in urlopen
    chunked=chunked,
  File "C:\python\lib\site-packages\urllib3-1.25.3-py3.7.egg\urllib3\connectionpool.py", line 371, in _make_request
    self._validate_conn(conn)
  File "C:\python\lib\site-packages\urllib3-1.25.3-py3.7.egg\urllib3\connectionpool.py", line 982, in _validate_conn
    conn.connect()
  File "C:\python\lib\site-packages\urllib3-1.25.3-py3.7.egg\urllib3\connection.py", line 336, in connect
    conn = self._new_conn()
  File "C:\python\lib\site-packages\urllib3-1.25.3-py3.7.egg\urllib3\connection.py", line 171, in _new_conn
    self, "Failed to establish a new connection: %s" % e
urllib3.exceptions.NewConnectionError: <urllib3.connection.VerifiedHTTPSConnection object at 0x000000000372A438>: 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

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "\PycharmProjects\API\venv\lib\site-packages\requests\adapters.py", line 449, in send
    timeout=timeout
  File "C:\python\lib\site-packages\urllib3-1.25.3-py3.7.egg\urllib3\connectionpool.py", line 708, in urlopen
    method, url, error=e, _pool=self, _stacktrace=sys.exc_info()[2]
  File "C:\python\lib\site-packages\urllib3-1.25.3-py3.7.egg\urllib3\util\retry.py", line 436, in increment
    raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='jsonplaceholder.typicode.com', port=443): Max retries exceeded with url: /posts (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0x000000000372A438>: 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'))

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/PycharmProjects/API/get/get.py", line 7, in <module>
    grsp = requests.get(url)
  File "\PycharmProjects\API\venv\lib\site-packages\requests\api.py", line 75, in get
    return request('get', url, params=params, **kwargs)
  File "\PycharmProjects\API\venv\lib\site-packages\requests\api.py", line 60, in request
    return session.request(method=method, url=url, **kwargs)
  File "\PycharmProjects\API\venv\lib\site-packages\requests\sessions.py", line 533, in request
    resp = self.send(prep, **send_kwargs)
  File "\PycharmProjects\API\venv\lib\site-packages\requests\sessions.py", line 646, in send
    r = adapter.send(request, **kwargs)
  File "\PycharmProjects\API\venv\lib\site-packages\requests\adapters.py", line 516, in send
    raise ConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='jsonplaceholder.typicode.com', port=443): Max retries exceeded with url: /posts (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0x000000000372A438>: 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'))

один и тот же API хорошо работает в Soapui и post man. и эта ошибка существует для всех API, которые я пробую через pycharm. в чем может быть ошибка?

...