-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttp_client.py
41 lines (29 loc) · 1.22 KB
/
http_client.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# -*- coding: utf-8 -*-
from abc import ABC, abstractmethod
class HttpClient(ABC):
"""An interface for the methods that an HTTP Client must implement
This class should not be instantiated but should be used as a base class
for HTTP Client classes.
"""
@abstractmethod
def execute(self, request, endpoint_configuration):
"""Execute a given CoreHttpRequest to get a string response back
Args:
request (HttpRequest): The given HttpRequest to execute.
endpoint_configuration (EndpointConfiguration): The endpoint configurations to use.
Returns:
HttpResponse: The response of the CoreHttpRequest.
"""
...
@abstractmethod
def convert_response(self, response, contains_binary_response, request):
"""Converts the Response object of the HttpClient into an
HttpResponse object.
Args:
response (dynamic): The original response object.
contains_binary_response (bool): The flag to check if the response is of binary type.
request (HttpRequest): The original HttpRequest object.
Returns:
HttpResponse: The converted HttpResponse object.
"""
...