-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathclient_wrapper.py
83 lines (70 loc) · 2.54 KB
/
client_wrapper.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# This file was auto-generated by Fern from our API Definition.
import typing
import httpx
from .http_client import AsyncHttpClient, HttpClient
class BaseClientWrapper:
def __init__(
self,
*,
account_token: typing.Optional[str] = None,
api_key: typing.Union[str, typing.Callable[[], str]],
base_url: str,
timeout: typing.Optional[float] = None,
):
self._account_token = account_token
self._api_key = api_key
self._base_url = base_url
self._timeout = timeout
def get_headers(self) -> typing.Dict[str, str]:
headers: typing.Dict[str, str] = {
"X-Fern-Language": "Python",
"X-Fern-SDK-Name": "MergePythonClient",
"X-Fern-SDK-Version": "1.0.12",
}
if self._account_token is not None:
headers["X-Account-Token"] = self._account_token
headers["Authorization"] = f"Bearer {self._get_api_key()}"
return headers
def _get_api_key(self) -> str:
if isinstance(self._api_key, str):
return self._api_key
else:
return self._api_key()
def get_base_url(self) -> str:
return self._base_url
def get_timeout(self) -> typing.Optional[float]:
return self._timeout
class SyncClientWrapper(BaseClientWrapper):
def __init__(
self,
*,
account_token: typing.Optional[str] = None,
api_key: typing.Union[str, typing.Callable[[], str]],
base_url: str,
timeout: typing.Optional[float] = None,
httpx_client: httpx.Client,
):
super().__init__(account_token=account_token, api_key=api_key, base_url=base_url, timeout=timeout)
self.httpx_client = HttpClient(
httpx_client=httpx_client,
base_headers=self.get_headers(),
base_timeout=self.get_timeout(),
base_url=self.get_base_url(),
)
class AsyncClientWrapper(BaseClientWrapper):
def __init__(
self,
*,
account_token: typing.Optional[str] = None,
api_key: typing.Union[str, typing.Callable[[], str]],
base_url: str,
timeout: typing.Optional[float] = None,
httpx_client: httpx.AsyncClient,
):
super().__init__(account_token=account_token, api_key=api_key, base_url=base_url, timeout=timeout)
self.httpx_client = AsyncHttpClient(
httpx_client=httpx_client,
base_headers=self.get_headers(),
base_timeout=self.get_timeout(),
base_url=self.get_base_url(),
)