common
ArkAsyncClient
¶
Bases: ABC
, ArkClient
Source code in ark_sdk_python/common/ark_async_client.py
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 |
|
async_request_for(poll_model, async_task)
abstractmethod
¶
Creates an async request for the specified model and task. The request polls for async operations as defined by the poll model's implementation.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
poll_model |
ArkPollableModel
|
description |
required |
async_task |
ArkAsyncTask
|
description |
required |
Returns:
Name | Type | Description |
---|---|---|
ArkAsyncRequest |
ArkAsyncRequest
|
description |
Source code in ark_sdk_python/common/ark_async_client.py
28 29 30 31 32 33 34 35 36 37 38 39 40 |
|
async_request_type()
abstractmethod
staticmethod
¶
Returns the client's async request type.
Returns:
Type | Description |
---|---|
Type[ArkAsyncRequest]
|
Type[ArkAsyncTask]: description |
Source code in ark_sdk_python/common/ark_async_client.py
52 53 54 55 56 57 58 59 60 |
|
async_task_type()
abstractmethod
staticmethod
¶
Returns the client's async task type.
Returns:
Type | Description |
---|---|
Type[ArkAsyncTask]
|
Type[ArkAsyncTask]: description |
Source code in ark_sdk_python/common/ark_async_client.py
42 43 44 45 46 47 48 49 50 |
|
ArkAsyncRequest
¶
Bases: ABC
Source code in ark_sdk_python/common/ark_async_request.py
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 |
|
is_finished()
abstractmethod
¶
Checks whether or not the current async request has finished.
Returns:
Name | Type | Description |
---|---|---|
bool |
bool
|
description |
Source code in ark_sdk_python/common/ark_async_request.py
16 17 18 19 20 21 22 23 |
|
poll(timeout_seconds, progress_callback)
abstractmethod
¶
Polls the async request until it has completed. Progress callbacks can also be used to return the async request's status.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
timeout_seconds |
int
|
description |
required |
progress_callback |
Callable[[ArkAsyncTask, int, ArkAsyncStatus], None]
|
description |
required |
Returns:
Name | Type | Description |
---|---|---|
bool |
bool
|
description |
Source code in ark_sdk_python/common/ark_async_request.py
43 44 45 46 47 48 49 50 51 52 53 54 55 |
|
task_failed()
abstractmethod
¶
Checks whether or the current async request failed.
Returns:
Name | Type | Description |
---|---|---|
bool |
bool
|
description |
Source code in ark_sdk_python/common/ark_async_request.py
25 26 27 28 29 30 31 32 |
|
task_timeout()
abstractmethod
¶
Checks whether or not the current async request has timed out.
Returns:
Name | Type | Description |
---|---|---|
bool |
bool
|
description |
Source code in ark_sdk_python/common/ark_async_request.py
34 35 36 37 38 39 40 41 |
|
ArkClient
¶
Source code in ark_sdk_python/common/ark_client.py
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 |
|
delete(route, **kwargs)
¶
Performs a DELETE request with the session details and given headers and tokens.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
route |
str
|
description |
required |
Returns:
Name | Type | Description |
---|---|---|
Response |
Response
|
description |
Source code in ark_sdk_python/common/ark_client.py
128 129 130 131 132 133 134 135 136 137 138 |
|
get(route, **kwargs)
¶
Performs a GET request with the session details and given headers and tokens.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
route |
str
|
description |
required |
Returns:
Name | Type | Description |
---|---|---|
Response |
Response
|
description |
Source code in ark_sdk_python/common/ark_client.py
92 93 94 95 96 97 98 99 100 101 102 |
|
options(route, **kwargs)
¶
Performs a OPTIONS request with the session details and given headers and tokens.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
route |
str
|
description |
required |
Returns:
Name | Type | Description |
---|---|---|
Response |
Response
|
description |
Source code in ark_sdk_python/common/ark_client.py
152 153 154 155 156 157 158 159 160 161 162 |
|
patch(route, **kwargs)
¶
Performs a PATCH request with the session details and given headers and tokens.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
route |
str
|
description |
required |
Returns:
Name | Type | Description |
---|---|---|
Response |
Response
|
description |
Source code in ark_sdk_python/common/ark_client.py
140 141 142 143 144 145 146 147 148 149 150 |
|
post(route, **kwargs)
¶
Performs a POST request with the session details and given headers and tokens.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
route |
str
|
description |
required |
Returns:
Name | Type | Description |
---|---|---|
Response |
Response
|
description |
Source code in ark_sdk_python/common/ark_client.py
104 105 106 107 108 109 110 111 112 113 114 |
|
put(route, **kwargs)
¶
Performs a PUT request with the session details and given headers and tokens.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
route |
str
|
description |
required |
Returns:
Name | Type | Description |
---|---|---|
Response |
Response
|
description |
Source code in ark_sdk_python/common/ark_client.py
116 117 118 119 120 121 122 123 124 125 126 |
|
update_cookies(cookies=None, cookie_jar=None)
¶
Updates session cookies.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
cookies |
Optional[List]
|
description. Defaults to None. |
None
|
cookie_jar |
Optional[RequestsCookieJar]
|
description. Defaults to None. |
None
|
Source code in ark_sdk_python/common/ark_client.py
182 183 184 185 186 187 188 189 190 191 192 193 194 |
|
update_token(token=None)
¶
Updates a session token.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
token |
Optional[str]
|
description. Defaults to None. |
None
|
Source code in ark_sdk_python/common/ark_client.py
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 |
|
ArkKeyring
¶
Source code in ark_sdk_python/common/ark_keyring.py
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 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 |
|
load_token(profile, postfix, enforce_basic_keyring=False)
¶
Loads a token for a profile from the keyring. The keyring is the OS-based implementation or, when unavailable, a fallback to BasicKeyring is used. When the token has expired and no refresh token exists, the token is deleted from the keyring and nothing is returned. When the token has expired but a refresh token exists, the token is only deleted if the max token time has passed (48 hours).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
profile |
ArkProfile
|
description |
required |
postfix |
str
|
description |
required |
enforce_basic_keyring |
bool
|
description |
False
|
Returns:
Type | Description |
---|---|
Optional[ArkToken]
|
Optional[ArkToken]: description |
Source code in ark_sdk_python/common/ark_keyring.py
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 |
|
save_token(profile, token, postfix, enforce_basic_keyring=False)
¶
Saves the specified token for a profile in the keyring. The keyring is the OS-based implementation or, when unavailable, a fallback to BasicKeyring is used.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
profile |
ArkProfile
|
description |
required |
token |
ArkToken
|
description |
required |
postfix |
str
|
description |
required |
enforce_basic_keyring |
bool
|
description |
False
|
Source code in ark_sdk_python/common/ark_keyring.py
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
|