Bump infinity to v0.5.0-dev5 (#3520)
Browse files### What problem does this PR solve?
Bump infinity to v0.5.0-dev5
### Type of change
- [x] Refactoring
- Dockerfile +1 -1
- Dockerfile.slim +1 -1
- api/apps/system_app.py +3 -3
- api/utils/__init__.py +4 -3
- conf/service_conf.yaml +3 -0
- docker/.env +3 -0
- docker/docker-compose-base.yml +1 -1
- docker/service_conf.yaml.template +3 -0
- poetry.lock +338 -311
- pyproject.toml +1 -1
- rag/utils/infinity_conn.py +7 -4
- web/src/pages/user-setting/setting-system/index.tsx +2 -2
Dockerfile
CHANGED
@@ -145,7 +145,7 @@ COPY cl100k_base.tiktoken /ragflow/9b5ad71b2ce5302211f9c61530b329a4922fc6a4
|
|
145 |
# Add dependencies of selenium
|
146 |
RUN --mount=type=bind,source=chrome-linux64-121-0-6167-85,target=/chrome-linux64.zip \
|
147 |
unzip /chrome-linux64.zip && \
|
148 |
-
mv chrome-linux64 /opt/chrome
|
149 |
ln -s /opt/chrome/chrome /usr/local/bin/
|
150 |
RUN --mount=type=bind,source=chromedriver-linux64-121-0-6167-85,target=/chromedriver-linux64.zip \
|
151 |
unzip -j /chromedriver-linux64.zip chromedriver-linux64/chromedriver && \
|
|
|
145 |
# Add dependencies of selenium
|
146 |
RUN --mount=type=bind,source=chrome-linux64-121-0-6167-85,target=/chrome-linux64.zip \
|
147 |
unzip /chrome-linux64.zip && \
|
148 |
+
mv chrome-linux64 /opt/chrome && \
|
149 |
ln -s /opt/chrome/chrome /usr/local/bin/
|
150 |
RUN --mount=type=bind,source=chromedriver-linux64-121-0-6167-85,target=/chromedriver-linux64.zip \
|
151 |
unzip -j /chromedriver-linux64.zip chromedriver-linux64/chromedriver && \
|
Dockerfile.slim
CHANGED
@@ -138,7 +138,7 @@ COPY cl100k_base.tiktoken /ragflow/9b5ad71b2ce5302211f9c61530b329a4922fc6a4
|
|
138 |
# Add dependencies of selenium
|
139 |
RUN --mount=type=bind,source=chrome-linux64-121-0-6167-85,target=/chrome-linux64.zip \
|
140 |
unzip /chrome-linux64.zip && \
|
141 |
-
mv chrome-linux64 /opt/chrome
|
142 |
ln -s /opt/chrome/chrome /usr/local/bin/
|
143 |
RUN --mount=type=bind,source=chromedriver-linux64-121-0-6167-85,target=/chromedriver-linux64.zip \
|
144 |
unzip -j /chromedriver-linux64.zip chromedriver-linux64/chromedriver && \
|
|
|
138 |
# Add dependencies of selenium
|
139 |
RUN --mount=type=bind,source=chrome-linux64-121-0-6167-85,target=/chrome-linux64.zip \
|
140 |
unzip /chrome-linux64.zip && \
|
141 |
+
mv chrome-linux64 /opt/chrome && \
|
142 |
ln -s /opt/chrome/chrome /usr/local/bin/
|
143 |
RUN --mount=type=bind,source=chromedriver-linux64-121-0-6167-85,target=/chromedriver-linux64.zip \
|
144 |
unzip -j /chromedriver-linux64.zip chromedriver-linux64/chromedriver && \
|
api/apps/system_app.py
CHANGED
@@ -98,10 +98,10 @@ def status():
|
|
98 |
res = {}
|
99 |
st = timer()
|
100 |
try:
|
101 |
-
res["
|
102 |
-
res["
|
103 |
except Exception as e:
|
104 |
-
res["
|
105 |
"type": "unknown",
|
106 |
"status": "red",
|
107 |
"elapsed": "{:.1f}".format((timer() - st) * 1000.0),
|
|
|
98 |
res = {}
|
99 |
st = timer()
|
100 |
try:
|
101 |
+
res["doc_engine"] = settings.docStoreConn.health()
|
102 |
+
res["doc_engine"]["elapsed"] = "{:.1f}".format((timer() - st) * 1000.0)
|
103 |
except Exception as e:
|
104 |
+
res["doc_engine"] = {
|
105 |
"type": "unknown",
|
106 |
"status": "red",
|
107 |
"elapsed": "{:.1f}".format((timer() - st) * 1000.0),
|
api/utils/__init__.py
CHANGED
@@ -63,9 +63,10 @@ CONFIGS = read_config()
|
|
63 |
|
64 |
|
65 |
def show_configs():
|
66 |
-
|
67 |
for k, v in CONFIGS.items():
|
68 |
-
|
|
|
69 |
|
70 |
|
71 |
def get_base_config(key, default=None):
|
@@ -253,7 +254,7 @@ def get_lan_ip():
|
|
253 |
try:
|
254 |
ip = get_interface_ip(ifname)
|
255 |
break
|
256 |
-
except IOError
|
257 |
pass
|
258 |
return ip or ''
|
259 |
|
|
|
63 |
|
64 |
|
65 |
def show_configs():
|
66 |
+
msg = f"Current configs, from {conf_realpath(SERVICE_CONF)}:"
|
67 |
for k, v in CONFIGS.items():
|
68 |
+
msg += f"\n\t{k}: {v}"
|
69 |
+
logging.info(msg)
|
70 |
|
71 |
|
72 |
def get_base_config(key, default=None):
|
|
|
254 |
try:
|
255 |
ip = get_interface_ip(ifname)
|
256 |
break
|
257 |
+
except IOError:
|
258 |
pass
|
259 |
return ip or ''
|
260 |
|
conf/service_conf.yaml
CHANGED
@@ -17,6 +17,9 @@ es:
|
|
17 |
hosts: 'http://es01:1200'
|
18 |
username: 'elastic'
|
19 |
password: 'infini_rag_flow'
|
|
|
|
|
|
|
20 |
redis:
|
21 |
db: 1
|
22 |
password: 'infini_rag_flow'
|
|
|
17 |
hosts: 'http://es01:1200'
|
18 |
username: 'elastic'
|
19 |
password: 'infini_rag_flow'
|
20 |
+
infinity:
|
21 |
+
uri: 'http://infinity:23817'
|
22 |
+
db_name: 'default_db'
|
23 |
redis:
|
24 |
db: 1
|
25 |
password: 'infini_rag_flow'
|
docker/.env
CHANGED
@@ -35,6 +35,9 @@ KIBANA_PASSWORD=infini_rag_flow
|
|
35 |
# Update it according to the available memory in the host machine.
|
36 |
MEM_LIMIT=8073741824
|
37 |
|
|
|
|
|
|
|
38 |
# Port to expose Infinity API to the host
|
39 |
INFINITY_THRIFT_PORT=23817
|
40 |
INFINITY_HTTP_PORT=23820
|
|
|
35 |
# Update it according to the available memory in the host machine.
|
36 |
MEM_LIMIT=8073741824
|
37 |
|
38 |
+
# The hostname where the Infinity service is exposed
|
39 |
+
INFINITY_HOST=infinity
|
40 |
+
|
41 |
# Port to expose Infinity API to the host
|
42 |
INFINITY_THRIFT_PORT=23817
|
43 |
INFINITY_HTTP_PORT=23820
|
docker/docker-compose-base.yml
CHANGED
@@ -36,7 +36,7 @@ services:
|
|
36 |
container_name: ragflow-infinity
|
37 |
profiles:
|
38 |
- infinity
|
39 |
-
image: infiniflow/infinity:v0.5.0-
|
40 |
volumes:
|
41 |
- infinity_data:/var/infinity
|
42 |
ports:
|
|
|
36 |
container_name: ragflow-infinity
|
37 |
profiles:
|
38 |
- infinity
|
39 |
+
image: infiniflow/infinity:v0.5.0-dev5
|
40 |
volumes:
|
41 |
- infinity_data:/var/infinity
|
42 |
ports:
|
docker/service_conf.yaml.template
CHANGED
@@ -17,6 +17,9 @@ es:
|
|
17 |
hosts: 'http://${ES_HOST:-es01}:9200'
|
18 |
username: '${ES_USER:-elastic}'
|
19 |
password: '${ELASTIC_PASSWORD:-infini_rag_flow}'
|
|
|
|
|
|
|
20 |
redis:
|
21 |
db: 1
|
22 |
password: '${REDIS_PASSWORD:-infini_rag_flow}'
|
|
|
17 |
hosts: 'http://${ES_HOST:-es01}:9200'
|
18 |
username: '${ES_USER:-elastic}'
|
19 |
password: '${ELASTIC_PASSWORD:-infini_rag_flow}'
|
20 |
+
infinity:
|
21 |
+
uri: '${INFINITY_HOST:-infinity}:23817'
|
22 |
+
db_name: 'default_db'
|
23 |
redis:
|
24 |
db: 1
|
25 |
password: '${REDIS_PASSWORD:-infini_rag_flow}'
|
poetry.lock
CHANGED
@@ -44,87 +44,87 @@ files = [
|
|
44 |
|
45 |
[[package]]
|
46 |
name = "aiohttp"
|
47 |
-
version = "3.11.
|
48 |
description = "Async http client/server framework (asyncio)"
|
49 |
optional = false
|
50 |
python-versions = ">=3.9"
|
51 |
files = [
|
52 |
-
{file = "aiohttp-3.11.
|
53 |
-
{file = "aiohttp-3.11.
|
54 |
-
{file = "aiohttp-3.11.
|
55 |
-
{file = "aiohttp-3.11.
|
56 |
-
{file = "aiohttp-3.11.
|
57 |
-
{file = "aiohttp-3.11.
|
58 |
-
{file = "aiohttp-3.11.
|
59 |
-
{file = "aiohttp-3.11.
|
60 |
-
{file = "aiohttp-3.11.
|
61 |
-
{file = "aiohttp-3.11.
|
62 |
-
{file = "aiohttp-3.11.
|
63 |
-
{file = "aiohttp-3.11.
|
64 |
-
{file = "aiohttp-3.11.
|
65 |
-
{file = "aiohttp-3.11.
|
66 |
-
{file = "aiohttp-3.11.
|
67 |
-
{file = "aiohttp-3.11.
|
68 |
-
{file = "aiohttp-3.11.
|
69 |
-
{file = "aiohttp-3.11.
|
70 |
-
{file = "aiohttp-3.11.
|
71 |
-
{file = "aiohttp-3.11.
|
72 |
-
{file = "aiohttp-3.11.
|
73 |
-
{file = "aiohttp-3.11.
|
74 |
-
{file = "aiohttp-3.11.
|
75 |
-
{file = "aiohttp-3.11.
|
76 |
-
{file = "aiohttp-3.11.
|
77 |
-
{file = "aiohttp-3.11.
|
78 |
-
{file = "aiohttp-3.11.
|
79 |
-
{file = "aiohttp-3.11.
|
80 |
-
{file = "aiohttp-3.11.
|
81 |
-
{file = "aiohttp-3.11.
|
82 |
-
{file = "aiohttp-3.11.
|
83 |
-
{file = "aiohttp-3.11.
|
84 |
-
{file = "aiohttp-3.11.
|
85 |
-
{file = "aiohttp-3.11.
|
86 |
-
{file = "aiohttp-3.11.
|
87 |
-
{file = "aiohttp-3.11.
|
88 |
-
{file = "aiohttp-3.11.
|
89 |
-
{file = "aiohttp-3.11.
|
90 |
-
{file = "aiohttp-3.11.
|
91 |
-
{file = "aiohttp-3.11.
|
92 |
-
{file = "aiohttp-3.11.
|
93 |
-
{file = "aiohttp-3.11.
|
94 |
-
{file = "aiohttp-3.11.
|
95 |
-
{file = "aiohttp-3.11.
|
96 |
-
{file = "aiohttp-3.11.
|
97 |
-
{file = "aiohttp-3.11.
|
98 |
-
{file = "aiohttp-3.11.
|
99 |
-
{file = "aiohttp-3.11.
|
100 |
-
{file = "aiohttp-3.11.
|
101 |
-
{file = "aiohttp-3.11.
|
102 |
-
{file = "aiohttp-3.11.
|
103 |
-
{file = "aiohttp-3.11.
|
104 |
-
{file = "aiohttp-3.11.
|
105 |
-
{file = "aiohttp-3.11.
|
106 |
-
{file = "aiohttp-3.11.
|
107 |
-
{file = "aiohttp-3.11.
|
108 |
-
{file = "aiohttp-3.11.
|
109 |
-
{file = "aiohttp-3.11.
|
110 |
-
{file = "aiohttp-3.11.
|
111 |
-
{file = "aiohttp-3.11.
|
112 |
-
{file = "aiohttp-3.11.
|
113 |
-
{file = "aiohttp-3.11.
|
114 |
-
{file = "aiohttp-3.11.
|
115 |
-
{file = "aiohttp-3.11.
|
116 |
-
{file = "aiohttp-3.11.
|
117 |
-
{file = "aiohttp-3.11.
|
118 |
-
{file = "aiohttp-3.11.
|
119 |
-
{file = "aiohttp-3.11.
|
120 |
-
{file = "aiohttp-3.11.
|
121 |
-
{file = "aiohttp-3.11.
|
122 |
-
{file = "aiohttp-3.11.
|
123 |
-
{file = "aiohttp-3.11.
|
124 |
-
{file = "aiohttp-3.11.
|
125 |
-
{file = "aiohttp-3.11.
|
126 |
-
{file = "aiohttp-3.11.
|
127 |
-
{file = "aiohttp-3.11.
|
128 |
]
|
129 |
|
130 |
[package.dependencies]
|
@@ -196,13 +196,13 @@ files = [
|
|
196 |
|
197 |
[[package]]
|
198 |
name = "akshare"
|
199 |
-
version = "1.15.
|
200 |
description = "AKShare is an elegant and simple financial data interface library for Python, built for human beings!"
|
201 |
optional = false
|
202 |
python-versions = ">=3.8"
|
203 |
files = [
|
204 |
-
{file = "akshare-1.15.
|
205 |
-
{file = "akshare-1.15.
|
206 |
]
|
207 |
|
208 |
[package.dependencies]
|
@@ -2641,13 +2641,13 @@ grpcio-gcp = ["grpcio-gcp (>=0.2.2,<1.0.dev0)"]
|
|
2641 |
|
2642 |
[[package]]
|
2643 |
name = "google-api-python-client"
|
2644 |
-
version = "2.
|
2645 |
description = "Google API Client Library for Python"
|
2646 |
optional = false
|
2647 |
python-versions = ">=3.7"
|
2648 |
files = [
|
2649 |
-
{file = "google_api_python_client-2.
|
2650 |
-
{file = "google_api_python_client-2.
|
2651 |
]
|
2652 |
|
2653 |
[package.dependencies]
|
@@ -3675,12 +3675,12 @@ vision = ["colpali-engine (>=0.3.1,<0.4.0)", "pillow", "timm", "torchvision"]
|
|
3675 |
|
3676 |
[[package]]
|
3677 |
name = "infinity-sdk"
|
3678 |
-
version = "0.5.0.
|
3679 |
description = "infinity"
|
3680 |
optional = false
|
3681 |
python-versions = ">=3.10"
|
3682 |
files = [
|
3683 |
-
{file = "infinity_sdk-0.5.0.
|
3684 |
]
|
3685 |
|
3686 |
[package.dependencies]
|
@@ -3691,6 +3691,7 @@ polars = ">=1.9.0,<1.10.0"
|
|
3691 |
pyarrow = ">=17.0.0,<17.1.0"
|
3692 |
pydantic = ">=2.9.0,<2.10.0"
|
3693 |
pytest = ">=8.3.0,<8.4.0"
|
|
|
3694 |
requests = ">=2.32.0,<2.33.0"
|
3695 |
setuptools = ">=75.2.0,<75.3.0"
|
3696 |
sqlglot = ">=11.7.0,<11.8.0"
|
@@ -5249,14 +5250,14 @@ files = [
|
|
5249 |
|
5250 |
[[package]]
|
5251 |
name = "nvidia-nvjitlink-cu12"
|
5252 |
-
version = "12.6.
|
5253 |
description = "Nvidia JIT LTO Library"
|
5254 |
optional = false
|
5255 |
python-versions = ">=3"
|
5256 |
files = [
|
5257 |
-
{file = "nvidia_nvjitlink_cu12-12.6.
|
5258 |
-
{file = "nvidia_nvjitlink_cu12-12.6.
|
5259 |
-
{file = "nvidia_nvjitlink_cu12-12.6.
|
5260 |
]
|
5261 |
|
5262 |
[[package]]
|
@@ -5456,69 +5457,86 @@ et-xmlfile = "*"
|
|
5456 |
|
5457 |
[[package]]
|
5458 |
name = "orjson"
|
5459 |
-
version = "3.10.
|
5460 |
description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy"
|
5461 |
optional = false
|
5462 |
python-versions = ">=3.8"
|
5463 |
files = [
|
5464 |
-
{file = "orjson-3.10.
|
5465 |
-
{file = "orjson-3.10.
|
5466 |
-
{file = "orjson-3.10.
|
5467 |
-
{file = "orjson-3.10.
|
5468 |
-
{file = "orjson-3.10.
|
5469 |
-
{file = "orjson-3.10.
|
5470 |
-
{file = "orjson-3.10.
|
5471 |
-
{file = "orjson-3.10.
|
5472 |
-
{file = "orjson-3.10.
|
5473 |
-
{file = "orjson-3.10.
|
5474 |
-
{file = "orjson-3.10.
|
5475 |
-
{file = "orjson-3.10.
|
5476 |
-
{file = "orjson-3.10.
|
5477 |
-
{file = "orjson-3.10.
|
5478 |
-
{file = "orjson-3.10.
|
5479 |
-
{file = "orjson-3.10.
|
5480 |
-
{file = "orjson-3.10.
|
5481 |
-
{file = "orjson-3.10.
|
5482 |
-
{file = "orjson-3.10.
|
5483 |
-
{file = "orjson-3.10.
|
5484 |
-
{file = "orjson-3.10.
|
5485 |
-
{file = "orjson-3.10.
|
5486 |
-
{file = "orjson-3.10.
|
5487 |
-
{file = "orjson-3.10.
|
5488 |
-
{file = "orjson-3.10.
|
5489 |
-
{file = "orjson-3.10.
|
5490 |
-
{file = "orjson-3.10.
|
5491 |
-
{file = "orjson-3.10.
|
5492 |
-
{file = "orjson-3.10.
|
5493 |
-
{file = "orjson-3.10.
|
5494 |
-
{file = "orjson-3.10.
|
5495 |
-
{file = "orjson-3.10.
|
5496 |
-
{file = "orjson-3.10.
|
5497 |
-
{file = "orjson-3.10.
|
5498 |
-
{file = "orjson-3.10.
|
5499 |
-
{file = "orjson-3.10.
|
5500 |
-
{file = "orjson-3.10.
|
5501 |
-
{file = "orjson-3.10.
|
5502 |
-
{file = "orjson-3.10.
|
5503 |
-
{file = "orjson-3.10.
|
5504 |
-
{file = "orjson-3.10.
|
5505 |
-
{file = "orjson-3.10.
|
5506 |
-
{file = "orjson-3.10.
|
5507 |
-
{file = "orjson-3.10.
|
5508 |
-
{file = "orjson-3.10.
|
5509 |
-
{file = "orjson-3.10.
|
5510 |
-
{file = "orjson-3.10.
|
5511 |
-
{file = "orjson-3.10.
|
5512 |
-
{file = "orjson-3.10.
|
5513 |
-
{file = "orjson-3.10.
|
5514 |
-
{file = "orjson-3.10.
|
5515 |
-
{file = "orjson-3.10.
|
5516 |
-
{file = "orjson-3.10.
|
5517 |
-
{file = "orjson-3.10.
|
5518 |
-
{file = "orjson-3.10.
|
5519 |
-
{file = "orjson-3.10.
|
5520 |
-
{file = "orjson-3.10.
|
5521 |
-
{file = "orjson-3.10.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5522 |
]
|
5523 |
|
5524 |
[[package]]
|
@@ -7372,6 +7390,20 @@ lxml = "*"
|
|
7372 |
[package.extras]
|
7373 |
test = ["timeout-decorator"]
|
7374 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7375 |
[[package]]
|
7376 |
name = "referencing"
|
7377 |
version = "0.35.1"
|
@@ -7759,13 +7791,13 @@ files = [
|
|
7759 |
|
7760 |
[[package]]
|
7761 |
name = "s3transfer"
|
7762 |
-
version = "0.10.
|
7763 |
description = "An Amazon S3 Transfer Manager"
|
7764 |
optional = false
|
7765 |
python-versions = ">= 3.8"
|
7766 |
files = [
|
7767 |
-
{file = "s3transfer-0.10.
|
7768 |
-
{file = "s3transfer-0.10.
|
7769 |
]
|
7770 |
|
7771 |
[package.dependencies]
|
@@ -8897,20 +8929,20 @@ optree = ["optree (>=0.9.1)"]
|
|
8897 |
|
8898 |
[[package]]
|
8899 |
name = "tqdm"
|
8900 |
-
version = "4.67.
|
8901 |
description = "Fast, Extensible Progress Meter"
|
8902 |
optional = false
|
8903 |
python-versions = ">=3.7"
|
8904 |
files = [
|
8905 |
-
{file = "tqdm-4.67.
|
8906 |
-
{file = "tqdm-4.67.
|
8907 |
]
|
8908 |
|
8909 |
[package.dependencies]
|
8910 |
colorama = {version = "*", markers = "platform_system == \"Windows\""}
|
8911 |
|
8912 |
[package.extras]
|
8913 |
-
dev = ["pytest (>=6)", "pytest-
|
8914 |
discord = ["requests"]
|
8915 |
notebook = ["ipywidgets (>=6)"]
|
8916 |
slack = ["slack-sdk"]
|
@@ -9416,81 +9448,76 @@ files = [
|
|
9416 |
|
9417 |
[[package]]
|
9418 |
name = "wrapt"
|
9419 |
-
version = "1.
|
9420 |
description = "Module for decorators, wrappers and monkey patching."
|
9421 |
optional = false
|
9422 |
-
python-versions = ">=3.
|
9423 |
files = [
|
9424 |
-
{file = "wrapt-1.
|
9425 |
-
{file = "wrapt-1.
|
9426 |
-
{file = "wrapt-1.
|
9427 |
-
{file = "wrapt-1.
|
9428 |
-
{file = "wrapt-1.
|
9429 |
-
{file = "wrapt-1.
|
9430 |
-
{file = "wrapt-1.
|
9431 |
-
{file = "wrapt-1.
|
9432 |
-
{file = "wrapt-1.
|
9433 |
-
{file = "wrapt-1.
|
9434 |
-
{file = "wrapt-1.
|
9435 |
-
{file = "wrapt-1.
|
9436 |
-
{file = "wrapt-1.
|
9437 |
-
{file = "wrapt-1.
|
9438 |
-
{file = "wrapt-1.
|
9439 |
-
{file = "wrapt-1.
|
9440 |
-
{file = "wrapt-1.
|
9441 |
-
{file = "wrapt-1.
|
9442 |
-
{file = "wrapt-1.
|
9443 |
-
{file = "wrapt-1.
|
9444 |
-
{file = "wrapt-1.
|
9445 |
-
{file = "wrapt-1.
|
9446 |
-
{file = "wrapt-1.
|
9447 |
-
{file = "wrapt-1.
|
9448 |
-
{file = "wrapt-1.
|
9449 |
-
{file = "wrapt-1.
|
9450 |
-
{file = "wrapt-1.
|
9451 |
-
{file = "wrapt-1.
|
9452 |
-
{file = "wrapt-1.
|
9453 |
-
{file = "wrapt-1.
|
9454 |
-
{file = "wrapt-1.
|
9455 |
-
{file = "wrapt-1.
|
9456 |
-
{file = "wrapt-1.
|
9457 |
-
{file = "wrapt-1.
|
9458 |
-
{file = "wrapt-1.
|
9459 |
-
{file = "wrapt-1.
|
9460 |
-
{file = "wrapt-1.
|
9461 |
-
{file = "wrapt-1.
|
9462 |
-
{file = "wrapt-1.
|
9463 |
-
{file = "wrapt-1.
|
9464 |
-
{file = "wrapt-1.
|
9465 |
-
{file = "wrapt-1.
|
9466 |
-
{file = "wrapt-1.
|
9467 |
-
{file = "wrapt-1.
|
9468 |
-
{file = "wrapt-1.
|
9469 |
-
{file = "wrapt-1.
|
9470 |
-
{file = "wrapt-1.
|
9471 |
-
{file = "wrapt-1.
|
9472 |
-
{file = "wrapt-1.
|
9473 |
-
{file = "wrapt-1.
|
9474 |
-
{file = "wrapt-1.
|
9475 |
-
{file = "wrapt-1.
|
9476 |
-
{file = "wrapt-1.
|
9477 |
-
{file = "wrapt-1.
|
9478 |
-
{file = "wrapt-1.
|
9479 |
-
{file = "wrapt-1.
|
9480 |
-
{file = "wrapt-1.
|
9481 |
-
{file = "wrapt-1.
|
9482 |
-
{file = "wrapt-1.
|
9483 |
-
{file = "wrapt-1.
|
9484 |
-
{file = "wrapt-1.
|
9485 |
-
{file = "wrapt-1.
|
9486 |
-
{file = "wrapt-1.
|
9487 |
-
{file = "wrapt-1.
|
9488 |
-
{file = "wrapt-1.
|
9489 |
-
{file = "wrapt-1.16.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:edfad1d29c73f9b863ebe7082ae9321374ccb10879eeabc84ba3b69f2579d537"},
|
9490 |
-
{file = "wrapt-1.16.0-cp39-cp39-win32.whl", hash = "sha256:ed867c42c268f876097248e05b6117a65bcd1e63b779e916fe2e33cd6fd0d3c3"},
|
9491 |
-
{file = "wrapt-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:eb1b046be06b0fce7249f1d025cd359b4b80fc1c3e24ad9eca33e0dcdb2e4a35"},
|
9492 |
-
{file = "wrapt-1.16.0-py3-none-any.whl", hash = "sha256:6906c4100a8fcbf2fa735f6059214bb13b97f75b1a61777fcf6432121ef12ef1"},
|
9493 |
-
{file = "wrapt-1.16.0.tar.gz", hash = "sha256:5f370f952971e7d17c7d1ead40e49f32345a7f7a5373571ef44d800d06b1899d"},
|
9494 |
]
|
9495 |
|
9496 |
[[package]]
|
@@ -9707,93 +9734,93 @@ files = [
|
|
9707 |
|
9708 |
[[package]]
|
9709 |
name = "yarl"
|
9710 |
-
version = "1.
|
9711 |
description = "Yet another URL library"
|
9712 |
optional = false
|
9713 |
python-versions = ">=3.9"
|
9714 |
files = [
|
9715 |
-
{file = "yarl-1.
|
9716 |
-
{file = "yarl-1.
|
9717 |
-
{file = "yarl-1.
|
9718 |
-
{file = "yarl-1.
|
9719 |
-
{file = "yarl-1.
|
9720 |
-
{file = "yarl-1.
|
9721 |
-
{file = "yarl-1.
|
9722 |
-
{file = "yarl-1.
|
9723 |
-
{file = "yarl-1.
|
9724 |
-
{file = "yarl-1.
|
9725 |
-
{file = "yarl-1.
|
9726 |
-
{file = "yarl-1.
|
9727 |
-
{file = "yarl-1.
|
9728 |
-
{file = "yarl-1.
|
9729 |
-
{file = "yarl-1.
|
9730 |
-
{file = "yarl-1.
|
9731 |
-
{file = "yarl-1.
|
9732 |
-
{file = "yarl-1.
|
9733 |
-
{file = "yarl-1.
|
9734 |
-
{file = "yarl-1.
|
9735 |
-
{file = "yarl-1.
|
9736 |
-
{file = "yarl-1.
|
9737 |
-
{file = "yarl-1.
|
9738 |
-
{file = "yarl-1.
|
9739 |
-
{file = "yarl-1.
|
9740 |
-
{file = "yarl-1.
|
9741 |
-
{file = "yarl-1.
|
9742 |
-
{file = "yarl-1.
|
9743 |
-
{file = "yarl-1.
|
9744 |
-
{file = "yarl-1.
|
9745 |
-
{file = "yarl-1.
|
9746 |
-
{file = "yarl-1.
|
9747 |
-
{file = "yarl-1.
|
9748 |
-
{file = "yarl-1.
|
9749 |
-
{file = "yarl-1.
|
9750 |
-
{file = "yarl-1.
|
9751 |
-
{file = "yarl-1.
|
9752 |
-
{file = "yarl-1.
|
9753 |
-
{file = "yarl-1.
|
9754 |
-
{file = "yarl-1.
|
9755 |
-
{file = "yarl-1.
|
9756 |
-
{file = "yarl-1.
|
9757 |
-
{file = "yarl-1.
|
9758 |
-
{file = "yarl-1.
|
9759 |
-
{file = "yarl-1.
|
9760 |
-
{file = "yarl-1.
|
9761 |
-
{file = "yarl-1.
|
9762 |
-
{file = "yarl-1.
|
9763 |
-
{file = "yarl-1.
|
9764 |
-
{file = "yarl-1.
|
9765 |
-
{file = "yarl-1.
|
9766 |
-
{file = "yarl-1.
|
9767 |
-
{file = "yarl-1.
|
9768 |
-
{file = "yarl-1.
|
9769 |
-
{file = "yarl-1.
|
9770 |
-
{file = "yarl-1.
|
9771 |
-
{file = "yarl-1.
|
9772 |
-
{file = "yarl-1.
|
9773 |
-
{file = "yarl-1.
|
9774 |
-
{file = "yarl-1.
|
9775 |
-
{file = "yarl-1.
|
9776 |
-
{file = "yarl-1.
|
9777 |
-
{file = "yarl-1.
|
9778 |
-
{file = "yarl-1.
|
9779 |
-
{file = "yarl-1.
|
9780 |
-
{file = "yarl-1.
|
9781 |
-
{file = "yarl-1.
|
9782 |
-
{file = "yarl-1.
|
9783 |
-
{file = "yarl-1.
|
9784 |
-
{file = "yarl-1.
|
9785 |
-
{file = "yarl-1.
|
9786 |
-
{file = "yarl-1.
|
9787 |
-
{file = "yarl-1.
|
9788 |
-
{file = "yarl-1.
|
9789 |
-
{file = "yarl-1.
|
9790 |
-
{file = "yarl-1.
|
9791 |
-
{file = "yarl-1.
|
9792 |
-
{file = "yarl-1.
|
9793 |
-
{file = "yarl-1.
|
9794 |
-
{file = "yarl-1.
|
9795 |
-
{file = "yarl-1.
|
9796 |
-
{file = "yarl-1.
|
9797 |
]
|
9798 |
|
9799 |
[package.dependencies]
|
@@ -10009,4 +10036,4 @@ cffi = ["cffi (>=1.11)"]
|
|
10009 |
[metadata]
|
10010 |
lock-version = "2.0"
|
10011 |
python-versions = ">=3.10,<3.13"
|
10012 |
-
content-hash = "
|
|
|
44 |
|
45 |
[[package]]
|
46 |
name = "aiohttp"
|
47 |
+
version = "3.11.7"
|
48 |
description = "Async http client/server framework (asyncio)"
|
49 |
optional = false
|
50 |
python-versions = ">=3.9"
|
51 |
files = [
|
52 |
+
{file = "aiohttp-3.11.7-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8bedb1f6cb919af3b6353921c71281b1491f948ca64408871465d889b4ee1b66"},
|
53 |
+
{file = "aiohttp-3.11.7-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f5022504adab881e2d801a88b748ea63f2a9d130e0b2c430824682a96f6534be"},
|
54 |
+
{file = "aiohttp-3.11.7-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e22d1721c978a6494adc824e0916f9d187fa57baeda34b55140315fa2f740184"},
|
55 |
+
{file = "aiohttp-3.11.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e993676c71288618eb07e20622572b1250d8713e7e00ab3aabae28cb70f3640d"},
|
56 |
+
{file = "aiohttp-3.11.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e13a05db87d3b241c186d0936808d0e4e12decc267c617d54e9c643807e968b6"},
|
57 |
+
{file = "aiohttp-3.11.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4ba8d043fed7ffa117024d7ba66fdea011c0e7602327c6d73cacaea38abe4491"},
|
58 |
+
{file = "aiohttp-3.11.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dda3ed0a7869d2fa16aa41f9961ade73aa2c2e3b2fcb0a352524e7b744881889"},
|
59 |
+
{file = "aiohttp-3.11.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:43bfd25113c1e98aec6c70e26d5f4331efbf4aa9037ba9ad88f090853bf64d7f"},
|
60 |
+
{file = "aiohttp-3.11.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3dd3e7e7c9ef3e7214f014f1ae260892286647b3cf7c7f1b644a568fd410f8ca"},
|
61 |
+
{file = "aiohttp-3.11.7-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:78c657ece7a73b976905ab9ec8be9ef2df12ed8984c24598a1791c58ce3b4ce4"},
|
62 |
+
{file = "aiohttp-3.11.7-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:db70a47987e34494b451a334605bee57a126fe8d290511349e86810b4be53b01"},
|
63 |
+
{file = "aiohttp-3.11.7-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:9e67531370a3b07e49b280c1f8c2df67985c790ad2834d1b288a2f13cd341c5f"},
|
64 |
+
{file = "aiohttp-3.11.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:9202f184cc0582b1db15056f2225ab4c1e3dac4d9ade50dd0613ac3c46352ac2"},
|
65 |
+
{file = "aiohttp-3.11.7-cp310-cp310-win32.whl", hash = "sha256:2257bdd5cf54a4039a4337162cd8048f05a724380a2283df34620f55d4e29341"},
|
66 |
+
{file = "aiohttp-3.11.7-cp310-cp310-win_amd64.whl", hash = "sha256:b7215bf2b53bc6cb35808149980c2ae80a4ae4e273890ac85459c014d5aa60ac"},
|
67 |
+
{file = "aiohttp-3.11.7-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:cea52d11e02123f125f9055dfe0ccf1c3857225fb879e4a944fae12989e2aef2"},
|
68 |
+
{file = "aiohttp-3.11.7-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3ce18f703b7298e7f7633efd6a90138d99a3f9a656cb52c1201e76cb5d79cf08"},
|
69 |
+
{file = "aiohttp-3.11.7-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:670847ee6aeb3a569cd7cdfbe0c3bec1d44828bbfbe78c5d305f7f804870ef9e"},
|
70 |
+
{file = "aiohttp-3.11.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4dda726f89bfa5c465ba45b76515135a3ece0088dfa2da49b8bb278f3bdeea12"},
|
71 |
+
{file = "aiohttp-3.11.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c25b74a811dba37c7ea6a14d99eb9402d89c8d739d50748a75f3cf994cf19c43"},
|
72 |
+
{file = "aiohttp-3.11.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e5522ee72f95661e79db691310290c4618b86dff2d9b90baedf343fd7a08bf79"},
|
73 |
+
{file = "aiohttp-3.11.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1fbf41a6bbc319a7816ae0f0177c265b62f2a59ad301a0e49b395746eb2a9884"},
|
74 |
+
{file = "aiohttp-3.11.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:59ee1925b5a5efdf6c4e7be51deee93984d0ac14a6897bd521b498b9916f1544"},
|
75 |
+
{file = "aiohttp-3.11.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:24054fce8c6d6f33a3e35d1c603ef1b91bbcba73e3f04a22b4f2f27dac59b347"},
|
76 |
+
{file = "aiohttp-3.11.7-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:351849aca2c6f814575c1a485c01c17a4240413f960df1bf9f5deb0003c61a53"},
|
77 |
+
{file = "aiohttp-3.11.7-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:12724f3a211fa243570e601f65a8831372caf1a149d2f1859f68479f07efec3d"},
|
78 |
+
{file = "aiohttp-3.11.7-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:7ea4490360b605804bea8173d2d086b6c379d6bb22ac434de605a9cbce006e7d"},
|
79 |
+
{file = "aiohttp-3.11.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e0bf378db07df0a713a1e32381a1b277e62ad106d0dbe17b5479e76ec706d720"},
|
80 |
+
{file = "aiohttp-3.11.7-cp311-cp311-win32.whl", hash = "sha256:cd8d62cab363dfe713067027a5adb4907515861f1e4ce63e7be810b83668b847"},
|
81 |
+
{file = "aiohttp-3.11.7-cp311-cp311-win_amd64.whl", hash = "sha256:bf0e6cce113596377cadda4e3ac5fb89f095bd492226e46d91b4baef1dd16f60"},
|
82 |
+
{file = "aiohttp-3.11.7-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:4bb7493c3e3a36d3012b8564bd0e2783259ddd7ef3a81a74f0dbfa000fce48b7"},
|
83 |
+
{file = "aiohttp-3.11.7-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:e143b0ef9cb1a2b4f74f56d4fbe50caa7c2bb93390aff52f9398d21d89bc73ea"},
|
84 |
+
{file = "aiohttp-3.11.7-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f7c58a240260822dc07f6ae32a0293dd5bccd618bb2d0f36d51c5dbd526f89c0"},
|
85 |
+
{file = "aiohttp-3.11.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8d20cfe63a1c135d26bde8c1d0ea46fd1200884afbc523466d2f1cf517d1fe33"},
|
86 |
+
{file = "aiohttp-3.11.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:12e4d45847a174f77b2b9919719203769f220058f642b08504cf8b1cf185dacf"},
|
87 |
+
{file = "aiohttp-3.11.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cf4efa2d01f697a7dbd0509891a286a4af0d86902fc594e20e3b1712c28c0106"},
|
88 |
+
{file = "aiohttp-3.11.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9ee6a4cdcbf54b8083dc9723cdf5f41f722c00db40ccf9ec2616e27869151129"},
|
89 |
+
{file = "aiohttp-3.11.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c6095aaf852c34f42e1bd0cf0dc32d1e4b48a90bfb5054abdbb9d64b36acadcb"},
|
90 |
+
{file = "aiohttp-3.11.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1cf03d27885f8c5ebf3993a220cc84fc66375e1e6e812731f51aab2b2748f4a6"},
|
91 |
+
{file = "aiohttp-3.11.7-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:1a17f6a230f81eb53282503823f59d61dff14fb2a93847bf0399dc8e87817307"},
|
92 |
+
{file = "aiohttp-3.11.7-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:481f10a1a45c5f4c4a578bbd74cff22eb64460a6549819242a87a80788461fba"},
|
93 |
+
{file = "aiohttp-3.11.7-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:db37248535d1ae40735d15bdf26ad43be19e3d93ab3f3dad8507eb0f85bb8124"},
|
94 |
+
{file = "aiohttp-3.11.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:9d18a8b44ec8502a7fde91446cd9c9b95ce7c49f1eacc1fb2358b8907d4369fd"},
|
95 |
+
{file = "aiohttp-3.11.7-cp312-cp312-win32.whl", hash = "sha256:3d1c9c15d3999107cbb9b2d76ca6172e6710a12fda22434ee8bd3f432b7b17e8"},
|
96 |
+
{file = "aiohttp-3.11.7-cp312-cp312-win_amd64.whl", hash = "sha256:018f1b04883a12e77e7fc161934c0f298865d3a484aea536a6a2ca8d909f0ba0"},
|
97 |
+
{file = "aiohttp-3.11.7-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:241a6ca732d2766836d62c58c49ca7a93d08251daef0c1e3c850df1d1ca0cbc4"},
|
98 |
+
{file = "aiohttp-3.11.7-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:aa3705a8d14de39898da0fbad920b2a37b7547c3afd2a18b9b81f0223b7d0f68"},
|
99 |
+
{file = "aiohttp-3.11.7-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:9acfc7f652b31853eed3b92095b0acf06fd5597eeea42e939bd23a17137679d5"},
|
100 |
+
{file = "aiohttp-3.11.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dcefcf2915a2dbdbce37e2fc1622129a1918abfe3d06721ce9f6cdac9b6d2eaa"},
|
101 |
+
{file = "aiohttp-3.11.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c1f6490dd1862af5aae6cfcf2a274bffa9a5b32a8f5acb519a7ecf5a99a88866"},
|
102 |
+
{file = "aiohttp-3.11.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f1ac5462582d6561c1c1708853a9faf612ff4e5ea5e679e99be36143d6eabd8e"},
|
103 |
+
{file = "aiohttp-3.11.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4c1a6309005acc4b2bcc577ba3b9169fea52638709ffacbd071f3503264620da"},
|
104 |
+
{file = "aiohttp-3.11.7-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f5b973cce96793725ef63eb449adfb74f99c043c718acb76e0d2a447ae369962"},
|
105 |
+
{file = "aiohttp-3.11.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:ce91a24aac80de6be8512fb1c4838a9881aa713f44f4e91dd7bb3b34061b497d"},
|
106 |
+
{file = "aiohttp-3.11.7-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:875f7100ce0e74af51d4139495eec4025affa1a605280f23990b6434b81df1bd"},
|
107 |
+
{file = "aiohttp-3.11.7-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:c171fc35d3174bbf4787381716564042a4cbc008824d8195eede3d9b938e29a8"},
|
108 |
+
{file = "aiohttp-3.11.7-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:ee9afa1b0d2293c46954f47f33e150798ad68b78925e3710044e0d67a9487791"},
|
109 |
+
{file = "aiohttp-3.11.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8360c7cc620abb320e1b8d603c39095101391a82b1d0be05fb2225471c9c5c52"},
|
110 |
+
{file = "aiohttp-3.11.7-cp313-cp313-win32.whl", hash = "sha256:7a9318da4b4ada9a67c1dd84d1c0834123081e746bee311a16bb449f363d965e"},
|
111 |
+
{file = "aiohttp-3.11.7-cp313-cp313-win_amd64.whl", hash = "sha256:fc6da202068e0a268e298d7cd09b6e9f3997736cd9b060e2750963754552a0a9"},
|
112 |
+
{file = "aiohttp-3.11.7-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:17829f37c0d31d89aa6b8b010475a10233774771f9b6dc2cc352ea4f8ce95d9a"},
|
113 |
+
{file = "aiohttp-3.11.7-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d6177077a31b1aecfc3c9070bd2f11419dbb4a70f30f4c65b124714f525c2e48"},
|
114 |
+
{file = "aiohttp-3.11.7-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:badda65ac99555791eed75e234afb94686ed2317670c68bff8a4498acdaee935"},
|
115 |
+
{file = "aiohttp-3.11.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0de6466b9d742b4ee56fe1b2440706e225eb48c77c63152b1584864a236e7a50"},
|
116 |
+
{file = "aiohttp-3.11.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:04b0cc74d5a882c9dacaeeccc1444f0233212b6f5be8bc90833feef1e1ce14b9"},
|
117 |
+
{file = "aiohttp-3.11.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c7af3e50e5903d21d7b935aceed901cc2475463bc16ddd5587653548661fdb"},
|
118 |
+
{file = "aiohttp-3.11.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c63f898f683d1379b9be5afc3dd139e20b30b0b1e0bf69a3fc3681f364cf1629"},
|
119 |
+
{file = "aiohttp-3.11.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fdadc3f6a32d6eca45f9a900a254757fd7855dfb2d8f8dcf0e88f0fae3ff8eb1"},
|
120 |
+
{file = "aiohttp-3.11.7-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d329300fb23e14ed1f8c6d688dfd867d1dcc3b1d7cd49b7f8c5b44e797ce0932"},
|
121 |
+
{file = "aiohttp-3.11.7-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:5578cf40440eafcb054cf859964bc120ab52ebe0e0562d2b898126d868749629"},
|
122 |
+
{file = "aiohttp-3.11.7-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:7b2f8107a3c329789f3c00b2daad0e35f548d0a55cda6291579136622099a46e"},
|
123 |
+
{file = "aiohttp-3.11.7-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:43dd89a6194f6ab02a3fe36b09e42e2df19c211fc2050ce37374d96f39604997"},
|
124 |
+
{file = "aiohttp-3.11.7-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:d2fa6fc7cc865d26ff42480ac9b52b8c9b7da30a10a6442a9cdf429de840e949"},
|
125 |
+
{file = "aiohttp-3.11.7-cp39-cp39-win32.whl", hash = "sha256:a7d9a606355655617fee25dd7e54d3af50804d002f1fd3118dd6312d26692d70"},
|
126 |
+
{file = "aiohttp-3.11.7-cp39-cp39-win_amd64.whl", hash = "sha256:53c921b58fdc6485d6b2603e0132bb01cd59b8f0620ffc0907f525e0ba071687"},
|
127 |
+
{file = "aiohttp-3.11.7.tar.gz", hash = "sha256:01a8aca4af3da85cea5c90141d23f4b0eee3cbecfd33b029a45a80f28c66c668"},
|
128 |
]
|
129 |
|
130 |
[package.dependencies]
|
|
|
196 |
|
197 |
[[package]]
|
198 |
name = "akshare"
|
199 |
+
version = "1.15.32"
|
200 |
description = "AKShare is an elegant and simple financial data interface library for Python, built for human beings!"
|
201 |
optional = false
|
202 |
python-versions = ">=3.8"
|
203 |
files = [
|
204 |
+
{file = "akshare-1.15.32-py3-none-any.whl", hash = "sha256:4424f4adc4364f4f0a63fe3153772a3113578c6bc594a5b46ed065d8805f5084"},
|
205 |
+
{file = "akshare-1.15.32.tar.gz", hash = "sha256:fb3129cbcd089cc949e15365ff664cba1739f121fd0b7710fddb4adf5b1fee53"},
|
206 |
]
|
207 |
|
208 |
[package.dependencies]
|
|
|
2641 |
|
2642 |
[[package]]
|
2643 |
name = "google-api-python-client"
|
2644 |
+
version = "2.154.0"
|
2645 |
description = "Google API Client Library for Python"
|
2646 |
optional = false
|
2647 |
python-versions = ">=3.7"
|
2648 |
files = [
|
2649 |
+
{file = "google_api_python_client-2.154.0-py2.py3-none-any.whl", hash = "sha256:a521bbbb2ec0ba9d6f307cdd64ed6e21eeac372d1bd7493a4ab5022941f784ad"},
|
2650 |
+
{file = "google_api_python_client-2.154.0.tar.gz", hash = "sha256:1b420062e03bfcaa1c79e2e00a612d29a6a934151ceb3d272fe150a656dc8f17"},
|
2651 |
]
|
2652 |
|
2653 |
[package.dependencies]
|
|
|
3675 |
|
3676 |
[[package]]
|
3677 |
name = "infinity-sdk"
|
3678 |
+
version = "0.5.0.dev5"
|
3679 |
description = "infinity"
|
3680 |
optional = false
|
3681 |
python-versions = ">=3.10"
|
3682 |
files = [
|
3683 |
+
{file = "infinity_sdk-0.5.0.dev5-py3-none-any.whl", hash = "sha256:e55573241486d111d2b6e95c2fc0a2befa867443aa1ad4b75997c9fb78c15d98"},
|
3684 |
]
|
3685 |
|
3686 |
[package.dependencies]
|
|
|
3691 |
pyarrow = ">=17.0.0,<17.1.0"
|
3692 |
pydantic = ">=2.9.0,<2.10.0"
|
3693 |
pytest = ">=8.3.0,<8.4.0"
|
3694 |
+
readerwriterlock = ">=1.0.9,<1.1.0"
|
3695 |
requests = ">=2.32.0,<2.33.0"
|
3696 |
setuptools = ">=75.2.0,<75.3.0"
|
3697 |
sqlglot = ">=11.7.0,<11.8.0"
|
|
|
5250 |
|
5251 |
[[package]]
|
5252 |
name = "nvidia-nvjitlink-cu12"
|
5253 |
+
version = "12.6.85"
|
5254 |
description = "Nvidia JIT LTO Library"
|
5255 |
optional = false
|
5256 |
python-versions = ">=3"
|
5257 |
files = [
|
5258 |
+
{file = "nvidia_nvjitlink_cu12-12.6.85-py3-none-manylinux2010_x86_64.manylinux_2_12_x86_64.whl", hash = "sha256:eedc36df9e88b682efe4309aa16b5b4e78c2407eac59e8c10a6a47535164369a"},
|
5259 |
+
{file = "nvidia_nvjitlink_cu12-12.6.85-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:cf4eaa7d4b6b543ffd69d6abfb11efdeb2db48270d94dfd3a452c24150829e41"},
|
5260 |
+
{file = "nvidia_nvjitlink_cu12-12.6.85-py3-none-win_amd64.whl", hash = "sha256:e61120e52ed675747825cdd16febc6a0730537451d867ee58bee3853b1b13d1c"},
|
5261 |
]
|
5262 |
|
5263 |
[[package]]
|
|
|
5457 |
|
5458 |
[[package]]
|
5459 |
name = "orjson"
|
5460 |
+
version = "3.10.12"
|
5461 |
description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy"
|
5462 |
optional = false
|
5463 |
python-versions = ">=3.8"
|
5464 |
files = [
|
5465 |
+
{file = "orjson-3.10.12-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:ece01a7ec71d9940cc654c482907a6b65df27251255097629d0dea781f255c6d"},
|
5466 |
+
{file = "orjson-3.10.12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c34ec9aebc04f11f4b978dd6caf697a2df2dd9b47d35aa4cc606cabcb9df69d7"},
|
5467 |
+
{file = "orjson-3.10.12-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fd6ec8658da3480939c79b9e9e27e0db31dffcd4ba69c334e98c9976ac29140e"},
|
5468 |
+
{file = "orjson-3.10.12-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f17e6baf4cf01534c9de8a16c0c611f3d94925d1701bf5f4aff17003677d8ced"},
|
5469 |
+
{file = "orjson-3.10.12-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6402ebb74a14ef96f94a868569f5dccf70d791de49feb73180eb3c6fda2ade56"},
|
5470 |
+
{file = "orjson-3.10.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0000758ae7c7853e0a4a6063f534c61656ebff644391e1f81698c1b2d2fc8cd2"},
|
5471 |
+
{file = "orjson-3.10.12-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:888442dcee99fd1e5bd37a4abb94930915ca6af4db50e23e746cdf4d1e63db13"},
|
5472 |
+
{file = "orjson-3.10.12-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:c1f7a3ce79246aa0e92f5458d86c54f257fb5dfdc14a192651ba7ec2c00f8a05"},
|
5473 |
+
{file = "orjson-3.10.12-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:802a3935f45605c66fb4a586488a38af63cb37aaad1c1d94c982c40dcc452e85"},
|
5474 |
+
{file = "orjson-3.10.12-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:1da1ef0113a2be19bb6c557fb0ec2d79c92ebd2fed4cfb1b26bab93f021fb885"},
|
5475 |
+
{file = "orjson-3.10.12-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7a3273e99f367f137d5b3fecb5e9f45bcdbfac2a8b2f32fbc72129bbd48789c2"},
|
5476 |
+
{file = "orjson-3.10.12-cp310-none-win32.whl", hash = "sha256:475661bf249fd7907d9b0a2a2421b4e684355a77ceef85b8352439a9163418c3"},
|
5477 |
+
{file = "orjson-3.10.12-cp310-none-win_amd64.whl", hash = "sha256:87251dc1fb2b9e5ab91ce65d8f4caf21910d99ba8fb24b49fd0c118b2362d509"},
|
5478 |
+
{file = "orjson-3.10.12-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:a734c62efa42e7df94926d70fe7d37621c783dea9f707a98cdea796964d4cf74"},
|
5479 |
+
{file = "orjson-3.10.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:750f8b27259d3409eda8350c2919a58b0cfcd2054ddc1bd317a643afc646ef23"},
|
5480 |
+
{file = "orjson-3.10.12-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bb52c22bfffe2857e7aa13b4622afd0dd9d16ea7cc65fd2bf318d3223b1b6252"},
|
5481 |
+
{file = "orjson-3.10.12-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:440d9a337ac8c199ff8251e100c62e9488924c92852362cd27af0e67308c16ef"},
|
5482 |
+
{file = "orjson-3.10.12-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a9e15c06491c69997dfa067369baab3bf094ecb74be9912bdc4339972323f252"},
|
5483 |
+
{file = "orjson-3.10.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:362d204ad4b0b8724cf370d0cd917bb2dc913c394030da748a3bb632445ce7c4"},
|
5484 |
+
{file = "orjson-3.10.12-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2b57cbb4031153db37b41622eac67329c7810e5f480fda4cfd30542186f006ae"},
|
5485 |
+
{file = "orjson-3.10.12-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:165c89b53ef03ce0d7c59ca5c82fa65fe13ddf52eeb22e859e58c237d4e33b9b"},
|
5486 |
+
{file = "orjson-3.10.12-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:5dee91b8dfd54557c1a1596eb90bcd47dbcd26b0baaed919e6861f076583e9da"},
|
5487 |
+
{file = "orjson-3.10.12-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:77a4e1cfb72de6f905bdff061172adfb3caf7a4578ebf481d8f0530879476c07"},
|
5488 |
+
{file = "orjson-3.10.12-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:038d42c7bc0606443459b8fe2d1f121db474c49067d8d14c6a075bbea8bf14dd"},
|
5489 |
+
{file = "orjson-3.10.12-cp311-none-win32.whl", hash = "sha256:03b553c02ab39bed249bedd4abe37b2118324d1674e639b33fab3d1dafdf4d79"},
|
5490 |
+
{file = "orjson-3.10.12-cp311-none-win_amd64.whl", hash = "sha256:8b8713b9e46a45b2af6b96f559bfb13b1e02006f4242c156cbadef27800a55a8"},
|
5491 |
+
{file = "orjson-3.10.12-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:53206d72eb656ca5ac7d3a7141e83c5bbd3ac30d5eccfe019409177a57634b0d"},
|
5492 |
+
{file = "orjson-3.10.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac8010afc2150d417ebda810e8df08dd3f544e0dd2acab5370cfa6bcc0662f8f"},
|
5493 |
+
{file = "orjson-3.10.12-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ed459b46012ae950dd2e17150e838ab08215421487371fa79d0eced8d1461d70"},
|
5494 |
+
{file = "orjson-3.10.12-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8dcb9673f108a93c1b52bfc51b0af422c2d08d4fc710ce9c839faad25020bb69"},
|
5495 |
+
{file = "orjson-3.10.12-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:22a51ae77680c5c4652ebc63a83d5255ac7d65582891d9424b566fb3b5375ee9"},
|
5496 |
+
{file = "orjson-3.10.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:910fdf2ac0637b9a77d1aad65f803bac414f0b06f720073438a7bd8906298192"},
|
5497 |
+
{file = "orjson-3.10.12-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:24ce85f7100160936bc2116c09d1a8492639418633119a2224114f67f63a4559"},
|
5498 |
+
{file = "orjson-3.10.12-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8a76ba5fc8dd9c913640292df27bff80a685bed3a3c990d59aa6ce24c352f8fc"},
|
5499 |
+
{file = "orjson-3.10.12-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:ff70ef093895fd53f4055ca75f93f047e088d1430888ca1229393a7c0521100f"},
|
5500 |
+
{file = "orjson-3.10.12-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:f4244b7018b5753ecd10a6d324ec1f347da130c953a9c88432c7fbc8875d13be"},
|
5501 |
+
{file = "orjson-3.10.12-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:16135ccca03445f37921fa4b585cff9a58aa8d81ebcb27622e69bfadd220b32c"},
|
5502 |
+
{file = "orjson-3.10.12-cp312-none-win32.whl", hash = "sha256:2d879c81172d583e34153d524fcba5d4adafbab8349a7b9f16ae511c2cee8708"},
|
5503 |
+
{file = "orjson-3.10.12-cp312-none-win_amd64.whl", hash = "sha256:fc23f691fa0f5c140576b8c365bc942d577d861a9ee1142e4db468e4e17094fb"},
|
5504 |
+
{file = "orjson-3.10.12-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:47962841b2a8aa9a258b377f5188db31ba49af47d4003a32f55d6f8b19006543"},
|
5505 |
+
{file = "orjson-3.10.12-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6334730e2532e77b6054e87ca84f3072bee308a45a452ea0bffbbbc40a67e296"},
|
5506 |
+
{file = "orjson-3.10.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:accfe93f42713c899fdac2747e8d0d5c659592df2792888c6c5f829472e4f85e"},
|
5507 |
+
{file = "orjson-3.10.12-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a7974c490c014c48810d1dede6c754c3cc46598da758c25ca3b4001ac45b703f"},
|
5508 |
+
{file = "orjson-3.10.12-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:3f250ce7727b0b2682f834a3facff88e310f52f07a5dcfd852d99637d386e79e"},
|
5509 |
+
{file = "orjson-3.10.12-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:f31422ff9486ae484f10ffc51b5ab2a60359e92d0716fcce1b3593d7bb8a9af6"},
|
5510 |
+
{file = "orjson-3.10.12-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5f29c5d282bb2d577c2a6bbde88d8fdcc4919c593f806aac50133f01b733846e"},
|
5511 |
+
{file = "orjson-3.10.12-cp313-none-win32.whl", hash = "sha256:f45653775f38f63dc0e6cd4f14323984c3149c05d6007b58cb154dd080ddc0dc"},
|
5512 |
+
{file = "orjson-3.10.12-cp313-none-win_amd64.whl", hash = "sha256:229994d0c376d5bdc91d92b3c9e6be2f1fbabd4cc1b59daae1443a46ee5e9825"},
|
5513 |
+
{file = "orjson-3.10.12-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7d69af5b54617a5fac5c8e5ed0859eb798e2ce8913262eb522590239db6c6763"},
|
5514 |
+
{file = "orjson-3.10.12-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7ed119ea7d2953365724a7059231a44830eb6bbb0cfead33fcbc562f5fd8f935"},
|
5515 |
+
{file = "orjson-3.10.12-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9c5fc1238ef197e7cad5c91415f524aaa51e004be5a9b35a1b8a84ade196f73f"},
|
5516 |
+
{file = "orjson-3.10.12-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:43509843990439b05f848539d6f6198d4ac86ff01dd024b2f9a795c0daeeab60"},
|
5517 |
+
{file = "orjson-3.10.12-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f72e27a62041cfb37a3de512247ece9f240a561e6c8662276beaf4d53d406db4"},
|
5518 |
+
{file = "orjson-3.10.12-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9a904f9572092bb6742ab7c16c623f0cdccbad9eeb2d14d4aa06284867bddd31"},
|
5519 |
+
{file = "orjson-3.10.12-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:855c0833999ed5dc62f64552db26f9be767434917d8348d77bacaab84f787d7b"},
|
5520 |
+
{file = "orjson-3.10.12-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:897830244e2320f6184699f598df7fb9db9f5087d6f3f03666ae89d607e4f8ed"},
|
5521 |
+
{file = "orjson-3.10.12-cp38-cp38-musllinux_1_2_armv7l.whl", hash = "sha256:0b32652eaa4a7539f6f04abc6243619c56f8530c53bf9b023e1269df5f7816dd"},
|
5522 |
+
{file = "orjson-3.10.12-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:36b4aa31e0f6a1aeeb6f8377769ca5d125db000f05c20e54163aef1d3fe8e833"},
|
5523 |
+
{file = "orjson-3.10.12-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:5535163054d6cbf2796f93e4f0dbc800f61914c0e3c4ed8499cf6ece22b4a3da"},
|
5524 |
+
{file = "orjson-3.10.12-cp38-none-win32.whl", hash = "sha256:90a5551f6f5a5fa07010bf3d0b4ca2de21adafbbc0af6cb700b63cd767266cb9"},
|
5525 |
+
{file = "orjson-3.10.12-cp38-none-win_amd64.whl", hash = "sha256:703a2fb35a06cdd45adf5d733cf613cbc0cb3ae57643472b16bc22d325b5fb6c"},
|
5526 |
+
{file = "orjson-3.10.12-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:f29de3ef71a42a5822765def1febfb36e0859d33abf5c2ad240acad5c6a1b78d"},
|
5527 |
+
{file = "orjson-3.10.12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:de365a42acc65d74953f05e4772c974dad6c51cfc13c3240899f534d611be967"},
|
5528 |
+
{file = "orjson-3.10.12-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:91a5a0158648a67ff0004cb0df5df7dcc55bfc9ca154d9c01597a23ad54c8d0c"},
|
5529 |
+
{file = "orjson-3.10.12-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c47ce6b8d90fe9646a25b6fb52284a14ff215c9595914af63a5933a49972ce36"},
|
5530 |
+
{file = "orjson-3.10.12-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0eee4c2c5bfb5c1b47a5db80d2ac7aaa7e938956ae88089f098aff2c0f35d5d8"},
|
5531 |
+
{file = "orjson-3.10.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:35d3081bbe8b86587eb5c98a73b97f13d8f9fea685cf91a579beddacc0d10566"},
|
5532 |
+
{file = "orjson-3.10.12-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:73c23a6e90383884068bc2dba83d5222c9fcc3b99a0ed2411d38150734236755"},
|
5533 |
+
{file = "orjson-3.10.12-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:5472be7dc3269b4b52acba1433dac239215366f89dc1d8d0e64029abac4e714e"},
|
5534 |
+
{file = "orjson-3.10.12-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:7319cda750fca96ae5973efb31b17d97a5c5225ae0bc79bf5bf84df9e1ec2ab6"},
|
5535 |
+
{file = "orjson-3.10.12-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:74d5ca5a255bf20b8def6a2b96b1e18ad37b4a122d59b154c458ee9494377f80"},
|
5536 |
+
{file = "orjson-3.10.12-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:ff31d22ecc5fb85ef62c7d4afe8301d10c558d00dd24274d4bbe464380d3cd69"},
|
5537 |
+
{file = "orjson-3.10.12-cp39-none-win32.whl", hash = "sha256:c22c3ea6fba91d84fcb4cda30e64aff548fcf0c44c876e681f47d61d24b12e6b"},
|
5538 |
+
{file = "orjson-3.10.12-cp39-none-win_amd64.whl", hash = "sha256:be604f60d45ace6b0b33dd990a66b4526f1a7a186ac411c942674625456ca548"},
|
5539 |
+
{file = "orjson-3.10.12.tar.gz", hash = "sha256:0a78bbda3aea0f9f079057ee1ee8a1ecf790d4f1af88dd67493c6b8ee52506ff"},
|
5540 |
]
|
5541 |
|
5542 |
[[package]]
|
|
|
7390 |
[package.extras]
|
7391 |
test = ["timeout-decorator"]
|
7392 |
|
7393 |
+
[[package]]
|
7394 |
+
name = "readerwriterlock"
|
7395 |
+
version = "1.0.9"
|
7396 |
+
description = "A python implementation of the three Reader-Writer problems."
|
7397 |
+
optional = false
|
7398 |
+
python-versions = ">=3.6"
|
7399 |
+
files = [
|
7400 |
+
{file = "readerwriterlock-1.0.9-py3-none-any.whl", hash = "sha256:8c4b704e60d15991462081a27ef46762fea49b478aa4426644f2146754759ca7"},
|
7401 |
+
{file = "readerwriterlock-1.0.9.tar.gz", hash = "sha256:b7c4cc003435d7a8ff15b312b0a62a88d9800ba6164af88991f87f8b748f9bea"},
|
7402 |
+
]
|
7403 |
+
|
7404 |
+
[package.dependencies]
|
7405 |
+
typing-extensions = "*"
|
7406 |
+
|
7407 |
[[package]]
|
7408 |
name = "referencing"
|
7409 |
version = "0.35.1"
|
|
|
7791 |
|
7792 |
[[package]]
|
7793 |
name = "s3transfer"
|
7794 |
+
version = "0.10.4"
|
7795 |
description = "An Amazon S3 Transfer Manager"
|
7796 |
optional = false
|
7797 |
python-versions = ">= 3.8"
|
7798 |
files = [
|
7799 |
+
{file = "s3transfer-0.10.4-py3-none-any.whl", hash = "sha256:244a76a24355363a68164241438de1b72f8781664920260c48465896b712a41e"},
|
7800 |
+
{file = "s3transfer-0.10.4.tar.gz", hash = "sha256:29edc09801743c21eb5ecbc617a152df41d3c287f67b615f73e5f750583666a7"},
|
7801 |
]
|
7802 |
|
7803 |
[package.dependencies]
|
|
|
8929 |
|
8930 |
[[package]]
|
8931 |
name = "tqdm"
|
8932 |
+
version = "4.67.1"
|
8933 |
description = "Fast, Extensible Progress Meter"
|
8934 |
optional = false
|
8935 |
python-versions = ">=3.7"
|
8936 |
files = [
|
8937 |
+
{file = "tqdm-4.67.1-py3-none-any.whl", hash = "sha256:26445eca388f82e72884e0d580d5464cd801a3ea01e63e5601bdff9ba6a48de2"},
|
8938 |
+
{file = "tqdm-4.67.1.tar.gz", hash = "sha256:f8aef9c52c08c13a65f30ea34f4e5aac3fd1a34959879d7e59e63027286627f2"},
|
8939 |
]
|
8940 |
|
8941 |
[package.dependencies]
|
8942 |
colorama = {version = "*", markers = "platform_system == \"Windows\""}
|
8943 |
|
8944 |
[package.extras]
|
8945 |
+
dev = ["nbval", "pytest (>=6)", "pytest-asyncio (>=0.24)", "pytest-cov", "pytest-timeout"]
|
8946 |
discord = ["requests"]
|
8947 |
notebook = ["ipywidgets (>=6)"]
|
8948 |
slack = ["slack-sdk"]
|
|
|
9448 |
|
9449 |
[[package]]
|
9450 |
name = "wrapt"
|
9451 |
+
version = "1.17.0"
|
9452 |
description = "Module for decorators, wrappers and monkey patching."
|
9453 |
optional = false
|
9454 |
+
python-versions = ">=3.8"
|
9455 |
files = [
|
9456 |
+
{file = "wrapt-1.17.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2a0c23b8319848426f305f9cb0c98a6e32ee68a36264f45948ccf8e7d2b941f8"},
|
9457 |
+
{file = "wrapt-1.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b1ca5f060e205f72bec57faae5bd817a1560fcfc4af03f414b08fa29106b7e2d"},
|
9458 |
+
{file = "wrapt-1.17.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e185ec6060e301a7e5f8461c86fb3640a7beb1a0f0208ffde7a65ec4074931df"},
|
9459 |
+
{file = "wrapt-1.17.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bb90765dd91aed05b53cd7a87bd7f5c188fcd95960914bae0d32c5e7f899719d"},
|
9460 |
+
{file = "wrapt-1.17.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:879591c2b5ab0a7184258274c42a126b74a2c3d5a329df16d69f9cee07bba6ea"},
|
9461 |
+
{file = "wrapt-1.17.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:fce6fee67c318fdfb7f285c29a82d84782ae2579c0e1b385b7f36c6e8074fffb"},
|
9462 |
+
{file = "wrapt-1.17.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:0698d3a86f68abc894d537887b9bbf84d29bcfbc759e23f4644be27acf6da301"},
|
9463 |
+
{file = "wrapt-1.17.0-cp310-cp310-win32.whl", hash = "sha256:69d093792dc34a9c4c8a70e4973a3361c7a7578e9cd86961b2bbf38ca71e4e22"},
|
9464 |
+
{file = "wrapt-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:f28b29dc158ca5d6ac396c8e0a2ef45c4e97bb7e65522bfc04c989e6fe814575"},
|
9465 |
+
{file = "wrapt-1.17.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:74bf625b1b4caaa7bad51d9003f8b07a468a704e0644a700e936c357c17dd45a"},
|
9466 |
+
{file = "wrapt-1.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0f2a28eb35cf99d5f5bd12f5dd44a0f41d206db226535b37b0c60e9da162c3ed"},
|
9467 |
+
{file = "wrapt-1.17.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:81b1289e99cf4bad07c23393ab447e5e96db0ab50974a280f7954b071d41b489"},
|
9468 |
+
{file = "wrapt-1.17.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9f2939cd4a2a52ca32bc0b359015718472d7f6de870760342e7ba295be9ebaf9"},
|
9469 |
+
{file = "wrapt-1.17.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:6a9653131bda68a1f029c52157fd81e11f07d485df55410401f745007bd6d339"},
|
9470 |
+
{file = "wrapt-1.17.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4e4b4385363de9052dac1a67bfb535c376f3d19c238b5f36bddc95efae15e12d"},
|
9471 |
+
{file = "wrapt-1.17.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bdf62d25234290db1837875d4dceb2151e4ea7f9fff2ed41c0fde23ed542eb5b"},
|
9472 |
+
{file = "wrapt-1.17.0-cp311-cp311-win32.whl", hash = "sha256:5d8fd17635b262448ab8f99230fe4dac991af1dabdbb92f7a70a6afac8a7e346"},
|
9473 |
+
{file = "wrapt-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:92a3d214d5e53cb1db8b015f30d544bc9d3f7179a05feb8f16df713cecc2620a"},
|
9474 |
+
{file = "wrapt-1.17.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:89fc28495896097622c3fc238915c79365dd0ede02f9a82ce436b13bd0ab7569"},
|
9475 |
+
{file = "wrapt-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:875d240fdbdbe9e11f9831901fb8719da0bd4e6131f83aa9f69b96d18fae7504"},
|
9476 |
+
{file = "wrapt-1.17.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e5ed16d95fd142e9c72b6c10b06514ad30e846a0d0917ab406186541fe68b451"},
|
9477 |
+
{file = "wrapt-1.17.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18b956061b8db634120b58f668592a772e87e2e78bc1f6a906cfcaa0cc7991c1"},
|
9478 |
+
{file = "wrapt-1.17.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:daba396199399ccabafbfc509037ac635a6bc18510ad1add8fd16d4739cdd106"},
|
9479 |
+
{file = "wrapt-1.17.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:4d63f4d446e10ad19ed01188d6c1e1bb134cde8c18b0aa2acfd973d41fcc5ada"},
|
9480 |
+
{file = "wrapt-1.17.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:8a5e7cc39a45fc430af1aefc4d77ee6bad72c5bcdb1322cfde852c15192b8bd4"},
|
9481 |
+
{file = "wrapt-1.17.0-cp312-cp312-win32.whl", hash = "sha256:0a0a1a1ec28b641f2a3a2c35cbe86c00051c04fffcfcc577ffcdd707df3f8635"},
|
9482 |
+
{file = "wrapt-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:3c34f6896a01b84bab196f7119770fd8466c8ae3dfa73c59c0bb281e7b588ce7"},
|
9483 |
+
{file = "wrapt-1.17.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:714c12485aa52efbc0fc0ade1e9ab3a70343db82627f90f2ecbc898fdf0bb181"},
|
9484 |
+
{file = "wrapt-1.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da427d311782324a376cacb47c1a4adc43f99fd9d996ffc1b3e8529c4074d393"},
|
9485 |
+
{file = "wrapt-1.17.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ba1739fb38441a27a676f4de4123d3e858e494fac05868b7a281c0a383c098f4"},
|
9486 |
+
{file = "wrapt-1.17.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e711fc1acc7468463bc084d1b68561e40d1eaa135d8c509a65dd534403d83d7b"},
|
9487 |
+
{file = "wrapt-1.17.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:140ea00c87fafc42739bd74a94a5a9003f8e72c27c47cd4f61d8e05e6dec8721"},
|
9488 |
+
{file = "wrapt-1.17.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:73a96fd11d2b2e77d623a7f26e004cc31f131a365add1ce1ce9a19e55a1eef90"},
|
9489 |
+
{file = "wrapt-1.17.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:0b48554952f0f387984da81ccfa73b62e52817a4386d070c75e4db7d43a28c4a"},
|
9490 |
+
{file = "wrapt-1.17.0-cp313-cp313-win32.whl", hash = "sha256:498fec8da10e3e62edd1e7368f4b24aa362ac0ad931e678332d1b209aec93045"},
|
9491 |
+
{file = "wrapt-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:fd136bb85f4568fffca995bd3c8d52080b1e5b225dbf1c2b17b66b4c5fa02838"},
|
9492 |
+
{file = "wrapt-1.17.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:17fcf043d0b4724858f25b8826c36e08f9fb2e475410bece0ec44a22d533da9b"},
|
9493 |
+
{file = "wrapt-1.17.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4a557d97f12813dc5e18dad9fa765ae44ddd56a672bb5de4825527c847d6379"},
|
9494 |
+
{file = "wrapt-1.17.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0229b247b0fc7dee0d36176cbb79dbaf2a9eb7ecc50ec3121f40ef443155fb1d"},
|
9495 |
+
{file = "wrapt-1.17.0-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8425cfce27b8b20c9b89d77fb50e368d8306a90bf2b6eef2cdf5cd5083adf83f"},
|
9496 |
+
{file = "wrapt-1.17.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:9c900108df470060174108012de06d45f514aa4ec21a191e7ab42988ff42a86c"},
|
9497 |
+
{file = "wrapt-1.17.0-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:4e547b447073fc0dbfcbff15154c1be8823d10dab4ad401bdb1575e3fdedff1b"},
|
9498 |
+
{file = "wrapt-1.17.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:914f66f3b6fc7b915d46c1cc424bc2441841083de01b90f9e81109c9759e43ab"},
|
9499 |
+
{file = "wrapt-1.17.0-cp313-cp313t-win32.whl", hash = "sha256:a4192b45dff127c7d69b3bdfb4d3e47b64179a0b9900b6351859f3001397dabf"},
|
9500 |
+
{file = "wrapt-1.17.0-cp313-cp313t-win_amd64.whl", hash = "sha256:4f643df3d4419ea3f856c5c3f40fec1d65ea2e89ec812c83f7767c8730f9827a"},
|
9501 |
+
{file = "wrapt-1.17.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:69c40d4655e078ede067a7095544bcec5a963566e17503e75a3a3e0fe2803b13"},
|
9502 |
+
{file = "wrapt-1.17.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2f495b6754358979379f84534f8dd7a43ff8cff2558dcdea4a148a6e713a758f"},
|
9503 |
+
{file = "wrapt-1.17.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:baa7ef4e0886a6f482e00d1d5bcd37c201b383f1d314643dfb0367169f94f04c"},
|
9504 |
+
{file = "wrapt-1.17.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8fc931382e56627ec4acb01e09ce66e5c03c384ca52606111cee50d931a342d"},
|
9505 |
+
{file = "wrapt-1.17.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:8f8909cdb9f1b237786c09a810e24ee5e15ef17019f7cecb207ce205b9b5fcce"},
|
9506 |
+
{file = "wrapt-1.17.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:ad47b095f0bdc5585bced35bd088cbfe4177236c7df9984b3cc46b391cc60627"},
|
9507 |
+
{file = "wrapt-1.17.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:948a9bd0fb2c5120457b07e59c8d7210cbc8703243225dbd78f4dfc13c8d2d1f"},
|
9508 |
+
{file = "wrapt-1.17.0-cp38-cp38-win32.whl", hash = "sha256:5ae271862b2142f4bc687bdbfcc942e2473a89999a54231aa1c2c676e28f29ea"},
|
9509 |
+
{file = "wrapt-1.17.0-cp38-cp38-win_amd64.whl", hash = "sha256:f335579a1b485c834849e9075191c9898e0731af45705c2ebf70e0cd5d58beed"},
|
9510 |
+
{file = "wrapt-1.17.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:d751300b94e35b6016d4b1e7d0e7bbc3b5e1751e2405ef908316c2a9024008a1"},
|
9511 |
+
{file = "wrapt-1.17.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7264cbb4a18dc4acfd73b63e4bcfec9c9802614572025bdd44d0721983fc1d9c"},
|
9512 |
+
{file = "wrapt-1.17.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:33539c6f5b96cf0b1105a0ff4cf5db9332e773bb521cc804a90e58dc49b10578"},
|
9513 |
+
{file = "wrapt-1.17.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c30970bdee1cad6a8da2044febd824ef6dc4cc0b19e39af3085c763fdec7de33"},
|
9514 |
+
{file = "wrapt-1.17.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:bc7f729a72b16ee21795a943f85c6244971724819819a41ddbaeb691b2dd85ad"},
|
9515 |
+
{file = "wrapt-1.17.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:6ff02a91c4fc9b6a94e1c9c20f62ea06a7e375f42fe57587f004d1078ac86ca9"},
|
9516 |
+
{file = "wrapt-1.17.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2dfb7cff84e72e7bf975b06b4989477873dcf160b2fd89959c629535df53d4e0"},
|
9517 |
+
{file = "wrapt-1.17.0-cp39-cp39-win32.whl", hash = "sha256:2399408ac33ffd5b200480ee858baa58d77dd30e0dd0cab6a8a9547135f30a88"},
|
9518 |
+
{file = "wrapt-1.17.0-cp39-cp39-win_amd64.whl", hash = "sha256:4f763a29ee6a20c529496a20a7bcb16a73de27f5da6a843249c7047daf135977"},
|
9519 |
+
{file = "wrapt-1.17.0-py3-none-any.whl", hash = "sha256:d2c63b93548eda58abf5188e505ffed0229bf675f7c3090f8e36ad55b8cbc371"},
|
9520 |
+
{file = "wrapt-1.17.0.tar.gz", hash = "sha256:16187aa2317c731170a88ef35e8937ae0f533c402872c1ee5e6d079fcf320801"},
|
|
|
|
|
|
|
|
|
|
|
9521 |
]
|
9522 |
|
9523 |
[[package]]
|
|
|
9734 |
|
9735 |
[[package]]
|
9736 |
name = "yarl"
|
9737 |
+
version = "1.18.0"
|
9738 |
description = "Yet another URL library"
|
9739 |
optional = false
|
9740 |
python-versions = ">=3.9"
|
9741 |
files = [
|
9742 |
+
{file = "yarl-1.18.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:074fee89caab89a97e18ef5f29060ef61ba3cae6cd77673acc54bfdd3214b7b7"},
|
9743 |
+
{file = "yarl-1.18.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b026cf2c32daf48d90c0c4e406815c3f8f4cfe0c6dfccb094a9add1ff6a0e41a"},
|
9744 |
+
{file = "yarl-1.18.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ae38bd86eae3ba3d2ce5636cc9e23c80c9db2e9cb557e40b98153ed102b5a736"},
|
9745 |
+
{file = "yarl-1.18.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:685cc37f3f307c6a8e879986c6d85328f4c637f002e219f50e2ef66f7e062c1d"},
|
9746 |
+
{file = "yarl-1.18.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8254dbfce84ee5d1e81051ee7a0f1536c108ba294c0fdb5933476398df0654f3"},
|
9747 |
+
{file = "yarl-1.18.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:20de4a8b04de70c49698dc2390b7fd2d18d424d3b876371f9b775e2b462d4b41"},
|
9748 |
+
{file = "yarl-1.18.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b0a2074a37285570d54b55820687de3d2f2b9ecf1b714e482e48c9e7c0402038"},
|
9749 |
+
{file = "yarl-1.18.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3f576ed278860df2721a5d57da3381040176ef1d07def9688a385c8330db61a1"},
|
9750 |
+
{file = "yarl-1.18.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3a3709450a574d61be6ac53d582496014342ea34876af8dc17cc16da32826c9a"},
|
9751 |
+
{file = "yarl-1.18.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:bd80ed29761490c622edde5dd70537ca8c992c2952eb62ed46984f8eff66d6e8"},
|
9752 |
+
{file = "yarl-1.18.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:32141e13a1d5a48525e519c9197d3f4d9744d818d5c7d6547524cc9eccc8971e"},
|
9753 |
+
{file = "yarl-1.18.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:8b8d3e4e014fb4274f1c5bf61511d2199e263909fb0b8bda2a7428b0894e8dc6"},
|
9754 |
+
{file = "yarl-1.18.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:701bb4a8f4de191c8c0cc9a1e6d5142f4df880e9d1210e333b829ca9425570ed"},
|
9755 |
+
{file = "yarl-1.18.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:a45d94075ac0647621eaaf693c8751813a3eccac455d423f473ffed38c8ac5c9"},
|
9756 |
+
{file = "yarl-1.18.0-cp310-cp310-win32.whl", hash = "sha256:34176bfb082add67cb2a20abd85854165540891147f88b687a5ed0dc225750a0"},
|
9757 |
+
{file = "yarl-1.18.0-cp310-cp310-win_amd64.whl", hash = "sha256:73553bbeea7d6ec88c08ad8027f4e992798f0abc459361bf06641c71972794dc"},
|
9758 |
+
{file = "yarl-1.18.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:b8e8c516dc4e1a51d86ac975b0350735007e554c962281c432eaa5822aa9765c"},
|
9759 |
+
{file = "yarl-1.18.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2e6b4466714a73f5251d84b471475850954f1fa6acce4d3f404da1d55d644c34"},
|
9760 |
+
{file = "yarl-1.18.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c893f8c1a6d48b25961e00922724732d00b39de8bb0b451307482dc87bddcd74"},
|
9761 |
+
{file = "yarl-1.18.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:13aaf2bdbc8c86ddce48626b15f4987f22e80d898818d735b20bd58f17292ee8"},
|
9762 |
+
{file = "yarl-1.18.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dd21c0128e301851de51bc607b0a6da50e82dc34e9601f4b508d08cc89ee7929"},
|
9763 |
+
{file = "yarl-1.18.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:205de377bd23365cd85562c9c6c33844050a93661640fda38e0567d2826b50df"},
|
9764 |
+
{file = "yarl-1.18.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ed69af4fe2a0949b1ea1d012bf065c77b4c7822bad4737f17807af2adb15a73c"},
|
9765 |
+
{file = "yarl-1.18.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8e1c18890091aa3cc8a77967943476b729dc2016f4cfe11e45d89b12519d4a93"},
|
9766 |
+
{file = "yarl-1.18.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91b8fb9427e33f83ca2ba9501221ffaac1ecf0407f758c4d2f283c523da185ee"},
|
9767 |
+
{file = "yarl-1.18.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:536a7a8a53b75b2e98ff96edb2dfb91a26b81c4fed82782035767db5a465be46"},
|
9768 |
+
{file = "yarl-1.18.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:a64619a9c47c25582190af38e9eb382279ad42e1f06034f14d794670796016c0"},
|
9769 |
+
{file = "yarl-1.18.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:c73a6bbc97ba1b5a0c3c992ae93d721c395bdbb120492759b94cc1ac71bc6350"},
|
9770 |
+
{file = "yarl-1.18.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:a173401d7821a2a81c7b47d4e7d5c4021375a1441af0c58611c1957445055056"},
|
9771 |
+
{file = "yarl-1.18.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:7520e799b1f84e095cce919bd6c23c9d49472deeef25fe1ef960b04cca51c3fc"},
|
9772 |
+
{file = "yarl-1.18.0-cp311-cp311-win32.whl", hash = "sha256:c4cb992d8090d5ae5f7afa6754d7211c578be0c45f54d3d94f7781c495d56716"},
|
9773 |
+
{file = "yarl-1.18.0-cp311-cp311-win_amd64.whl", hash = "sha256:52c136f348605974c9b1c878addd6b7a60e3bf2245833e370862009b86fa4689"},
|
9774 |
+
{file = "yarl-1.18.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:1ece25e2251c28bab737bdf0519c88189b3dd9492dc086a1d77336d940c28ced"},
|
9775 |
+
{file = "yarl-1.18.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:454902dc1830d935c90b5b53c863ba2a98dcde0fbaa31ca2ed1ad33b2a7171c6"},
|
9776 |
+
{file = "yarl-1.18.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:01be8688fc211dc237e628fcc209dda412d35de7642453059a0553747018d075"},
|
9777 |
+
{file = "yarl-1.18.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4d26f1fa9fa2167bb238f6f4b20218eb4e88dd3ef21bb8f97439fa6b5313e30d"},
|
9778 |
+
{file = "yarl-1.18.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b234a4a9248a9f000b7a5dfe84b8cb6210ee5120ae70eb72a4dcbdb4c528f72f"},
|
9779 |
+
{file = "yarl-1.18.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fe94d1de77c4cd8caff1bd5480e22342dbd54c93929f5943495d9c1e8abe9f42"},
|
9780 |
+
{file = "yarl-1.18.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9b4c90c5363c6b0a54188122b61edb919c2cd1119684999d08cd5e538813a28e"},
|
9781 |
+
{file = "yarl-1.18.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:49a98ecadc5a241c9ba06de08127ee4796e1009555efd791bac514207862b43d"},
|
9782 |
+
{file = "yarl-1.18.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:9106025c7f261f9f5144f9aa7681d43867eed06349a7cfb297a1bc804de2f0d1"},
|
9783 |
+
{file = "yarl-1.18.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:f275ede6199d0f1ed4ea5d55a7b7573ccd40d97aee7808559e1298fe6efc8dbd"},
|
9784 |
+
{file = "yarl-1.18.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:f7edeb1dcc7f50a2c8e08b9dc13a413903b7817e72273f00878cb70e766bdb3b"},
|
9785 |
+
{file = "yarl-1.18.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:c083f6dd6951b86e484ebfc9c3524b49bcaa9c420cb4b2a78ef9f7a512bfcc85"},
|
9786 |
+
{file = "yarl-1.18.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:80741ec5b471fbdfb997821b2842c59660a1c930ceb42f8a84ba8ca0f25a66aa"},
|
9787 |
+
{file = "yarl-1.18.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:b1a3297b9cad594e1ff0c040d2881d7d3a74124a3c73e00c3c71526a1234a9f7"},
|
9788 |
+
{file = "yarl-1.18.0-cp312-cp312-win32.whl", hash = "sha256:cd6ab7d6776c186f544f893b45ee0c883542b35e8a493db74665d2e594d3ca75"},
|
9789 |
+
{file = "yarl-1.18.0-cp312-cp312-win_amd64.whl", hash = "sha256:039c299a0864d1f43c3e31570045635034ea7021db41bf4842693a72aca8df3a"},
|
9790 |
+
{file = "yarl-1.18.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:6fb64dd45453225f57d82c4764818d7a205ee31ce193e9f0086e493916bd4f72"},
|
9791 |
+
{file = "yarl-1.18.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:3adaaf9c6b1b4fc258584f4443f24d775a2086aee82d1387e48a8b4f3d6aecf6"},
|
9792 |
+
{file = "yarl-1.18.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:da206d1ec78438a563c5429ab808a2b23ad7bc025c8adbf08540dde202be37d5"},
|
9793 |
+
{file = "yarl-1.18.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:576d258b21c1db4c6449b1c572c75d03f16a482eb380be8003682bdbe7db2f28"},
|
9794 |
+
{file = "yarl-1.18.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c60e547c0a375c4bfcdd60eef82e7e0e8698bf84c239d715f5c1278a73050393"},
|
9795 |
+
{file = "yarl-1.18.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e3818eabaefb90adeb5e0f62f047310079d426387991106d4fbf3519eec7d90a"},
|
9796 |
+
{file = "yarl-1.18.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a5f72421246c21af6a92fbc8c13b6d4c5427dfd949049b937c3b731f2f9076bd"},
|
9797 |
+
{file = "yarl-1.18.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7fa7d37f2ada0f42e0723632993ed422f2a679af0e200874d9d861720a54f53e"},
|
9798 |
+
{file = "yarl-1.18.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:42ba84e2ac26a3f252715f8ec17e6fdc0cbf95b9617c5367579fafcd7fba50eb"},
|
9799 |
+
{file = "yarl-1.18.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:6a49ad0102c0f0ba839628d0bf45973c86ce7b590cdedf7540d5b1833ddc6f00"},
|
9800 |
+
{file = "yarl-1.18.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:96404e8d5e1bbe36bdaa84ef89dc36f0e75939e060ca5cd45451aba01db02902"},
|
9801 |
+
{file = "yarl-1.18.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:a0509475d714df8f6d498935b3f307cd122c4ca76f7d426c7e1bb791bcd87eda"},
|
9802 |
+
{file = "yarl-1.18.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:1ff116f0285b5c8b3b9a2680aeca29a858b3b9e0402fc79fd850b32c2bcb9f8b"},
|
9803 |
+
{file = "yarl-1.18.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e2580c1d7e66e6d29d6e11855e3b1c6381971e0edd9a5066e6c14d79bc8967af"},
|
9804 |
+
{file = "yarl-1.18.0-cp313-cp313-win32.whl", hash = "sha256:14408cc4d34e202caba7b5ac9cc84700e3421a9e2d1b157d744d101b061a4a88"},
|
9805 |
+
{file = "yarl-1.18.0-cp313-cp313-win_amd64.whl", hash = "sha256:1db1537e9cb846eb0ff206eac667f627794be8b71368c1ab3207ec7b6f8c5afc"},
|
9806 |
+
{file = "yarl-1.18.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:fa2c9cb607e0f660d48c54a63de7a9b36fef62f6b8bd50ff592ce1137e73ac7d"},
|
9807 |
+
{file = "yarl-1.18.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c0f4808644baf0a434a3442df5e0bedf8d05208f0719cedcd499e168b23bfdc4"},
|
9808 |
+
{file = "yarl-1.18.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7db9584235895a1dffca17e1c634b13870852094f6389b68dcc6338086aa7b08"},
|
9809 |
+
{file = "yarl-1.18.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:309f8d27d6f93ceeeb80aa6980e883aa57895270f7f41842b92247e65d7aeddf"},
|
9810 |
+
{file = "yarl-1.18.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:609ffd44fed2ed88d9b4ef62ee860cf86446cf066333ad4ce4123505b819e581"},
|
9811 |
+
{file = "yarl-1.18.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f172b8b2c72a13a06ea49225a9c47079549036ad1b34afa12d5491b881f5b993"},
|
9812 |
+
{file = "yarl-1.18.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d89ae7de94631b60d468412c18290d358a9d805182373d804ec839978b120422"},
|
9813 |
+
{file = "yarl-1.18.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:466d31fd043ef9af822ee3f1df8fdff4e8c199a7f4012c2642006af240eade17"},
|
9814 |
+
{file = "yarl-1.18.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7609b8462351c4836b3edce4201acb6dd46187b207c589b30a87ffd1813b48dc"},
|
9815 |
+
{file = "yarl-1.18.0-cp39-cp39-musllinux_1_2_armv7l.whl", hash = "sha256:d9d4f5e471e8dc49b593a80766c2328257e405f943c56a3dc985c125732bc4cf"},
|
9816 |
+
{file = "yarl-1.18.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:67b336c15e564d76869c9a21316f90edf546809a5796a083b8f57c845056bc01"},
|
9817 |
+
{file = "yarl-1.18.0-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:b212452b80cae26cb767aa045b051740e464c5129b7bd739c58fbb7deb339e7b"},
|
9818 |
+
{file = "yarl-1.18.0-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:38b39b7b3e692b6c92b986b00137a3891eddb66311b229d1940dcbd4f025083c"},
|
9819 |
+
{file = "yarl-1.18.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:a7ee6884a8848792d58b854946b685521f41d8871afa65e0d4a774954e9c9e89"},
|
9820 |
+
{file = "yarl-1.18.0-cp39-cp39-win32.whl", hash = "sha256:b4095c5019bb889aa866bf12ed4c85c0daea5aafcb7c20d1519f02a1e738f07f"},
|
9821 |
+
{file = "yarl-1.18.0-cp39-cp39-win_amd64.whl", hash = "sha256:2d90f2e4d16a5b0915ee065218b435d2ef619dd228973b1b47d262a6f7cd8fa5"},
|
9822 |
+
{file = "yarl-1.18.0-py3-none-any.whl", hash = "sha256:dbf53db46f7cf176ee01d8d98c39381440776fcda13779d269a8ba664f69bec0"},
|
9823 |
+
{file = "yarl-1.18.0.tar.gz", hash = "sha256:20d95535e7d833889982bfe7cc321b7f63bf8879788fee982c76ae2b24cfb715"},
|
9824 |
]
|
9825 |
|
9826 |
[package.dependencies]
|
|
|
10036 |
[metadata]
|
10037 |
lock-version = "2.0"
|
10038 |
python-versions = ">=3.10,<3.13"
|
10039 |
+
content-hash = "4d6643be9ffc45d46c9a706380c0c6796d3ddef1d0acb74cdf7d074aeab9dbfa"
|
pyproject.toml
CHANGED
@@ -47,7 +47,7 @@ hanziconv = "0.3.2"
|
|
47 |
html-text = "0.6.2"
|
48 |
httpx = "0.27.0"
|
49 |
huggingface-hub = "^0.25.0"
|
50 |
-
infinity-sdk = "0.5.0.
|
51 |
infinity-emb = "^0.0.66"
|
52 |
itsdangerous = "2.1.2"
|
53 |
markdown = "3.6"
|
|
|
47 |
html-text = "0.6.2"
|
48 |
httpx = "0.27.0"
|
49 |
huggingface-hub = "^0.25.0"
|
50 |
+
infinity-sdk = "0.5.0.dev5"
|
51 |
infinity-emb = "^0.0.66"
|
52 |
itsdangerous = "2.1.2"
|
53 |
markdown = "3.6"
|
rag/utils/infinity_conn.py
CHANGED
@@ -7,6 +7,7 @@ import infinity
|
|
7 |
from infinity.common import ConflictType, InfinityException, SortType
|
8 |
from infinity.index import IndexInfo, IndexType
|
9 |
from infinity.connection_pool import ConnectionPool
|
|
|
10 |
from rag import settings
|
11 |
from rag.utils import singleton
|
12 |
import polars as pl
|
@@ -61,10 +62,13 @@ class InfinityConnection(DocStoreConnection):
|
|
61 |
try:
|
62 |
connPool = ConnectionPool(infinity_uri)
|
63 |
inf_conn = connPool.get_conn()
|
64 |
-
|
65 |
connPool.release_conn(inf_conn)
|
66 |
self.connPool = connPool
|
67 |
-
|
|
|
|
|
|
|
68 |
except Exception as e:
|
69 |
logging.warning(f"{str(e)}. Waiting Infinity {infinity_uri} to be healthy.")
|
70 |
time.sleep(5)
|
@@ -89,10 +93,9 @@ class InfinityConnection(DocStoreConnection):
|
|
89 |
inf_conn = self.connPool.get_conn()
|
90 |
res = inf_conn.show_current_node()
|
91 |
self.connPool.release_conn(inf_conn)
|
92 |
-
color = "green" if res.error_code == 0 else "red"
|
93 |
res2 = {
|
94 |
"type": "infinity",
|
95 |
-
"status":
|
96 |
"error": res.error_msg,
|
97 |
}
|
98 |
return res2
|
|
|
7 |
from infinity.common import ConflictType, InfinityException, SortType
|
8 |
from infinity.index import IndexInfo, IndexType
|
9 |
from infinity.connection_pool import ConnectionPool
|
10 |
+
from infinity.errors import ErrorCode
|
11 |
from rag import settings
|
12 |
from rag.utils import singleton
|
13 |
import polars as pl
|
|
|
62 |
try:
|
63 |
connPool = ConnectionPool(infinity_uri)
|
64 |
inf_conn = connPool.get_conn()
|
65 |
+
res = inf_conn.show_current_node()
|
66 |
connPool.release_conn(inf_conn)
|
67 |
self.connPool = connPool
|
68 |
+
if res.error_code == ErrorCode.OK and res.server_status=="started":
|
69 |
+
break
|
70 |
+
logging.warn(f"Infinity status: {res.server_status}. Waiting Infinity {infinity_uri} to be healthy.")
|
71 |
+
time.sleep(5)
|
72 |
except Exception as e:
|
73 |
logging.warning(f"{str(e)}. Waiting Infinity {infinity_uri} to be healthy.")
|
74 |
time.sleep(5)
|
|
|
93 |
inf_conn = self.connPool.get_conn()
|
94 |
res = inf_conn.show_current_node()
|
95 |
self.connPool.release_conn(inf_conn)
|
|
|
96 |
res2 = {
|
97 |
"type": "infinity",
|
98 |
+
"status": "green" if res.error_code == 0 and res.server_status == "started" else "red",
|
99 |
"error": res.error_msg,
|
100 |
}
|
101 |
return res2
|
web/src/pages/user-setting/setting-system/index.tsx
CHANGED
@@ -24,7 +24,7 @@ enum Status {
|
|
24 |
}
|
25 |
|
26 |
const TitleMap = {
|
27 |
-
|
28 |
storage: 'Object Storage',
|
29 |
redis: 'Redis',
|
30 |
database: 'Database',
|
@@ -33,7 +33,7 @@ const TitleMap = {
|
|
33 |
|
34 |
const IconMap = {
|
35 |
es: 'es',
|
36 |
-
|
37 |
redis: 'redis',
|
38 |
storage: 'minio',
|
39 |
database: 'database',
|
|
|
24 |
}
|
25 |
|
26 |
const TitleMap = {
|
27 |
+
doc_engine: 'Doc Engine',
|
28 |
storage: 'Object Storage',
|
29 |
redis: 'Redis',
|
30 |
database: 'Database',
|
|
|
33 |
|
34 |
const IconMap = {
|
35 |
es: 'es',
|
36 |
+
doc_engine: 'storage',
|
37 |
redis: 'redis',
|
38 |
storage: 'minio',
|
39 |
database: 'database',
|