Index
APIClient
¶
A standardized client for the interaction with APIs.
This class handles the communication with an API, including retries for specific status codes.
Attributes:
| Name | Type | Description |
|---|---|---|
RETRY_CODES |
list[int]
|
List of HTTP status codes that should trigger a retry. |
MAX_SLEEP_TIME |
int
|
Maximum time to wait between retries, in seconds. |
base_url |
The base URL for the API. |
|
session |
The session object for making requests. |
Source code in src/cloe_nessy/clients/api_client/api_client.py
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 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 | |
__init__(base_url, auth=None, default_headers=None, pool_maxsize=10)
¶
Initializes the APIClient object.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
base_url
|
str
|
The base URL for the API. |
required |
auth
|
AuthBase | None
|
The authentication method for the API. |
None
|
default_headers
|
dict[str, Any] | None
|
Default headers to include in requests. |
None
|
pool_maxsize
|
int
|
The maximum pool size for the HTTPAdapter (maximum number of connections to save in the pool). |
10
|
Source code in src/cloe_nessy/clients/api_client/api_client.py
delete(endpoint, **kwargs)
¶
Sends a DELETE request to the specified endpoint.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
endpoint
|
str
|
The endpoint to send the request to. |
required |
**kwargs
|
Any
|
Additional arguments to pass to the request. |
{}
|
Returns:
| Name | Type | Description |
|---|---|---|
APIResponse |
APIResponse
|
The response from the API. |
Source code in src/cloe_nessy/clients/api_client/api_client.py
get(endpoint, **kwargs)
¶
Sends a GET request to the specified endpoint.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
endpoint
|
str
|
The endpoint to send the request to. |
required |
**kwargs
|
Any
|
Additional arguments to pass to the request. |
{}
|
Returns:
| Name | Type | Description |
|---|---|---|
APIResponse |
APIResponse
|
The response from the API. |
Source code in src/cloe_nessy/clients/api_client/api_client.py
patch(endpoint, **kwargs)
¶
Sends a PATCH request to the specified endpoint.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
endpoint
|
str
|
The endpoint to send the request to. |
required |
**kwargs
|
Any
|
Additional arguments to pass to the request. |
{}
|
Returns:
| Name | Type | Description |
|---|---|---|
APIResponse |
APIResponse
|
The response from the API. |
Source code in src/cloe_nessy/clients/api_client/api_client.py
post(endpoint, **kwargs)
¶
Sends a POST request to the specified endpoint.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
endpoint
|
str
|
The endpoint to send the request to. |
required |
**kwargs
|
Any
|
Additional arguments to pass to the request. |
{}
|
Returns:
| Name | Type | Description |
|---|---|---|
APIResponse |
APIResponse
|
The response from the API. |
Source code in src/cloe_nessy/clients/api_client/api_client.py
put(endpoint, **kwargs)
¶
Sends a PUT request to the specified endpoint.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
endpoint
|
str
|
The endpoint to send the request to. |
required |
**kwargs
|
Any
|
Additional arguments to pass to the request. |
{}
|
Returns:
| Name | Type | Description |
|---|---|---|
APIResponse |
APIResponse
|
The response from the API. |
Source code in src/cloe_nessy/clients/api_client/api_client.py
request(method, endpoint, **kwargs)
¶
Sends a request to the specified endpoint with the specified method.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
method
|
str
|
The HTTP method to use for the request. |
required |
endpoint
|
str
|
The endpoint to send the request to. |
required |
**kwargs
|
Any
|
Additional arguments to pass to the request. |
{}
|
Returns:
| Name | Type | Description |
|---|---|---|
APIResponse |
APIResponse
|
The response from the API. |
Source code in src/cloe_nessy/clients/api_client/api_client.py
APIResponse
¶
An abstracted response to implement parsing.
This class provides methods to parse the response from an API request.
Attributes:
| Name | Type | Description |
|---|---|---|
response |
The original response object. |
|
headers |
The headers of the response. |
|
status_code |
The status code of the response. |
|
content_type |
The content type of the response. |
Source code in src/cloe_nessy/clients/api_client/api_response.py
__init__(response)
¶
Initializes the APIResponse object.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
response
|
Response
|
The response object from an API request. |
required |
Source code in src/cloe_nessy/clients/api_client/api_response.py
to_dict(key=None)
¶
Parses the values from the response into a dictionary.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
key
|
str | None
|
The key to return from the dictionary. If specified, the method will return the value associated with this key from the parsed dictionary. |
None
|
Returns:
| Type | Description |
|---|---|
dict[str, Any]
|
The response parsed to a dictionary. If a key is specified, the method returns the value associated with this key. |
Raises:
| Type | Description |
|---|---|
KeyError
|
If the specified key is not found in the response. |
ValueError
|
If there is an error parsing the JSON response. |
Exception
|
For any other unexpected errors. |
Source code in src/cloe_nessy/clients/api_client/api_response.py
PaginationConfig
¶
Bases: BaseModel
Configuration model for pagination options.
Source code in src/cloe_nessy/clients/api_client/pagination_config.py
PaginationConfigData
¶
Bases: TypedDict
Top-level config (what your Pydantic model or dict can accept).