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
                | 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 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 |  | 
            __init__(base_url, auth=None, default_headers=None)
¶
    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, str] | None | Default headers to include in requests. | None | 
Source code in src/cloe_nessy/clients/api_client/api_client.py
              
            _make_request(method, endpoint, timeout=30, params=None, data=None, json=None, headers=None, max_retries=0)
¶
    Makes a request to the API endpoint.
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 | 
| timeout | int | The timeout for the request in seconds. | 30 | 
| params | dict[str, str] | None | The query parameters for the request. | None | 
| data | dict[str, str] | None | The form data to include in the request. | None | 
| json | dict[str, str] | None | The JSON data to include in the request. | None | 
| headers | dict[str, str] | None | The headers to include in the request. | None | 
| max_retries | int | The maximum number of retries for the request. | 0 | 
Returns:
| Name | Type | Description | 
|---|---|---|
| APIResponse | APIResponse | The response from the API. | 
Raises:
| Type | Description | 
|---|---|
| APIClientError | If the request fails. | 
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. |