@planqk/planqk-service-sdk 2.10.1 → 2.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env.template +4 -4
- package/README-node.md +3 -3
- package/README-python.md +3 -3
- package/README.md +3 -3
- package/dist/auth.d.ts +4 -4
- package/dist/auth.js +12 -8
- package/dist/client.d.ts +1 -1
- package/dist/client.js +3 -3
- package/dist/sdk/environments.d.ts +1 -1
- package/dist/sdk/environments.js +1 -1
- package/fern/openapi/openapi.yml +2 -2
- package/notebooks/python-sdk.ipynb +7 -9
- package/package.json +1 -1
- package/planqk/service/_version.py +1 -1
- package/planqk/service/auth.py +5 -5
- package/planqk/service/client.py +7 -7
- package/planqk/service/sdk/environment.py +1 -1
- package/pyproject.toml +1 -1
- package/requirements-dev.txt +105 -99
- package/requirements.txt +12 -16
- package/src/auth.ts +12 -8
- package/src/client.ts +3 -3
- package/src/index.test.ts +5 -7
- package/src/sdk/environments.ts +1 -1
- package/uv.lock +176 -132
package/.env.template
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
TOKEN_ENDPOINT=https://gateway.
|
|
2
|
-
SERVICE_ENDPOINT=https://gateway.
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
TOKEN_ENDPOINT=https://gateway.hub.kipu-quantum.com/token
|
|
2
|
+
SERVICE_ENDPOINT=https://gateway.hub.kipu-quantum.com/your-organization/your-service/1.0.0
|
|
3
|
+
ACCESS_KEY_ID=your-access-key-id
|
|
4
|
+
SECRET_ACCESS_KEY=your-secret-access-key
|
package/README-node.md
CHANGED
|
@@ -12,11 +12,11 @@ npm install @planqk/planqk-service-sdk
|
|
|
12
12
|
|
|
13
13
|
```typescript
|
|
14
14
|
const serviceEndpoint = "..."
|
|
15
|
-
const
|
|
16
|
-
const
|
|
15
|
+
const accessKeyId = "..."
|
|
16
|
+
const secretAccessKey = "..."
|
|
17
17
|
|
|
18
18
|
// Create a new PlanqkServiceClient instance
|
|
19
|
-
const client = new PlanqkServiceClient(serviceEndpoint,
|
|
19
|
+
const client = new PlanqkServiceClient(serviceEndpoint, accessKeyId, secretAccessKey)
|
|
20
20
|
|
|
21
21
|
// List all service executions
|
|
22
22
|
const serviceExecutions = await client.api().getServiceExecutions()
|
package/README-python.md
CHANGED
|
@@ -14,12 +14,12 @@ pip install --upgrade planqk-service-sdk
|
|
|
14
14
|
import os
|
|
15
15
|
from planqk.service.client import PlanqkServiceClient
|
|
16
16
|
|
|
17
|
-
consumer_key = "..."
|
|
18
|
-
consumer_secret = "..."
|
|
19
17
|
service_endpoint = "..."
|
|
18
|
+
access_key_id = "..."
|
|
19
|
+
secret_access_key = "..."
|
|
20
20
|
|
|
21
21
|
# Create a new PlanqkServiceClient instance
|
|
22
|
-
client = PlanqkServiceClient(service_endpoint,
|
|
22
|
+
client = PlanqkServiceClient(service_endpoint, access_key_id, secret_access_key)
|
|
23
23
|
|
|
24
24
|
# Prepare your input data and parameters
|
|
25
25
|
data = {"values": [2]}
|
package/README.md
CHANGED
|
@@ -12,11 +12,11 @@ npm install @planqk/planqk-service-sdk
|
|
|
12
12
|
|
|
13
13
|
```typescript
|
|
14
14
|
const serviceEndpoint = "..."
|
|
15
|
-
const
|
|
16
|
-
const
|
|
15
|
+
const accessKeyId = "..."
|
|
16
|
+
const secretAccessKey = "..."
|
|
17
17
|
|
|
18
18
|
// Create a new PlanqkServiceClient instance
|
|
19
|
-
const client = new PlanqkServiceClient(serviceEndpoint,
|
|
19
|
+
const client = new PlanqkServiceClient(serviceEndpoint, accessKeyId, secretAccessKey)
|
|
20
20
|
|
|
21
21
|
// List all service executions
|
|
22
22
|
const serviceExecutions = await client.api().getServiceExecutions()
|
package/dist/auth.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export declare const DEFAULT_TOKEN_ENDPOINT = "https://gateway.
|
|
1
|
+
export declare const DEFAULT_TOKEN_ENDPOINT = "https://gateway.hub.kipu-quantum.com/token";
|
|
2
2
|
export declare class PlanqkServiceAuth {
|
|
3
3
|
private accessToken;
|
|
4
|
-
private readonly
|
|
5
|
-
private readonly
|
|
4
|
+
private readonly accessKeyId;
|
|
5
|
+
private readonly secretAccessKey;
|
|
6
6
|
private readonly tokenEndpoint;
|
|
7
|
-
constructor(
|
|
7
|
+
constructor(accessKeyId: string, secretAccessKey: string, tokenEndpoint?: string);
|
|
8
8
|
getAccessToken(): Promise<string>;
|
|
9
9
|
private fetchAccessToken;
|
|
10
10
|
}
|
package/dist/auth.js
CHANGED
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.PlanqkServiceAuth = exports.DEFAULT_TOKEN_ENDPOINT = void 0;
|
|
4
4
|
const simple_oauth2_1 = require("simple-oauth2");
|
|
5
|
-
exports.DEFAULT_TOKEN_ENDPOINT = 'https://gateway.
|
|
5
|
+
exports.DEFAULT_TOKEN_ENDPOINT = 'https://gateway.hub.kipu-quantum.com/token';
|
|
6
6
|
class PlanqkServiceAuth {
|
|
7
7
|
accessToken;
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
accessKeyId;
|
|
9
|
+
secretAccessKey;
|
|
10
10
|
tokenEndpoint;
|
|
11
|
-
constructor(
|
|
12
|
-
this.
|
|
13
|
-
this.
|
|
11
|
+
constructor(accessKeyId, secretAccessKey, tokenEndpoint = exports.DEFAULT_TOKEN_ENDPOINT) {
|
|
12
|
+
this.accessKeyId = accessKeyId;
|
|
13
|
+
this.secretAccessKey = secretAccessKey;
|
|
14
14
|
this.tokenEndpoint = tokenEndpoint;
|
|
15
15
|
}
|
|
16
16
|
async getAccessToken() {
|
|
@@ -29,9 +29,13 @@ class PlanqkServiceAuth {
|
|
|
29
29
|
tokenPath: '/token',
|
|
30
30
|
},
|
|
31
31
|
client: {
|
|
32
|
-
id: this.
|
|
33
|
-
secret: this.
|
|
32
|
+
id: this.accessKeyId,
|
|
33
|
+
secret: this.secretAccessKey,
|
|
34
34
|
},
|
|
35
|
+
options: {
|
|
36
|
+
authorizationMethod: 'body',
|
|
37
|
+
bodyFormat: 'form'
|
|
38
|
+
}
|
|
35
39
|
});
|
|
36
40
|
return client.getToken({});
|
|
37
41
|
}
|
package/dist/client.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ServiceApi } from "./sdk/api/resources/serviceApi/client/Client";
|
|
2
2
|
export declare class PlanqkServiceClient {
|
|
3
3
|
private _api;
|
|
4
|
-
constructor(serviceEndpoint: string,
|
|
4
|
+
constructor(serviceEndpoint: string, accessKeyId?: string, secretAccessKey?: string, tokenEndpoint?: string);
|
|
5
5
|
api(): ServiceApi;
|
|
6
6
|
}
|
package/dist/client.js
CHANGED
|
@@ -5,9 +5,9 @@ const auth_1 = require("./auth");
|
|
|
5
5
|
const sdk_1 = require("./sdk");
|
|
6
6
|
class PlanqkServiceClient {
|
|
7
7
|
_api;
|
|
8
|
-
constructor(serviceEndpoint,
|
|
9
|
-
if (
|
|
10
|
-
const auth = new auth_1.PlanqkServiceAuth(
|
|
8
|
+
constructor(serviceEndpoint, accessKeyId, secretAccessKey, tokenEndpoint = auth_1.DEFAULT_TOKEN_ENDPOINT) {
|
|
9
|
+
if (accessKeyId && secretAccessKey) {
|
|
10
|
+
const auth = new auth_1.PlanqkServiceAuth(accessKeyId, secretAccessKey, tokenEndpoint);
|
|
11
11
|
this._api = new sdk_1.PlanqkServiceApiClient({
|
|
12
12
|
environment: () => serviceEndpoint,
|
|
13
13
|
token: async () => auth.getAccessToken(),
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare const PlanqkServiceApiEnvironment: {
|
|
2
|
-
readonly Default: "https://gateway.
|
|
2
|
+
readonly Default: "https://gateway.hub.kipu-quantum.com/<context>/<service>/<version>";
|
|
3
3
|
};
|
|
4
4
|
export type PlanqkServiceApiEnvironment = typeof PlanqkServiceApiEnvironment.Default;
|
package/dist/sdk/environments.js
CHANGED
|
@@ -3,5 +3,5 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
4
|
exports.PlanqkServiceApiEnvironment = void 0;
|
|
5
5
|
exports.PlanqkServiceApiEnvironment = {
|
|
6
|
-
Default: "https://gateway.
|
|
6
|
+
Default: "https://gateway.hub.kipu-quantum.com/<context>/<service>/<version>",
|
|
7
7
|
};
|
package/fern/openapi/openapi.yml
CHANGED
|
@@ -136,12 +136,12 @@ components:
|
|
|
136
136
|
type: oauth2
|
|
137
137
|
flows:
|
|
138
138
|
clientCredentials:
|
|
139
|
-
tokenUrl: https://gateway.
|
|
139
|
+
tokenUrl: https://gateway.hub.kipu-quantum.com/token
|
|
140
140
|
scopes: { }
|
|
141
141
|
security:
|
|
142
142
|
- ApplicationCredentials: [ ]
|
|
143
143
|
servers:
|
|
144
|
-
- url: https://gateway.
|
|
144
|
+
- url: https://gateway.hub.kipu-quantum.com/<context>/<service>/<version>
|
|
145
145
|
description: The service endpoint
|
|
146
146
|
paths:
|
|
147
147
|
/:
|
|
@@ -26,15 +26,13 @@
|
|
|
26
26
|
"\n",
|
|
27
27
|
"load_dotenv(override=True)\n",
|
|
28
28
|
"\n",
|
|
29
|
-
"token_endpoint = os.getenv(\"TOKEN_ENDPOINT\",
|
|
30
|
-
"service_endpoint = os.getenv(\"SERVICE_ENDPOINT\",
|
|
31
|
-
"
|
|
32
|
-
"
|
|
29
|
+
"token_endpoint = os.getenv(\"TOKEN_ENDPOINT\", \"https://gateway.hub.kipu-quantum.com/token\")\n",
|
|
30
|
+
"service_endpoint = os.getenv(\"SERVICE_ENDPOINT\", \"https://gateway.hub.kipu-quantum.com/your-organization/your-service/1.0.0\")\n",
|
|
31
|
+
"access_key_id = os.getenv(\"ACCESS_KEY_ID\", None)\n",
|
|
32
|
+
"secret_access_key = os.getenv(\"SECRET_ACCESS_KEY\", None)\n",
|
|
33
33
|
"\n",
|
|
34
34
|
"print(f\"Token endpoint: {token_endpoint}\")\n",
|
|
35
|
-
"print(f\"Service endpoint: {service_endpoint}\")
|
|
36
|
-
"print(f\"Consumer key: {consumer_key}\")\n",
|
|
37
|
-
"print(f\"Consumer secret: {consumer_secret}\")"
|
|
35
|
+
"print(f\"Service endpoint: {service_endpoint}\")"
|
|
38
36
|
]
|
|
39
37
|
},
|
|
40
38
|
{
|
|
@@ -54,7 +52,7 @@
|
|
|
54
52
|
"\n",
|
|
55
53
|
"# Create a new PlanqkServiceClient instance\n",
|
|
56
54
|
"client = PlanqkServiceClient(\n",
|
|
57
|
-
" service_endpoint,
|
|
55
|
+
" service_endpoint, access_key_id, secret_access_key, token_endpoint\n",
|
|
58
56
|
")"
|
|
59
57
|
]
|
|
60
58
|
},
|
|
@@ -220,7 +218,7 @@
|
|
|
220
218
|
"name": "python",
|
|
221
219
|
"nbconvert_exporter": "python",
|
|
222
220
|
"pygments_lexer": "ipython3",
|
|
223
|
-
"version": "3.11.
|
|
221
|
+
"version": "3.11.13"
|
|
224
222
|
}
|
|
225
223
|
},
|
|
226
224
|
"nbformat": 4,
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "2.
|
|
1
|
+
__version__ = "2.12.0"
|
package/planqk/service/auth.py
CHANGED
|
@@ -3,15 +3,15 @@ import time
|
|
|
3
3
|
|
|
4
4
|
from authlib.integrations.httpx_client import OAuth2Client
|
|
5
5
|
|
|
6
|
-
DEFAULT_TOKEN_ENDPOINT = "https://gateway.
|
|
6
|
+
DEFAULT_TOKEN_ENDPOINT = "https://gateway.hub.kipu-quantum.com/token"
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
class PlanqkServiceAuth:
|
|
10
10
|
_logger = logging.getLogger(__name__)
|
|
11
11
|
|
|
12
|
-
def __init__(self,
|
|
13
|
-
self.
|
|
14
|
-
self.
|
|
12
|
+
def __init__(self, access_key_id: str, secret_access_key: str, token_endpoint: str = DEFAULT_TOKEN_ENDPOINT):
|
|
13
|
+
self._access_key_id = access_key_id
|
|
14
|
+
self._secret_access_key = secret_access_key
|
|
15
15
|
self._token_endpoint = token_endpoint
|
|
16
16
|
self._token = None
|
|
17
17
|
self._last_token_fetch = None
|
|
@@ -28,7 +28,7 @@ class PlanqkServiceAuth:
|
|
|
28
28
|
|
|
29
29
|
def _refresh_token(self):
|
|
30
30
|
self._logger.debug("Creating new token using client credentials flow")
|
|
31
|
-
with OAuth2Client(self.
|
|
31
|
+
with OAuth2Client(self._access_key_id, self._secret_access_key) as client:
|
|
32
32
|
token = client.fetch_token(self._token_endpoint, grant_type='client_credentials')
|
|
33
33
|
|
|
34
34
|
self._token = token
|
package/planqk/service/client.py
CHANGED
|
@@ -113,19 +113,19 @@ class PlanqkServiceClient:
|
|
|
113
113
|
def __init__(
|
|
114
114
|
self,
|
|
115
115
|
service_endpoint: str,
|
|
116
|
-
|
|
117
|
-
|
|
116
|
+
access_key_id: typing.Union[str, None],
|
|
117
|
+
secret_access_key: typing.Union[str, None],
|
|
118
118
|
token_endpoint: str = DEFAULT_TOKEN_ENDPOINT,
|
|
119
119
|
):
|
|
120
120
|
self._service_endpoint = service_endpoint
|
|
121
|
-
self.
|
|
122
|
-
self.
|
|
121
|
+
self._access_key_id = access_key_id
|
|
122
|
+
self._secret_access_key = secret_access_key
|
|
123
123
|
self._token_endpoint = token_endpoint
|
|
124
124
|
|
|
125
|
-
if (self.
|
|
125
|
+
if (self._access_key_id is not None) or (self._secret_access_key is not None):
|
|
126
126
|
self._auth = PlanqkServiceAuth(
|
|
127
|
-
|
|
128
|
-
|
|
127
|
+
access_key_id=self._access_key_id,
|
|
128
|
+
secret_access_key=self._secret_access_key,
|
|
129
129
|
token_endpoint=self._token_endpoint,
|
|
130
130
|
)
|
|
131
131
|
self._api = PlanqkServiceApi(base_url=self._service_endpoint, token=self._auth.get_token)
|
package/pyproject.toml
CHANGED
package/requirements-dev.txt
CHANGED
|
@@ -4,9 +4,9 @@ annotated-types==0.7.0 \
|
|
|
4
4
|
--hash=sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53 \
|
|
5
5
|
--hash=sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89
|
|
6
6
|
# via pydantic
|
|
7
|
-
anyio==4.
|
|
8
|
-
--hash=sha256:
|
|
9
|
-
--hash=sha256:
|
|
7
|
+
anyio==4.12.1 \
|
|
8
|
+
--hash=sha256:41cfcc3a4c85d3f05c932da7c26d0201ac36f72abd4435ba90d0464a3ffed703 \
|
|
9
|
+
--hash=sha256:d405828884fc140aa80a3c667b8beed277f1dfedec42ba031bd6ac3db606ab6c
|
|
10
10
|
# via httpx
|
|
11
11
|
appnope==0.1.4 ; sys_platform == 'darwin' \
|
|
12
12
|
--hash=sha256:1de3860566df9caf38f01f86f65e0e13e379af54f9e4bee1e66b48f2efffd1ee \
|
|
@@ -16,21 +16,21 @@ astroid==3.3.11 ; python_full_version < '3.10' \
|
|
|
16
16
|
--hash=sha256:1e5a5011af2920c7c67a53f65d536d65bfa7116feeaf2354d8b94f29573bb0ce \
|
|
17
17
|
--hash=sha256:54c760ae8322ece1abd213057c4b5bba7c49818853fc901ef09719a60dbf9dec
|
|
18
18
|
# via pylint
|
|
19
|
-
astroid==4.0.
|
|
20
|
-
--hash=sha256:
|
|
21
|
-
--hash=sha256:
|
|
19
|
+
astroid==4.0.3 ; python_full_version >= '3.10' \
|
|
20
|
+
--hash=sha256:08d1de40d251cc3dc4a7a12726721d475ac189e4e583d596ece7422bc176bda3 \
|
|
21
|
+
--hash=sha256:864a0a34af1bd70e1049ba1e61cee843a7252c826d97825fcee9b2fcbd9e1b14
|
|
22
22
|
# via pylint
|
|
23
|
-
asttokens==3.0.
|
|
24
|
-
--hash=sha256:
|
|
25
|
-
--hash=sha256:
|
|
23
|
+
asttokens==3.0.1 \
|
|
24
|
+
--hash=sha256:15a3ebc0f43c2d0a50eeafea25e19046c68398e487b9f1f5b517f7c0f40f976a \
|
|
25
|
+
--hash=sha256:71a4ee5de0bde6a31d64f6b13f2293ac190344478f081c3d1bccfcf5eacb0cb7
|
|
26
26
|
# via stack-data
|
|
27
|
-
authlib==1.6.
|
|
28
|
-
--hash=sha256:
|
|
29
|
-
--hash=sha256:
|
|
27
|
+
authlib==1.6.6 \
|
|
28
|
+
--hash=sha256:45770e8e056d0f283451d9996fbb59b70d45722b45d854d58f32878d0a40c38e \
|
|
29
|
+
--hash=sha256:7d9e9bc535c13974313a87f53e8430eb6ea3d1cf6ae4f6efcd793f2e949143fd
|
|
30
30
|
# via planqk-service-sdk
|
|
31
|
-
certifi==
|
|
32
|
-
--hash=sha256:
|
|
33
|
-
--hash=sha256:
|
|
31
|
+
certifi==2026.1.4 \
|
|
32
|
+
--hash=sha256:9943707519e4add1115f44c2bc244f782c0249876bf51b6599fee1ffbedd685c \
|
|
33
|
+
--hash=sha256:ac726dd470482006e014ad384921ed6438c457018f4b3d204aea4281258b2120
|
|
34
34
|
# via
|
|
35
35
|
# httpcore
|
|
36
36
|
# httpx
|
|
@@ -189,33 +189,33 @@ cryptography==46.0.3 \
|
|
|
189
189
|
--hash=sha256:ef639cb3372f69ec44915fafcd6698b6cc78fbe0c2ea41be867f6ed612811963 \
|
|
190
190
|
--hash=sha256:f260d0d41e9b4da1ed1e0f1ce571f97fe370b152ab18778e9e8f67d6af432018
|
|
191
191
|
# via authlib
|
|
192
|
-
debugpy==1.8.
|
|
193
|
-
--hash=sha256:
|
|
194
|
-
--hash=sha256:
|
|
195
|
-
--hash=sha256:
|
|
196
|
-
--hash=sha256:
|
|
197
|
-
--hash=sha256:
|
|
198
|
-
--hash=sha256:
|
|
199
|
-
--hash=sha256:
|
|
200
|
-
--hash=sha256:
|
|
201
|
-
--hash=sha256:
|
|
202
|
-
--hash=sha256:
|
|
203
|
-
--hash=sha256:
|
|
204
|
-
--hash=sha256:
|
|
205
|
-
--hash=sha256:
|
|
206
|
-
--hash=sha256:
|
|
207
|
-
--hash=sha256:
|
|
208
|
-
--hash=sha256:
|
|
209
|
-
--hash=sha256:
|
|
210
|
-
--hash=sha256:
|
|
211
|
-
--hash=sha256:
|
|
212
|
-
--hash=sha256:
|
|
213
|
-
--hash=sha256:
|
|
214
|
-
--hash=sha256:
|
|
215
|
-
--hash=sha256:
|
|
216
|
-
--hash=sha256:
|
|
217
|
-
--hash=sha256:
|
|
218
|
-
--hash=sha256:
|
|
192
|
+
debugpy==1.8.19 \
|
|
193
|
+
--hash=sha256:0601708223fe1cd0e27c6cce67a899d92c7d68e73690211e6788a4b0e1903f5b \
|
|
194
|
+
--hash=sha256:14035cbdbb1fe4b642babcdcb5935c2da3b1067ac211c5c5a8fdc0bb31adbcaa \
|
|
195
|
+
--hash=sha256:1e8c4d1bd230067bf1bbcdbd6032e5a57068638eb28b9153d008ecde288152af \
|
|
196
|
+
--hash=sha256:327cb28c3ad9e17bc925efc7f7018195fd4787c2fe4b7af1eec11f1d19bdec62 \
|
|
197
|
+
--hash=sha256:360ffd231a780abbc414ba0f005dad409e71c78637efe8f2bd75837132a41d38 \
|
|
198
|
+
--hash=sha256:4468de0c30012d367944f0eab4ecb8371736e8ef9522a465f61214f344c11183 \
|
|
199
|
+
--hash=sha256:6599cab8a783d1496ae9984c52cb13b7c4a3bd06a8e6c33446832a5d97ce0bee \
|
|
200
|
+
--hash=sha256:66e3d2fd8f2035a8f111eb127fa508469dfa40928a89b460b41fd988684dc83d \
|
|
201
|
+
--hash=sha256:76f566baaf7f3e06adbe67ffedccd2ee911d1e486f55931939ce3f0fe1090774 \
|
|
202
|
+
--hash=sha256:783a519e6dfb1f3cd773a9bda592f4887a65040cb0c7bd38dde410f4e53c40d4 \
|
|
203
|
+
--hash=sha256:7b62c0f015120ede25e5124a5f9d8a424e1208e3d96a36c89958f046ee21fff6 \
|
|
204
|
+
--hash=sha256:806d6800246244004625d5222d7765874ab2d22f3ba5f615416cf1342d61c488 \
|
|
205
|
+
--hash=sha256:85016a73ab84dea1c1f1dcd88ec692993bcbe4532d1b49ecb5f3c688ae50c606 \
|
|
206
|
+
--hash=sha256:8e19a725f5d486f20e53a1dde2ab8bb2c9607c40c00a42ab646def962b41125f \
|
|
207
|
+
--hash=sha256:91e35db2672a0abaf325f4868fcac9c1674a0d9ad9bb8a8c849c03a5ebba3e6d \
|
|
208
|
+
--hash=sha256:b605f17e89ba0ecee994391194285fada89cee111cfcd29d6f2ee11cbdc40976 \
|
|
209
|
+
--hash=sha256:b7dd275cf2c99e53adb9654f5ae015f70415bbe2bacbe24cfee30d54b6aa03c5 \
|
|
210
|
+
--hash=sha256:bccb1540a49cde77edc7ce7d9d075c1dbeb2414751bc0048c7a11e1b597a4c2e \
|
|
211
|
+
--hash=sha256:c047177ab2d286451f242b855b650d313198c4a987140d4b35218b2855a64a4a \
|
|
212
|
+
--hash=sha256:c30639998a9f9cd9699b4b621942c0179a6527f083c72351f95c6ab1728d5b73 \
|
|
213
|
+
--hash=sha256:c5dcfa21de1f735a4f7ced4556339a109aa0f618d366ede9da0a3600f2516d8b \
|
|
214
|
+
--hash=sha256:d40c016c1f538dbf1762936e3aeb43a89b965069d9f60f9e39d35d9d25e6b809 \
|
|
215
|
+
--hash=sha256:e24b1652a1df1ab04d81e7ead446a91c226de704ff5dde6bd0a0dbaab07aa3f2 \
|
|
216
|
+
--hash=sha256:e9c68d9a382ec754dc05ed1d1b4ed5bd824b9f7c1a8cd1083adb84b3c93501de \
|
|
217
|
+
--hash=sha256:eea7e5987445ab0b5ed258093722d5ecb8bb72217c5c9b1e21f64efe23ddebdb \
|
|
218
|
+
--hash=sha256:fce6da15d73be5935b4438435c53adb512326a3e11e4f90793ea87cd9f018254
|
|
219
219
|
# via ipykernel
|
|
220
220
|
decorator==5.2.1 \
|
|
221
221
|
--hash=sha256:65f266143752f734b0a7cc83c46f4618af75b8c5911b00ccb61d0ac9b6da0360 \
|
|
@@ -225,9 +225,9 @@ dill==0.4.0 \
|
|
|
225
225
|
--hash=sha256:0633f1d2df477324f53a895b02c901fb961bdbf65a17122586ea7019292cbcf0 \
|
|
226
226
|
--hash=sha256:44f54bf6412c2c8464c14e8243eb163690a9800dbe2c367330883b19c7561049
|
|
227
227
|
# via pylint
|
|
228
|
-
exceptiongroup==1.3.
|
|
229
|
-
--hash=sha256:
|
|
230
|
-
--hash=sha256:
|
|
228
|
+
exceptiongroup==1.3.1 ; python_full_version < '3.11' \
|
|
229
|
+
--hash=sha256:8b412432c6055b0b7d14c310000ae93352ed6754f70fa8f7c34141f91c4e3219 \
|
|
230
|
+
--hash=sha256:a7a39a3bd276781e98394987d3a5701d0c4edffb633bb7a5144577f82c773598
|
|
231
231
|
# via
|
|
232
232
|
# anyio
|
|
233
233
|
# ipython
|
|
@@ -254,9 +254,9 @@ idna==3.11 \
|
|
|
254
254
|
# via
|
|
255
255
|
# anyio
|
|
256
256
|
# httpx
|
|
257
|
-
importlib-metadata==8.7.
|
|
258
|
-
--hash=sha256:
|
|
259
|
-
--hash=sha256:
|
|
257
|
+
importlib-metadata==8.7.1 ; python_full_version < '3.10' \
|
|
258
|
+
--hash=sha256:49fef1ae6440c182052f407c8d34a68f72efc36db9ca90dc0113398f2fdde8bb \
|
|
259
|
+
--hash=sha256:5a1f80bf1daa489495071efbb095d75a634cf28a8bc299581244063b53176151
|
|
260
260
|
# via
|
|
261
261
|
# isort
|
|
262
262
|
# jupyter-client
|
|
@@ -278,13 +278,13 @@ ipython==8.18.1 ; python_full_version < '3.10' \
|
|
|
278
278
|
--hash=sha256:ca6f079bb33457c66e233e4580ebfc4128855b4cf6370dddd73842a9563e8a27 \
|
|
279
279
|
--hash=sha256:e8267419d72d81955ec1177f8a29aaa90ac80ad647499201119e2f05e99aa397
|
|
280
280
|
# via ipykernel
|
|
281
|
-
ipython==8.
|
|
282
|
-
--hash=sha256:
|
|
283
|
-
--hash=sha256:
|
|
281
|
+
ipython==8.38.0 ; python_full_version == '3.10.*' \
|
|
282
|
+
--hash=sha256:750162629d800ac65bb3b543a14e7a74b0e88063eac9b92124d4b2aa3f6d8e86 \
|
|
283
|
+
--hash=sha256:9cfea8c903ce0867cc2f23199ed8545eb741f3a69420bfcf3743ad1cec856d39
|
|
284
284
|
# via ipykernel
|
|
285
|
-
ipython==9.
|
|
286
|
-
--hash=sha256:
|
|
287
|
-
--hash=sha256:
|
|
285
|
+
ipython==9.9.0 ; python_full_version >= '3.11' \
|
|
286
|
+
--hash=sha256:48fbed1b2de5e2c7177eefa144aba7fcb82dac514f09b57e2ac9da34ddb54220 \
|
|
287
|
+
--hash=sha256:b457fe9165df2b84e8ec909a97abcf2ed88f565970efba16b1f7229c283d252b
|
|
288
288
|
# via ipykernel
|
|
289
289
|
ipython-pygments-lexers==1.1.1 ; python_full_version >= '3.11' \
|
|
290
290
|
--hash=sha256:09c0138009e56b6854f9535736f4171d855c8c08a563a0dcd8022f78355c7e81 \
|
|
@@ -302,10 +302,14 @@ jedi==0.19.2 \
|
|
|
302
302
|
--hash=sha256:4770dc3de41bde3966b02eb84fbcf557fb33cce26ad23da12c742fb50ecb11f0 \
|
|
303
303
|
--hash=sha256:a8ef22bde8490f57fe5c7681a3c83cb58874daf72b4784de3cce5b6ef6edb5b9
|
|
304
304
|
# via ipython
|
|
305
|
-
jupyter-client==8.6.3 \
|
|
305
|
+
jupyter-client==8.6.3 ; python_full_version < '3.10' \
|
|
306
306
|
--hash=sha256:35b3a0947c4a6e9d589eb97d7d4cd5e90f910ee73101611f01283732bd6d9419 \
|
|
307
307
|
--hash=sha256:e8a19cc986cc45905ac3362915f410f3af85424b4c0905e94fa5f2cb08e8f23f
|
|
308
308
|
# via ipykernel
|
|
309
|
+
jupyter-client==8.7.0 ; python_full_version >= '3.10' \
|
|
310
|
+
--hash=sha256:3357212d9cbe01209e59190f67a3a7e1f387a4f4e88d1e0433ad84d7b262531d \
|
|
311
|
+
--hash=sha256:3671a94fd25e62f5f2f554f5e95389c2294d89822378a5f2dd24353e1494a9e0
|
|
312
|
+
# via ipykernel
|
|
309
313
|
jupyter-core==5.8.1 ; python_full_version < '3.10' \
|
|
310
314
|
--hash=sha256:0a5f9706f70e64786b75acba995988915ebd4601c8a52e534a40b51c95f59941 \
|
|
311
315
|
--hash=sha256:c28d268fc90fb53f1338ded2eb410704c5449a358406e8a948b75706e24863d0
|
|
@@ -352,9 +356,9 @@ platformdirs==4.4.0 ; python_full_version < '3.10' \
|
|
|
352
356
|
# via
|
|
353
357
|
# jupyter-core
|
|
354
358
|
# pylint
|
|
355
|
-
platformdirs==4.5.
|
|
356
|
-
--hash=sha256:
|
|
357
|
-
--hash=sha256:
|
|
359
|
+
platformdirs==4.5.1 ; python_full_version >= '3.10' \
|
|
360
|
+
--hash=sha256:61d5cdcc6065745cdd94f0f878977f8de9437be93de97c1c12f853c9c0cdcbda \
|
|
361
|
+
--hash=sha256:d03afa3963c806a9bed9d5125c8f4cb2fdaf74a55ab60e5d59b3fde758104d31
|
|
358
362
|
# via
|
|
359
363
|
# jupyter-core
|
|
360
364
|
# pylint
|
|
@@ -366,26 +370,28 @@ prompt-toolkit==3.0.52 \
|
|
|
366
370
|
--hash=sha256:28cde192929c8e7321de85de1ddbe736f1375148b02f2e17edd840042b1be855 \
|
|
367
371
|
--hash=sha256:9aac639a3bbd33284347de5ad8d68ecc044b91a762dc39b7c21095fcd6a19955
|
|
368
372
|
# via ipython
|
|
369
|
-
psutil==7.1
|
|
370
|
-
--hash=sha256:
|
|
371
|
-
--hash=sha256:
|
|
372
|
-
--hash=sha256:
|
|
373
|
-
--hash=sha256:
|
|
374
|
-
--hash=sha256:
|
|
375
|
-
--hash=sha256:
|
|
376
|
-
--hash=sha256:
|
|
377
|
-
--hash=sha256:
|
|
378
|
-
--hash=sha256:
|
|
379
|
-
--hash=sha256:
|
|
380
|
-
--hash=sha256:
|
|
381
|
-
--hash=sha256:
|
|
382
|
-
--hash=sha256:
|
|
383
|
-
--hash=sha256:
|
|
384
|
-
--hash=sha256:
|
|
385
|
-
--hash=sha256:
|
|
386
|
-
--hash=sha256:
|
|
387
|
-
--hash=sha256:
|
|
388
|
-
--hash=sha256:
|
|
373
|
+
psutil==7.2.1 \
|
|
374
|
+
--hash=sha256:05cc68dbb8c174828624062e73078e7e35406f4ca2d0866c272c2410d8ef06d1 \
|
|
375
|
+
--hash=sha256:08a2f175e48a898c8eb8eace45ce01777f4785bc744c90aa2cc7f2fa5462a266 \
|
|
376
|
+
--hash=sha256:0d67c1822c355aa6f7314d92018fb4268a76668a536f133599b91edd48759442 \
|
|
377
|
+
--hash=sha256:2ceae842a78d1603753561132d5ad1b2f8a7979cb0c283f5b52fb4e6e14b1a79 \
|
|
378
|
+
--hash=sha256:35630d5af80d5d0d49cfc4d64c1c13838baf6717a13effb35869a5919b854cdf \
|
|
379
|
+
--hash=sha256:3fce5f92c22b00cdefd1645aa58ab4877a01679e901555067b1bd77039aa589f \
|
|
380
|
+
--hash=sha256:494c513ccc53225ae23eec7fe6e1482f1b8a44674241b54561f755a898650679 \
|
|
381
|
+
--hash=sha256:5e38404ca2bb30ed7267a46c02f06ff842e92da3bb8c5bfdadbd35a5722314d8 \
|
|
382
|
+
--hash=sha256:81442dac7abfc2f4f4385ea9e12ddf5a796721c0f6133260687fec5c3780fa49 \
|
|
383
|
+
--hash=sha256:923f8653416604e356073e6e0bccbe7c09990acef442def2f5640dd0faa9689f \
|
|
384
|
+
--hash=sha256:93f3f7b0bb07711b49626e7940d6fe52aa9940ad86e8f7e74842e73189712129 \
|
|
385
|
+
--hash=sha256:99a4cd17a5fdd1f3d014396502daa70b5ec21bf4ffe38393e152f8e449757d67 \
|
|
386
|
+
--hash=sha256:ab2b98c9fc19f13f59628d94df5cc4cc4844bc572467d113a8b517d634e362c6 \
|
|
387
|
+
--hash=sha256:b1b0671619343aa71c20ff9767eced0483e4fc9e1f489d50923738caf6a03c17 \
|
|
388
|
+
--hash=sha256:b2e953fcfaedcfbc952b44744f22d16575d3aa78eb4f51ae74165b4e96e55f42 \
|
|
389
|
+
--hash=sha256:ba9f33bb525b14c3ea563b2fd521a84d2fa214ec59e3e6a2858f78d0844dd60d \
|
|
390
|
+
--hash=sha256:cfbe6b40ca48019a51827f20d830887b3107a74a79b01ceb8cc8de4ccb17b672 \
|
|
391
|
+
--hash=sha256:d34d2ca888208eea2b5c68186841336a7f5e0b990edec929be909353a202768a \
|
|
392
|
+
--hash=sha256:ea46c0d060491051d39f0d2cff4f98d5c72b288289f57a21556cc7d504db37fc \
|
|
393
|
+
--hash=sha256:f7583aec590485b43ca601dd9cea0dcd65bd7bb21d30ef4ddbf4ea6b5ed1bdd3 \
|
|
394
|
+
--hash=sha256:f78baafb38436d5a128f837fab2d92c276dfb48af01a240b861ae02b2413ada8
|
|
389
395
|
# via ipykernel
|
|
390
396
|
ptyprocess==0.7.0 ; (python_full_version < '3.10' and sys_platform == 'emscripten') or (sys_platform != 'emscripten' and sys_platform != 'win32') \
|
|
391
397
|
--hash=sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35 \
|
|
@@ -492,13 +498,17 @@ pygments==2.19.2 \
|
|
|
492
498
|
pylint==3.3.9 ; python_full_version < '3.10' \
|
|
493
499
|
--hash=sha256:01f9b0462c7730f94786c283f3e52a1fbdf0494bbe0971a78d7277ef46a751e7 \
|
|
494
500
|
--hash=sha256:d312737d7b25ccf6b01cc4ac629b5dcd14a0fcf3ec392735ac70f137a9d5f83a
|
|
495
|
-
pylint==4.0.
|
|
496
|
-
--hash=sha256:
|
|
497
|
-
--hash=sha256:
|
|
498
|
-
pytest==8.4.2 \
|
|
501
|
+
pylint==4.0.4 ; python_full_version >= '3.10' \
|
|
502
|
+
--hash=sha256:63e06a37d5922555ee2c20963eb42559918c20bd2b21244e4ef426e7c43b92e0 \
|
|
503
|
+
--hash=sha256:d9b71674e19b1c36d79265b5887bf8e55278cbe236c9e95d22dc82cf044fdbd2
|
|
504
|
+
pytest==8.4.2 ; python_full_version < '3.10' \
|
|
499
505
|
--hash=sha256:86c0d0b93306b961d58d62a4db4879f27fe25513d4b969df351abdddb3c30e01 \
|
|
500
506
|
--hash=sha256:872f880de3fc3a5bdc88a11b39c9710c3497a547cfa9320bc3c5e62fbf272e79
|
|
501
507
|
# via pytest-dotenv
|
|
508
|
+
pytest==9.0.2 ; python_full_version >= '3.10' \
|
|
509
|
+
--hash=sha256:711ffd45bf766d5264d487b917733b453d917afd2b0ad65223959f59089f875b \
|
|
510
|
+
--hash=sha256:75186651a92bd89611d1d9fc20f0b4345fd827c41ccd5c299a868a05d70edf11
|
|
511
|
+
# via pytest-dotenv
|
|
502
512
|
pytest-dotenv==0.5.2 \
|
|
503
513
|
--hash=sha256:2dc6c3ac6d8764c71c6d2804e902d0ff810fa19692e95fe138aefc9b1aa73732 \
|
|
504
514
|
--hash=sha256:40a2cece120a213898afaa5407673f6bd924b1fa7eafce6bda0e8abffe2f710f
|
|
@@ -616,10 +626,6 @@ six==1.17.0 \
|
|
|
616
626
|
--hash=sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274 \
|
|
617
627
|
--hash=sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81
|
|
618
628
|
# via python-dateutil
|
|
619
|
-
sniffio==1.3.1 \
|
|
620
|
-
--hash=sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2 \
|
|
621
|
-
--hash=sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc
|
|
622
|
-
# via anyio
|
|
623
629
|
stack-data==0.6.3 \
|
|
624
630
|
--hash=sha256:836a778de4fec4dcd1dcd89ed8abff8a221f58308462e1c4aa2a3cf30148f0b9 \
|
|
625
631
|
--hash=sha256:d5558e0c25a4cb0853cddad3d77da9891a08cb85dd9f9f91b9f8cd66e511e695
|
|
@@ -674,19 +680,19 @@ tomlkit==0.13.3 \
|
|
|
674
680
|
--hash=sha256:430cf247ee57df2b94ee3fbe588e71d362a941ebb545dec29b53961d61add2a1 \
|
|
675
681
|
--hash=sha256:c89c649d79ee40629a9fda55f8ace8c6a1b42deb912b2a8fd8d942ddadb606b0
|
|
676
682
|
# via pylint
|
|
677
|
-
tornado==6.5.
|
|
678
|
-
--hash=sha256:
|
|
679
|
-
--hash=sha256:
|
|
680
|
-
--hash=sha256:
|
|
681
|
-
--hash=sha256:
|
|
682
|
-
--hash=sha256:
|
|
683
|
-
--hash=sha256:
|
|
684
|
-
--hash=sha256:
|
|
685
|
-
--hash=sha256:
|
|
686
|
-
--hash=sha256:
|
|
687
|
-
--hash=sha256:
|
|
688
|
-
--hash=sha256:
|
|
689
|
-
--hash=sha256:
|
|
683
|
+
tornado==6.5.4 \
|
|
684
|
+
--hash=sha256:053e6e16701eb6cbe641f308f4c1a9541f91b6261991160391bfc342e8a551a1 \
|
|
685
|
+
--hash=sha256:1768110f2411d5cd281bac0a090f707223ce77fd110424361092859e089b38d1 \
|
|
686
|
+
--hash=sha256:2d50f63dda1d2cac3ae1fa23d254e16b5e38153758470e9956cbc3d813d40843 \
|
|
687
|
+
--hash=sha256:50ff0a58b0dc97939d29da29cd624da010e7f804746621c78d14b80238669335 \
|
|
688
|
+
--hash=sha256:6076d5dda368c9328ff41ab5d9dd3608e695e8225d1cd0fd1e006f05da3635a8 \
|
|
689
|
+
--hash=sha256:6eb82872335a53dd063a4f10917b3efd28270b56a33db69009606a0312660a6f \
|
|
690
|
+
--hash=sha256:9c86b1643b33a4cd415f8d0fe53045f913bf07b4a3ef646b735a6a86047dda84 \
|
|
691
|
+
--hash=sha256:a22fa9047405d03260b483980635f0b041989d8bcc9a313f8fe18b411d84b1d7 \
|
|
692
|
+
--hash=sha256:d1cf66105dc6acb5af613c054955b8137e34a03698aa53272dbda4afe252be17 \
|
|
693
|
+
--hash=sha256:d6241c1a16b1c9e4cc28148b1cda97dd1c6cb4fb7068ac1bedc610768dff0ba9 \
|
|
694
|
+
--hash=sha256:e5fb5e04efa54cf0baabdd10061eb4148e0be137166146fff835745f59ab9f7f \
|
|
695
|
+
--hash=sha256:fa07d31e0cd85c60713f2b995da613588aa03e1303d75705dca6af8babc18ddc
|
|
690
696
|
# via
|
|
691
697
|
# ipykernel
|
|
692
698
|
# jupyter-client
|