This repository was archived by the owner on Mar 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclient_wrapper.py
55 lines (44 loc) · 1.58 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
# This file was auto-generated by Fern from our API Definition.
import typing
import httpx
class BaseClientWrapper:
def __init__(self, *, token: typing.Optional[typing.Union[str, typing.Callable[[], str]]] = None, base_url: str):
self._token = token
self._base_url = base_url
def get_headers(self) -> typing.Dict[str, str]:
headers: typing.Dict[str, str] = {
"X-Fern-Language": "Python",
"X-Fern-SDK-Name": "flipt",
"X-Fern-SDK-Version": "0.2.18",
}
token = self._get_token()
if token is not None:
headers["Authorization"] = f"Bearer {token}"
return headers
def _get_token(self) -> typing.Optional[str]:
if isinstance(self._token, str) or self._token is None:
return self._token
else:
return self._token()
def get_base_url(self) -> str:
return self._base_url
class SyncClientWrapper(BaseClientWrapper):
def __init__(
self,
*,
token: typing.Optional[typing.Union[str, typing.Callable[[], str]]] = None,
base_url: str,
httpx_client: httpx.Client,
):
super().__init__(token=token, base_url=base_url)
self.httpx_client = httpx_client
class AsyncClientWrapper(BaseClientWrapper):
def __init__(
self,
*,
token: typing.Optional[typing.Union[str, typing.Callable[[], str]]] = None,
base_url: str,
httpx_client: httpx.AsyncClient,
):
super().__init__(token=token, base_url=base_url)
self.httpx_client = httpx_client