dts-dance 0.1.6__tar.gz → 0.1.9__tar.gz
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.
- {dts_dance-0.1.6 → dts_dance-0.1.9}/PKG-INFO +5 -3
- dts_dance-0.1.9/config.example.yaml +5 -0
- {dts_dance-0.1.6 → dts_dance-0.1.9}/dtsdance/bytecloud.py +4 -0
- {dts_dance-0.1.6 → dts_dance-0.1.9}/dtsdance/dflow.py +64 -2
- {dts_dance-0.1.6 → dts_dance-0.1.9}/dtsdance/s3.py +1 -2
- dts_dance-0.1.9/dtsdance/tcc.py +234 -0
- {dts_dance-0.1.6 → dts_dance-0.1.9}/pyproject.toml +5 -3
- {dts_dance-0.1.6 → dts_dance-0.1.9}/uv.lock +123 -3
- {dts_dance-0.1.6 → dts_dance-0.1.9}/.gitignore +0 -0
- {dts_dance-0.1.6 → dts_dance-0.1.9}/.python-version +0 -0
- {dts_dance-0.1.6 → dts_dance-0.1.9}/CLAUDE.md +0 -0
- {dts_dance-0.1.6 → dts_dance-0.1.9}/DEV.md +0 -0
- {dts_dance-0.1.6 → dts_dance-0.1.9}/README.md +0 -0
- {dts_dance-0.1.6 → dts_dance-0.1.9}/dtsdance/__init__.py +0 -0
- {dts_dance-0.1.6 → dts_dance-0.1.9}/dtsdance/dsyncer.py +0 -0
- {dts_dance-0.1.6 → dts_dance-0.1.9}/dtsdance/feishu_base.py +0 -0
- {dts_dance-0.1.6 → dts_dance-0.1.9}/dtsdance/feishu_table.py +0 -0
- {dts_dance-0.1.6 → dts_dance-0.1.9}/dtsdance/metrics_fe.py +0 -0
- {dts_dance-0.1.6 → dts_dance-0.1.9}/dtsdance/spacex.py +0 -0
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dts-dance
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.9
|
|
4
4
|
Summary: dts dance lib
|
|
5
5
|
Keywords: observation,tools
|
|
6
6
|
Requires-Python: >=3.12
|
|
7
|
-
Requires-Dist:
|
|
8
|
-
Requires-Dist:
|
|
7
|
+
Requires-Dist: boto3<2.0.0,>=1.42.27
|
|
8
|
+
Requires-Dist: loguru<0.8.0,>=0.7.3
|
|
9
|
+
Requires-Dist: pyyaml<7.0.0,>=6.0.3
|
|
10
|
+
Requires-Dist: requests<3.0.0,>=2.32.5
|
|
9
11
|
Description-Content-Type: text/markdown
|
|
10
12
|
|
|
11
13
|
# dts-dance
|
|
@@ -99,7 +99,11 @@ class ByteCloudHelper:
|
|
|
99
99
|
try:
|
|
100
100
|
# 发送 GET 请求
|
|
101
101
|
response = requests.get(url, headers=headers, timeout=60)
|
|
102
|
+
|
|
103
|
+
# 调试用途,输出返回内容,保存内容到本地文件
|
|
102
104
|
# logger.debug(f"获取JWT令牌响应: response.text={response.text}")
|
|
105
|
+
# with open("jwt_response.html", "w", encoding="utf-8") as f:
|
|
106
|
+
# f.write(response.text)
|
|
103
107
|
|
|
104
108
|
# 检查响应状态码
|
|
105
109
|
if response.status_code != 200:
|
|
@@ -3,6 +3,7 @@ from loguru import logger
|
|
|
3
3
|
from .bytecloud import ByteCloudHelper
|
|
4
4
|
import requests
|
|
5
5
|
|
|
6
|
+
|
|
6
7
|
class DFlowHelper:
|
|
7
8
|
|
|
8
9
|
def __init__(self, bytecloud_helper: ByteCloudHelper) -> None:
|
|
@@ -69,7 +70,8 @@ class DFlowHelper:
|
|
|
69
70
|
dict[str, Any]: DFlow 任务信息,包含 create_time 等字段
|
|
70
71
|
"""
|
|
71
72
|
# 构建 API URL
|
|
72
|
-
|
|
73
|
+
env_info = self.bytecloud_helper.get_env_info(env)
|
|
74
|
+
url = f"{env_info.endpoint}/api/v1/bytedts/api/bytedts/v3/DescribeTaskInfo"
|
|
73
75
|
|
|
74
76
|
# 准备请求头
|
|
75
77
|
headers = self._build_headers(env)
|
|
@@ -88,6 +90,7 @@ class DFlowHelper:
|
|
|
88
90
|
filtered_data = {
|
|
89
91
|
"task_id": task.get("id", ""),
|
|
90
92
|
"status": task.get("status", ""),
|
|
93
|
+
"desc": task.get("desc", ""),
|
|
91
94
|
"create_time": task.get("create_time", 0),
|
|
92
95
|
}
|
|
93
96
|
|
|
@@ -108,4 +111,63 @@ class DFlowHelper:
|
|
|
108
111
|
str: DFlow 任务详情页面的 URL
|
|
109
112
|
"""
|
|
110
113
|
# 根据环境生成对应的 scope 参数
|
|
111
|
-
|
|
114
|
+
env_info = self.bytecloud_helper.get_env_info(env)
|
|
115
|
+
return f"{env_info.endpoint}/bytedts/datasync/detail/{task_id}?scope={env}"
|
|
116
|
+
|
|
117
|
+
def init_resources(self, env: str, ctrl_env: str) -> bool:
|
|
118
|
+
"""
|
|
119
|
+
初始化 CTRL 环境资源
|
|
120
|
+
|
|
121
|
+
Args:
|
|
122
|
+
env: 环境名称
|
|
123
|
+
ctrl_env: 控制环境
|
|
124
|
+
|
|
125
|
+
Returns:
|
|
126
|
+
bool: CTRL 环境资源初始化结果
|
|
127
|
+
"""
|
|
128
|
+
# 构建 API URL
|
|
129
|
+
env_info = self.bytecloud_helper.get_env_info(env)
|
|
130
|
+
url = f"{env_info.endpoint}/api/v1/bytedts/api/bytedts/v3/InitSystemResource"
|
|
131
|
+
|
|
132
|
+
# 准备请求头
|
|
133
|
+
headers = self._build_headers(env)
|
|
134
|
+
|
|
135
|
+
# 构建请求数据
|
|
136
|
+
json_data = {"ctrl_env": ctrl_env}
|
|
137
|
+
|
|
138
|
+
response_data = self._make_request("POST", url, headers, json_data)
|
|
139
|
+
|
|
140
|
+
message = response_data.get("message")
|
|
141
|
+
logger.info(f"int_resources {env} {ctrl_env}, message: {message}")
|
|
142
|
+
|
|
143
|
+
return message == "ok"
|
|
144
|
+
|
|
145
|
+
def list_resources(self, env: str, ctrl_env: str) -> list[str]:
|
|
146
|
+
"""
|
|
147
|
+
列举 CTRL 环境资源列表
|
|
148
|
+
|
|
149
|
+
Args:
|
|
150
|
+
env: 环境名称
|
|
151
|
+
ctrl_env: 控制环境
|
|
152
|
+
|
|
153
|
+
Returns:
|
|
154
|
+
list[str]: CTRL 环境资源列表
|
|
155
|
+
"""
|
|
156
|
+
# 构建 API URL
|
|
157
|
+
env_info = self.bytecloud_helper.get_env_info(env)
|
|
158
|
+
url = f"{env_info.endpoint}/api/v1/bytedts/api/bytedts/v3/DescribeResources"
|
|
159
|
+
|
|
160
|
+
# 准备请求头
|
|
161
|
+
headers = self._build_headers(env)
|
|
162
|
+
|
|
163
|
+
# 构建请求数据
|
|
164
|
+
json_data = {"offset": 0, "limit": 10, "ctrl_env": ctrl_env}
|
|
165
|
+
|
|
166
|
+
response_data = self._make_request("POST", url, headers, json_data)
|
|
167
|
+
|
|
168
|
+
try:
|
|
169
|
+
data = cast(dict, response_data.get("data", {}))
|
|
170
|
+
items = cast(list, data.get("items", []))
|
|
171
|
+
return [item["name"] for item in items]
|
|
172
|
+
except (KeyError, AttributeError, Exception) as e:
|
|
173
|
+
raise Exception(f"无法从响应中提取 CTRL 环境资源列表数据: {str(e)}")
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import os
|
|
2
2
|
from typing import Optional
|
|
3
3
|
import boto3
|
|
4
|
-
from botocore.exceptions import ClientError
|
|
5
4
|
from loguru import logger
|
|
6
5
|
|
|
7
6
|
|
|
@@ -35,6 +34,6 @@ class S3Client:
|
|
|
35
34
|
file_url = f"{self.base_url}/{s3_file_name}"
|
|
36
35
|
logger.info(f"文件已成功上传到 S3: {file_url}")
|
|
37
36
|
return file_url
|
|
38
|
-
except
|
|
37
|
+
except Exception as e:
|
|
39
38
|
logger.error(f"上传文件到 S3 时出错: {e}")
|
|
40
39
|
return None
|
|
@@ -0,0 +1,234 @@
|
|
|
1
|
+
"""TCE (Toutiao Cloud Engine) API client."""
|
|
2
|
+
|
|
3
|
+
from dataclasses import dataclass
|
|
4
|
+
from typing import Any
|
|
5
|
+
import requests
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
@dataclass
|
|
9
|
+
class TCCConfigItem:
|
|
10
|
+
"""Single TCC configuration item."""
|
|
11
|
+
|
|
12
|
+
conf_name: str
|
|
13
|
+
value: str
|
|
14
|
+
description: str
|
|
15
|
+
data_type: str
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class TCCError(Exception):
|
|
19
|
+
"""TCC API error."""
|
|
20
|
+
|
|
21
|
+
pass
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
class TCCClient:
|
|
25
|
+
"""Client for TCC OpenAPI."""
|
|
26
|
+
|
|
27
|
+
def __init__(self, svc_account: str, svc_secret: str, base_url: str):
|
|
28
|
+
self.svc_account = svc_account
|
|
29
|
+
self.base_url = base_url
|
|
30
|
+
self.headers = {
|
|
31
|
+
"Authorization": f"Bearer {svc_secret}",
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
def publish_config(
|
|
35
|
+
self,
|
|
36
|
+
ns_name: str,
|
|
37
|
+
region: str,
|
|
38
|
+
conf_name: str,
|
|
39
|
+
value: str,
|
|
40
|
+
dir: str,
|
|
41
|
+
description: str,
|
|
42
|
+
data_type: str,
|
|
43
|
+
) -> dict[str, Any]:
|
|
44
|
+
"""
|
|
45
|
+
Create or update TCC configuration.
|
|
46
|
+
|
|
47
|
+
Returns:
|
|
48
|
+
Response data containing config_id and deployment_id
|
|
49
|
+
|
|
50
|
+
Raises:
|
|
51
|
+
TCCError: If API call fails
|
|
52
|
+
"""
|
|
53
|
+
url = f"{self.base_url}/api/v1/tcc_v3_openapi/bcc/open/config/update"
|
|
54
|
+
|
|
55
|
+
payload = {
|
|
56
|
+
"ns_name": ns_name,
|
|
57
|
+
"dir": dir,
|
|
58
|
+
"conf_name": conf_name,
|
|
59
|
+
"value": str(value),
|
|
60
|
+
"data_type": data_type,
|
|
61
|
+
"region": region,
|
|
62
|
+
"description": description,
|
|
63
|
+
"operator": self.svc_account,
|
|
64
|
+
"update_strategy": "modify_and_deploy",
|
|
65
|
+
"auto_create": "auto_create_dir_config", # 自动创建还未存在的目录和配置
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
try:
|
|
69
|
+
# print(f"writing tcc config, payload: {payload}")
|
|
70
|
+
response = requests.post(url, headers=self.headers, json=payload, timeout=30)
|
|
71
|
+
if response.status_code != 200:
|
|
72
|
+
raise TCCError(f"TCC API request failed with status {response.status_code}\n" f"Response: {response.text}")
|
|
73
|
+
|
|
74
|
+
result = response.json()
|
|
75
|
+
|
|
76
|
+
# Check for errors in response
|
|
77
|
+
base_resp = result.get("base_resp", {})
|
|
78
|
+
if base_resp.get("error_code", 0) != 0:
|
|
79
|
+
raise TCCError(f"TCC API error: {base_resp.get('error_message', 'Unknown error')}")
|
|
80
|
+
|
|
81
|
+
return result.get("data", {})
|
|
82
|
+
|
|
83
|
+
except requests.RequestException as e:
|
|
84
|
+
raise TCCError(f"Failed to create TCC config: {str(e)}") from e
|
|
85
|
+
|
|
86
|
+
def _list(
|
|
87
|
+
self,
|
|
88
|
+
ns_name: str,
|
|
89
|
+
region: str,
|
|
90
|
+
dir: str,
|
|
91
|
+
page: int = 1,
|
|
92
|
+
page_size: int = 100,
|
|
93
|
+
with_value: bool = True,
|
|
94
|
+
) -> dict[str, Any]:
|
|
95
|
+
"""
|
|
96
|
+
List TCC configurations.
|
|
97
|
+
|
|
98
|
+
Args:
|
|
99
|
+
ns_name: Namespace name
|
|
100
|
+
region: Region (default: "China-BOE")
|
|
101
|
+
dir: Directory path (default: "/default")
|
|
102
|
+
page: Page number (default: 1)
|
|
103
|
+
page_size: Page size (default: 100)
|
|
104
|
+
|
|
105
|
+
Returns:
|
|
106
|
+
Configuration data
|
|
107
|
+
|
|
108
|
+
Raises:
|
|
109
|
+
TCCError: If API call fails
|
|
110
|
+
"""
|
|
111
|
+
url = f"{self.base_url}/api/v1/tcc_v3_openapi/bcc/open/config/list"
|
|
112
|
+
|
|
113
|
+
params = {
|
|
114
|
+
"ns_name": ns_name,
|
|
115
|
+
"dir": dir,
|
|
116
|
+
"region": region,
|
|
117
|
+
"with_value": with_value,
|
|
118
|
+
"page": page,
|
|
119
|
+
"page_size": page_size,
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
try:
|
|
123
|
+
response = requests.post(url, headers=self.headers, params=params, timeout=30)
|
|
124
|
+
response.raise_for_status()
|
|
125
|
+
result = response.json()
|
|
126
|
+
|
|
127
|
+
# Check for errors in response
|
|
128
|
+
base_resp = result.get("base_resp", {})
|
|
129
|
+
if base_resp.get("error_code", 0) != 0:
|
|
130
|
+
raise TCCError(f"TCC API error: {base_resp.get('error_message', 'Unknown error')}")
|
|
131
|
+
|
|
132
|
+
return result
|
|
133
|
+
|
|
134
|
+
except requests.RequestException as e:
|
|
135
|
+
raise TCCError(f"Failed to get TCC config: {str(e)}") from e
|
|
136
|
+
|
|
137
|
+
def list_all(
|
|
138
|
+
self,
|
|
139
|
+
ns_name: str,
|
|
140
|
+
region: str,
|
|
141
|
+
dir: str,
|
|
142
|
+
with_value: bool = True,
|
|
143
|
+
) -> list[dict[str, Any]]:
|
|
144
|
+
"""
|
|
145
|
+
List all TCC configurations across all pages.
|
|
146
|
+
|
|
147
|
+
Args:
|
|
148
|
+
ns_name: Namespace name
|
|
149
|
+
region: Region (default: "China-BOE")
|
|
150
|
+
dir: Directory path (default: "/default")
|
|
151
|
+
|
|
152
|
+
Returns:
|
|
153
|
+
List of all configuration items
|
|
154
|
+
|
|
155
|
+
Raises:
|
|
156
|
+
TCCError: If API call fails
|
|
157
|
+
"""
|
|
158
|
+
all_items = []
|
|
159
|
+
page = 1
|
|
160
|
+
page_size = 100
|
|
161
|
+
|
|
162
|
+
while True:
|
|
163
|
+
result = self._list(region=region, ns_name=ns_name, dir=dir, page=page, page_size=page_size, with_value=with_value)
|
|
164
|
+
|
|
165
|
+
# Extract items from current page
|
|
166
|
+
data = result.get("data", {})
|
|
167
|
+
items = data.get("items", [])
|
|
168
|
+
all_items.extend(items)
|
|
169
|
+
|
|
170
|
+
# Check if there are more pages
|
|
171
|
+
page_info = result.get("page_info", {})
|
|
172
|
+
total_page = page_info.get("total_page", 1)
|
|
173
|
+
|
|
174
|
+
if page >= total_page:
|
|
175
|
+
break
|
|
176
|
+
|
|
177
|
+
page += 1
|
|
178
|
+
|
|
179
|
+
return all_items
|
|
180
|
+
|
|
181
|
+
def list_all_names(
|
|
182
|
+
self,
|
|
183
|
+
ns_name: str,
|
|
184
|
+
region: str,
|
|
185
|
+
dir: str,
|
|
186
|
+
) -> list[str]:
|
|
187
|
+
items = self.list_all(ns_name, region, dir, False)
|
|
188
|
+
return [item.get("conf_name", "") for item in items]
|
|
189
|
+
|
|
190
|
+
def get_config(
|
|
191
|
+
self,
|
|
192
|
+
ns_name: str,
|
|
193
|
+
region: str,
|
|
194
|
+
conf_name: str,
|
|
195
|
+
dir: str,
|
|
196
|
+
) -> dict[str, Any]:
|
|
197
|
+
"""
|
|
198
|
+
Get TCC configuration.
|
|
199
|
+
|
|
200
|
+
Args:
|
|
201
|
+
ns_name: Namespace name
|
|
202
|
+
region: Region (default: "China-BOE")
|
|
203
|
+
conf_name: Configuration name
|
|
204
|
+
dir: Directory path (default: "/default")
|
|
205
|
+
|
|
206
|
+
Returns:
|
|
207
|
+
Configuration data
|
|
208
|
+
|
|
209
|
+
Raises:
|
|
210
|
+
TCCError: If API call fails
|
|
211
|
+
"""
|
|
212
|
+
url = f"{self.base_url}/api/v1/tcc_v3_openapi/bcc/open/config/get"
|
|
213
|
+
|
|
214
|
+
params = {
|
|
215
|
+
"ns_name": ns_name,
|
|
216
|
+
"dir": dir,
|
|
217
|
+
"region": region,
|
|
218
|
+
"conf_name": conf_name,
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
try:
|
|
222
|
+
response = requests.get(url, headers=self.headers, params=params, timeout=30)
|
|
223
|
+
response.raise_for_status()
|
|
224
|
+
result = response.json()
|
|
225
|
+
|
|
226
|
+
# Check for errors in response
|
|
227
|
+
base_resp = result.get("base_resp", {})
|
|
228
|
+
if base_resp.get("error_code", 0) != 0:
|
|
229
|
+
raise TCCError(f"TCC API error: {base_resp.get('error_message', 'Unknown error')}")
|
|
230
|
+
|
|
231
|
+
return result.get("data", {})
|
|
232
|
+
|
|
233
|
+
except requests.RequestException as e:
|
|
234
|
+
raise TCCError(f"Failed to get TCC config: {str(e)}") from e
|
|
@@ -4,14 +4,16 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "dts-dance"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.9"
|
|
8
8
|
description = "dts dance lib"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
keywords = ["tools", "observation"]
|
|
11
11
|
requires-python = ">=3.12"
|
|
12
12
|
dependencies = [
|
|
13
|
-
"requests
|
|
14
|
-
"loguru
|
|
13
|
+
"requests>=2.32.5,<3.0.0",
|
|
14
|
+
"loguru>=0.7.3,<0.8.0",
|
|
15
|
+
"boto3>=1.42.27,<2.0.0",
|
|
16
|
+
"pyyaml>=6.0.3,<7.0.0",
|
|
15
17
|
]
|
|
16
18
|
|
|
17
19
|
[tool.hatch.build.targets.wheel]
|
|
@@ -2,6 +2,34 @@ version = 1
|
|
|
2
2
|
revision = 3
|
|
3
3
|
requires-python = ">=3.12"
|
|
4
4
|
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "boto3"
|
|
7
|
+
version = "1.42.27"
|
|
8
|
+
source = { registry = "https://pypi.org/simple" }
|
|
9
|
+
dependencies = [
|
|
10
|
+
{ name = "botocore" },
|
|
11
|
+
{ name = "jmespath" },
|
|
12
|
+
{ name = "s3transfer" },
|
|
13
|
+
]
|
|
14
|
+
sdist = { url = "https://files.pythonhosted.org/packages/8d/99/65569052c911160702ad371b0b08b751bb1df29deeef0c5c117528074c29/boto3-1.42.27.tar.gz", hash = "sha256:a8a53abb98ff1a24d9a88d9d8c0285bf02d23189666130456e8951ede2f7db98", size = 112765, upload-time = "2026-01-13T20:35:11.971Z" }
|
|
15
|
+
wheels = [
|
|
16
|
+
{ url = "https://files.pythonhosted.org/packages/44/9e/9554a8c1d7610ec8ea55bec0dac87ad894c83cada2ea2c05fc45f14d0cde/boto3-1.42.27-py3-none-any.whl", hash = "sha256:39dfec51aff3f9356e8c7331195f324cb498ec75b2601a902fc62aa127b8fd00", size = 140577, upload-time = "2026-01-13T20:35:09.35Z" },
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
[[package]]
|
|
20
|
+
name = "botocore"
|
|
21
|
+
version = "1.42.27"
|
|
22
|
+
source = { registry = "https://pypi.org/simple" }
|
|
23
|
+
dependencies = [
|
|
24
|
+
{ name = "jmespath" },
|
|
25
|
+
{ name = "python-dateutil" },
|
|
26
|
+
{ name = "urllib3" },
|
|
27
|
+
]
|
|
28
|
+
sdist = { url = "https://files.pythonhosted.org/packages/65/90/55b003d38f947c90c0d7e306d377dcdfd9cd0dc1e184082b2d1a6adb0eec/botocore-1.42.27.tar.gz", hash = "sha256:c8e1e3ffb6c871622b1c8054f064d60cbc786aa5ca1f97f5f9fd5fa0a9d82d05", size = 14880030, upload-time = "2026-01-13T20:35:00.31Z" }
|
|
29
|
+
wheels = [
|
|
30
|
+
{ url = "https://files.pythonhosted.org/packages/bf/32/8a4a0447432425cd2f772c757d988742685f46796cf5d68aeaf6bcb6bc37/botocore-1.42.27-py3-none-any.whl", hash = "sha256:d51fb3b8dd1a944c8d238d2827a0dd6e5528d6da49a3bd9eccad019c533e4c9c", size = 14555236, upload-time = "2026-01-13T20:34:55.918Z" },
|
|
31
|
+
]
|
|
32
|
+
|
|
5
33
|
[[package]]
|
|
6
34
|
name = "certifi"
|
|
7
35
|
version = "2025.11.12"
|
|
@@ -79,17 +107,21 @@ wheels = [
|
|
|
79
107
|
|
|
80
108
|
[[package]]
|
|
81
109
|
name = "dts-dance"
|
|
82
|
-
version = "0.1.
|
|
110
|
+
version = "0.1.9"
|
|
83
111
|
source = { editable = "." }
|
|
84
112
|
dependencies = [
|
|
113
|
+
{ name = "boto3" },
|
|
85
114
|
{ name = "loguru" },
|
|
115
|
+
{ name = "pyyaml" },
|
|
86
116
|
{ name = "requests" },
|
|
87
117
|
]
|
|
88
118
|
|
|
89
119
|
[package.metadata]
|
|
90
120
|
requires-dist = [
|
|
91
|
-
{ name = "
|
|
92
|
-
{ name = "
|
|
121
|
+
{ name = "boto3", specifier = ">=1.42.27,<2.0.0" },
|
|
122
|
+
{ name = "loguru", specifier = ">=0.7.3,<0.8.0" },
|
|
123
|
+
{ name = "pyyaml", specifier = ">=6.0.3,<7.0.0" },
|
|
124
|
+
{ name = "requests", specifier = ">=2.32.5,<3.0.0" },
|
|
93
125
|
]
|
|
94
126
|
|
|
95
127
|
[[package]]
|
|
@@ -101,6 +133,15 @@ wheels = [
|
|
|
101
133
|
{ url = "https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl", hash = "sha256:771a87f49d9defaf64091e6e6fe9c18d4833f140bd19464795bc32d966ca37ea", size = 71008, upload-time = "2025-10-12T14:55:18.883Z" },
|
|
102
134
|
]
|
|
103
135
|
|
|
136
|
+
[[package]]
|
|
137
|
+
name = "jmespath"
|
|
138
|
+
version = "1.0.1"
|
|
139
|
+
source = { registry = "https://pypi.org/simple" }
|
|
140
|
+
sdist = { url = "https://files.pythonhosted.org/packages/00/2a/e867e8531cf3e36b41201936b7fa7ba7b5702dbef42922193f05c8976cd6/jmespath-1.0.1.tar.gz", hash = "sha256:90261b206d6defd58fdd5e85f478bf633a2901798906be2ad389150c5c60edbe", size = 25843, upload-time = "2022-06-17T18:00:12.224Z" }
|
|
141
|
+
wheels = [
|
|
142
|
+
{ url = "https://files.pythonhosted.org/packages/31/b4/b9b800c45527aadd64d5b442f9b932b00648617eb5d63d2c7a6587b7cafc/jmespath-1.0.1-py3-none-any.whl", hash = "sha256:02e2e4cc71b5bcab88332eebf907519190dd9e6e82107fa7f83b1003a6252980", size = 20256, upload-time = "2022-06-17T18:00:10.251Z" },
|
|
143
|
+
]
|
|
144
|
+
|
|
104
145
|
[[package]]
|
|
105
146
|
name = "loguru"
|
|
106
147
|
version = "0.7.3"
|
|
@@ -114,6 +155,64 @@ wheels = [
|
|
|
114
155
|
{ url = "https://files.pythonhosted.org/packages/0c/29/0348de65b8cc732daa3e33e67806420b2ae89bdce2b04af740289c5c6c8c/loguru-0.7.3-py3-none-any.whl", hash = "sha256:31a33c10c8e1e10422bfd431aeb5d351c7cf7fa671e3c4df004162264b28220c", size = 61595, upload-time = "2024-12-06T11:20:54.538Z" },
|
|
115
156
|
]
|
|
116
157
|
|
|
158
|
+
[[package]]
|
|
159
|
+
name = "python-dateutil"
|
|
160
|
+
version = "2.9.0.post0"
|
|
161
|
+
source = { registry = "https://pypi.org/simple" }
|
|
162
|
+
dependencies = [
|
|
163
|
+
{ name = "six" },
|
|
164
|
+
]
|
|
165
|
+
sdist = { url = "https://files.pythonhosted.org/packages/66/c0/0c8b6ad9f17a802ee498c46e004a0eb49bc148f2fd230864601a86dcf6db/python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", size = 342432, upload-time = "2024-03-01T18:36:20.211Z" }
|
|
166
|
+
wheels = [
|
|
167
|
+
{ url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892, upload-time = "2024-03-01T18:36:18.57Z" },
|
|
168
|
+
]
|
|
169
|
+
|
|
170
|
+
[[package]]
|
|
171
|
+
name = "pyyaml"
|
|
172
|
+
version = "6.0.3"
|
|
173
|
+
source = { registry = "https://pypi.org/simple" }
|
|
174
|
+
sdist = { url = "https://files.pythonhosted.org/packages/05/8e/961c0007c59b8dd7729d542c61a4d537767a59645b82a0b521206e1e25c2/pyyaml-6.0.3.tar.gz", hash = "sha256:d76623373421df22fb4cf8817020cbb7ef15c725b9d5e45f17e189bfc384190f", size = 130960, upload-time = "2025-09-25T21:33:16.546Z" }
|
|
175
|
+
wheels = [
|
|
176
|
+
{ url = "https://files.pythonhosted.org/packages/d1/33/422b98d2195232ca1826284a76852ad5a86fe23e31b009c9886b2d0fb8b2/pyyaml-6.0.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7f047e29dcae44602496db43be01ad42fc6f1cc0d8cd6c83d342306c32270196", size = 182063, upload-time = "2025-09-25T21:32:11.445Z" },
|
|
177
|
+
{ url = "https://files.pythonhosted.org/packages/89/a0/6cf41a19a1f2f3feab0e9c0b74134aa2ce6849093d5517a0c550fe37a648/pyyaml-6.0.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:fc09d0aa354569bc501d4e787133afc08552722d3ab34836a80547331bb5d4a0", size = 173973, upload-time = "2025-09-25T21:32:12.492Z" },
|
|
178
|
+
{ url = "https://files.pythonhosted.org/packages/ed/23/7a778b6bd0b9a8039df8b1b1d80e2e2ad78aa04171592c8a5c43a56a6af4/pyyaml-6.0.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9149cad251584d5fb4981be1ecde53a1ca46c891a79788c0df828d2f166bda28", size = 775116, upload-time = "2025-09-25T21:32:13.652Z" },
|
|
179
|
+
{ url = "https://files.pythonhosted.org/packages/65/30/d7353c338e12baef4ecc1b09e877c1970bd3382789c159b4f89d6a70dc09/pyyaml-6.0.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5fdec68f91a0c6739b380c83b951e2c72ac0197ace422360e6d5a959d8d97b2c", size = 844011, upload-time = "2025-09-25T21:32:15.21Z" },
|
|
180
|
+
{ url = "https://files.pythonhosted.org/packages/8b/9d/b3589d3877982d4f2329302ef98a8026e7f4443c765c46cfecc8858c6b4b/pyyaml-6.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ba1cc08a7ccde2d2ec775841541641e4548226580ab850948cbfda66a1befcdc", size = 807870, upload-time = "2025-09-25T21:32:16.431Z" },
|
|
181
|
+
{ url = "https://files.pythonhosted.org/packages/05/c0/b3be26a015601b822b97d9149ff8cb5ead58c66f981e04fedf4e762f4bd4/pyyaml-6.0.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8dc52c23056b9ddd46818a57b78404882310fb473d63f17b07d5c40421e47f8e", size = 761089, upload-time = "2025-09-25T21:32:17.56Z" },
|
|
182
|
+
{ url = "https://files.pythonhosted.org/packages/be/8e/98435a21d1d4b46590d5459a22d88128103f8da4c2d4cb8f14f2a96504e1/pyyaml-6.0.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:41715c910c881bc081f1e8872880d3c650acf13dfa8214bad49ed4cede7c34ea", size = 790181, upload-time = "2025-09-25T21:32:18.834Z" },
|
|
183
|
+
{ url = "https://files.pythonhosted.org/packages/74/93/7baea19427dcfbe1e5a372d81473250b379f04b1bd3c4c5ff825e2327202/pyyaml-6.0.3-cp312-cp312-win32.whl", hash = "sha256:96b533f0e99f6579b3d4d4995707cf36df9100d67e0c8303a0c55b27b5f99bc5", size = 137658, upload-time = "2025-09-25T21:32:20.209Z" },
|
|
184
|
+
{ url = "https://files.pythonhosted.org/packages/86/bf/899e81e4cce32febab4fb42bb97dcdf66bc135272882d1987881a4b519e9/pyyaml-6.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:5fcd34e47f6e0b794d17de1b4ff496c00986e1c83f7ab2fb8fcfe9616ff7477b", size = 154003, upload-time = "2025-09-25T21:32:21.167Z" },
|
|
185
|
+
{ url = "https://files.pythonhosted.org/packages/1a/08/67bd04656199bbb51dbed1439b7f27601dfb576fb864099c7ef0c3e55531/pyyaml-6.0.3-cp312-cp312-win_arm64.whl", hash = "sha256:64386e5e707d03a7e172c0701abfb7e10f0fb753ee1d773128192742712a98fd", size = 140344, upload-time = "2025-09-25T21:32:22.617Z" },
|
|
186
|
+
{ url = "https://files.pythonhosted.org/packages/d1/11/0fd08f8192109f7169db964b5707a2f1e8b745d4e239b784a5a1dd80d1db/pyyaml-6.0.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:8da9669d359f02c0b91ccc01cac4a67f16afec0dac22c2ad09f46bee0697eba8", size = 181669, upload-time = "2025-09-25T21:32:23.673Z" },
|
|
187
|
+
{ url = "https://files.pythonhosted.org/packages/b1/16/95309993f1d3748cd644e02e38b75d50cbc0d9561d21f390a76242ce073f/pyyaml-6.0.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:2283a07e2c21a2aa78d9c4442724ec1eb15f5e42a723b99cb3d822d48f5f7ad1", size = 173252, upload-time = "2025-09-25T21:32:25.149Z" },
|
|
188
|
+
{ url = "https://files.pythonhosted.org/packages/50/31/b20f376d3f810b9b2371e72ef5adb33879b25edb7a6d072cb7ca0c486398/pyyaml-6.0.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ee2922902c45ae8ccada2c5b501ab86c36525b883eff4255313a253a3160861c", size = 767081, upload-time = "2025-09-25T21:32:26.575Z" },
|
|
189
|
+
{ url = "https://files.pythonhosted.org/packages/49/1e/a55ca81e949270d5d4432fbbd19dfea5321eda7c41a849d443dc92fd1ff7/pyyaml-6.0.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a33284e20b78bd4a18c8c2282d549d10bc8408a2a7ff57653c0cf0b9be0afce5", size = 841159, upload-time = "2025-09-25T21:32:27.727Z" },
|
|
190
|
+
{ url = "https://files.pythonhosted.org/packages/74/27/e5b8f34d02d9995b80abcef563ea1f8b56d20134d8f4e5e81733b1feceb2/pyyaml-6.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0f29edc409a6392443abf94b9cf89ce99889a1dd5376d94316ae5145dfedd5d6", size = 801626, upload-time = "2025-09-25T21:32:28.878Z" },
|
|
191
|
+
{ url = "https://files.pythonhosted.org/packages/f9/11/ba845c23988798f40e52ba45f34849aa8a1f2d4af4b798588010792ebad6/pyyaml-6.0.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f7057c9a337546edc7973c0d3ba84ddcdf0daa14533c2065749c9075001090e6", size = 753613, upload-time = "2025-09-25T21:32:30.178Z" },
|
|
192
|
+
{ url = "https://files.pythonhosted.org/packages/3d/e0/7966e1a7bfc0a45bf0a7fb6b98ea03fc9b8d84fa7f2229e9659680b69ee3/pyyaml-6.0.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:eda16858a3cab07b80edaf74336ece1f986ba330fdb8ee0d6c0d68fe82bc96be", size = 794115, upload-time = "2025-09-25T21:32:31.353Z" },
|
|
193
|
+
{ url = "https://files.pythonhosted.org/packages/de/94/980b50a6531b3019e45ddeada0626d45fa85cbe22300844a7983285bed3b/pyyaml-6.0.3-cp313-cp313-win32.whl", hash = "sha256:d0eae10f8159e8fdad514efdc92d74fd8d682c933a6dd088030f3834bc8e6b26", size = 137427, upload-time = "2025-09-25T21:32:32.58Z" },
|
|
194
|
+
{ url = "https://files.pythonhosted.org/packages/97/c9/39d5b874e8b28845e4ec2202b5da735d0199dbe5b8fb85f91398814a9a46/pyyaml-6.0.3-cp313-cp313-win_amd64.whl", hash = "sha256:79005a0d97d5ddabfeeea4cf676af11e647e41d81c9a7722a193022accdb6b7c", size = 154090, upload-time = "2025-09-25T21:32:33.659Z" },
|
|
195
|
+
{ url = "https://files.pythonhosted.org/packages/73/e8/2bdf3ca2090f68bb3d75b44da7bbc71843b19c9f2b9cb9b0f4ab7a5a4329/pyyaml-6.0.3-cp313-cp313-win_arm64.whl", hash = "sha256:5498cd1645aa724a7c71c8f378eb29ebe23da2fc0d7a08071d89469bf1d2defb", size = 140246, upload-time = "2025-09-25T21:32:34.663Z" },
|
|
196
|
+
{ url = "https://files.pythonhosted.org/packages/9d/8c/f4bd7f6465179953d3ac9bc44ac1a8a3e6122cf8ada906b4f96c60172d43/pyyaml-6.0.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:8d1fab6bb153a416f9aeb4b8763bc0f22a5586065f86f7664fc23339fc1c1fac", size = 181814, upload-time = "2025-09-25T21:32:35.712Z" },
|
|
197
|
+
{ url = "https://files.pythonhosted.org/packages/bd/9c/4d95bb87eb2063d20db7b60faa3840c1b18025517ae857371c4dd55a6b3a/pyyaml-6.0.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:34d5fcd24b8445fadc33f9cf348c1047101756fd760b4dacb5c3e99755703310", size = 173809, upload-time = "2025-09-25T21:32:36.789Z" },
|
|
198
|
+
{ url = "https://files.pythonhosted.org/packages/92/b5/47e807c2623074914e29dabd16cbbdd4bf5e9b2db9f8090fa64411fc5382/pyyaml-6.0.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:501a031947e3a9025ed4405a168e6ef5ae3126c59f90ce0cd6f2bfc477be31b7", size = 766454, upload-time = "2025-09-25T21:32:37.966Z" },
|
|
199
|
+
{ url = "https://files.pythonhosted.org/packages/02/9e/e5e9b168be58564121efb3de6859c452fccde0ab093d8438905899a3a483/pyyaml-6.0.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:b3bc83488de33889877a0f2543ade9f70c67d66d9ebb4ac959502e12de895788", size = 836355, upload-time = "2025-09-25T21:32:39.178Z" },
|
|
200
|
+
{ url = "https://files.pythonhosted.org/packages/88/f9/16491d7ed2a919954993e48aa941b200f38040928474c9e85ea9e64222c3/pyyaml-6.0.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c458b6d084f9b935061bc36216e8a69a7e293a2f1e68bf956dcd9e6cbcd143f5", size = 794175, upload-time = "2025-09-25T21:32:40.865Z" },
|
|
201
|
+
{ url = "https://files.pythonhosted.org/packages/dd/3f/5989debef34dc6397317802b527dbbafb2b4760878a53d4166579111411e/pyyaml-6.0.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:7c6610def4f163542a622a73fb39f534f8c101d690126992300bf3207eab9764", size = 755228, upload-time = "2025-09-25T21:32:42.084Z" },
|
|
202
|
+
{ url = "https://files.pythonhosted.org/packages/d7/ce/af88a49043cd2e265be63d083fc75b27b6ed062f5f9fd6cdc223ad62f03e/pyyaml-6.0.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:5190d403f121660ce8d1d2c1bb2ef1bd05b5f68533fc5c2ea899bd15f4399b35", size = 789194, upload-time = "2025-09-25T21:32:43.362Z" },
|
|
203
|
+
{ url = "https://files.pythonhosted.org/packages/23/20/bb6982b26a40bb43951265ba29d4c246ef0ff59c9fdcdf0ed04e0687de4d/pyyaml-6.0.3-cp314-cp314-win_amd64.whl", hash = "sha256:4a2e8cebe2ff6ab7d1050ecd59c25d4c8bd7e6f400f5f82b96557ac0abafd0ac", size = 156429, upload-time = "2025-09-25T21:32:57.844Z" },
|
|
204
|
+
{ url = "https://files.pythonhosted.org/packages/f4/f4/a4541072bb9422c8a883ab55255f918fa378ecf083f5b85e87fc2b4eda1b/pyyaml-6.0.3-cp314-cp314-win_arm64.whl", hash = "sha256:93dda82c9c22deb0a405ea4dc5f2d0cda384168e466364dec6255b293923b2f3", size = 143912, upload-time = "2025-09-25T21:32:59.247Z" },
|
|
205
|
+
{ url = "https://files.pythonhosted.org/packages/7c/f9/07dd09ae774e4616edf6cda684ee78f97777bdd15847253637a6f052a62f/pyyaml-6.0.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:02893d100e99e03eda1c8fd5c441d8c60103fd175728e23e431db1b589cf5ab3", size = 189108, upload-time = "2025-09-25T21:32:44.377Z" },
|
|
206
|
+
{ url = "https://files.pythonhosted.org/packages/4e/78/8d08c9fb7ce09ad8c38ad533c1191cf27f7ae1effe5bb9400a46d9437fcf/pyyaml-6.0.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:c1ff362665ae507275af2853520967820d9124984e0f7466736aea23d8611fba", size = 183641, upload-time = "2025-09-25T21:32:45.407Z" },
|
|
207
|
+
{ url = "https://files.pythonhosted.org/packages/7b/5b/3babb19104a46945cf816d047db2788bcaf8c94527a805610b0289a01c6b/pyyaml-6.0.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6adc77889b628398debc7b65c073bcb99c4a0237b248cacaf3fe8a557563ef6c", size = 831901, upload-time = "2025-09-25T21:32:48.83Z" },
|
|
208
|
+
{ url = "https://files.pythonhosted.org/packages/8b/cc/dff0684d8dc44da4d22a13f35f073d558c268780ce3c6ba1b87055bb0b87/pyyaml-6.0.3-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a80cb027f6b349846a3bf6d73b5e95e782175e52f22108cfa17876aaeff93702", size = 861132, upload-time = "2025-09-25T21:32:50.149Z" },
|
|
209
|
+
{ url = "https://files.pythonhosted.org/packages/b1/5e/f77dc6b9036943e285ba76b49e118d9ea929885becb0a29ba8a7c75e29fe/pyyaml-6.0.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:00c4bdeba853cc34e7dd471f16b4114f4162dc03e6b7afcc2128711f0eca823c", size = 839261, upload-time = "2025-09-25T21:32:51.808Z" },
|
|
210
|
+
{ url = "https://files.pythonhosted.org/packages/ce/88/a9db1376aa2a228197c58b37302f284b5617f56a5d959fd1763fb1675ce6/pyyaml-6.0.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:66e1674c3ef6f541c35191caae2d429b967b99e02040f5ba928632d9a7f0f065", size = 805272, upload-time = "2025-09-25T21:32:52.941Z" },
|
|
211
|
+
{ url = "https://files.pythonhosted.org/packages/da/92/1446574745d74df0c92e6aa4a7b0b3130706a4142b2d1a5869f2eaa423c6/pyyaml-6.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:16249ee61e95f858e83976573de0f5b2893b3677ba71c9dd36b9cf8be9ac6d65", size = 829923, upload-time = "2025-09-25T21:32:54.537Z" },
|
|
212
|
+
{ url = "https://files.pythonhosted.org/packages/f0/7a/1c7270340330e575b92f397352af856a8c06f230aa3e76f86b39d01b416a/pyyaml-6.0.3-cp314-cp314t-win_amd64.whl", hash = "sha256:4ad1906908f2f5ae4e5a8ddfce73c320c2a1429ec52eafd27138b7f1cbe341c9", size = 174062, upload-time = "2025-09-25T21:32:55.767Z" },
|
|
213
|
+
{ url = "https://files.pythonhosted.org/packages/f1/12/de94a39c2ef588c7e6455cfbe7343d3b2dc9d6b6b2f40c4c6565744c873d/pyyaml-6.0.3-cp314-cp314t-win_arm64.whl", hash = "sha256:ebc55a14a21cb14062aa4162f906cd962b28e2e9ea38f9b4391244cd8de4ae0b", size = 149341, upload-time = "2025-09-25T21:32:56.828Z" },
|
|
214
|
+
]
|
|
215
|
+
|
|
117
216
|
[[package]]
|
|
118
217
|
name = "requests"
|
|
119
218
|
version = "2.32.5"
|
|
@@ -129,6 +228,27 @@ wheels = [
|
|
|
129
228
|
{ url = "https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl", hash = "sha256:2462f94637a34fd532264295e186976db0f5d453d1cdd31473c85a6a161affb6", size = 64738, upload-time = "2025-08-18T20:46:00.542Z" },
|
|
130
229
|
]
|
|
131
230
|
|
|
231
|
+
[[package]]
|
|
232
|
+
name = "s3transfer"
|
|
233
|
+
version = "0.16.0"
|
|
234
|
+
source = { registry = "https://pypi.org/simple" }
|
|
235
|
+
dependencies = [
|
|
236
|
+
{ name = "botocore" },
|
|
237
|
+
]
|
|
238
|
+
sdist = { url = "https://files.pythonhosted.org/packages/05/04/74127fc843314818edfa81b5540e26dd537353b123a4edc563109d8f17dd/s3transfer-0.16.0.tar.gz", hash = "sha256:8e990f13268025792229cd52fa10cb7163744bf56e719e0b9cb925ab79abf920", size = 153827, upload-time = "2025-12-01T02:30:59.114Z" }
|
|
239
|
+
wheels = [
|
|
240
|
+
{ url = "https://files.pythonhosted.org/packages/fc/51/727abb13f44c1fcf6d145979e1535a35794db0f6e450a0cb46aa24732fe2/s3transfer-0.16.0-py3-none-any.whl", hash = "sha256:18e25d66fed509e3868dc1572b3f427ff947dd2c56f844a5bf09481ad3f3b2fe", size = 86830, upload-time = "2025-12-01T02:30:57.729Z" },
|
|
241
|
+
]
|
|
242
|
+
|
|
243
|
+
[[package]]
|
|
244
|
+
name = "six"
|
|
245
|
+
version = "1.17.0"
|
|
246
|
+
source = { registry = "https://pypi.org/simple" }
|
|
247
|
+
sdist = { url = "https://files.pythonhosted.org/packages/94/e7/b2c673351809dca68a0e064b6af791aa332cf192da575fd474ed7d6f16a2/six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81", size = 34031, upload-time = "2024-12-04T17:35:28.174Z" }
|
|
248
|
+
wheels = [
|
|
249
|
+
{ url = "https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274", size = 11050, upload-time = "2024-12-04T17:35:26.475Z" },
|
|
250
|
+
]
|
|
251
|
+
|
|
132
252
|
[[package]]
|
|
133
253
|
name = "urllib3"
|
|
134
254
|
version = "2.6.2"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|