Add doc for dev image (#2641)
Browse filesAdd doc for dev image
### Type of change
- [x] Documentation Update
---------
Co-authored-by: writinwaters <[email protected]>
- Dockerfile +97 -14
- docker/.env +1 -1
- docs/guides/develop/build_docker_image.md +43 -8
- docs/guides/develop/launch_ragflow_from_source.md +14 -2
- download_deps.py +24 -0
- download_deps.sh +0 -38
- poetry.lock +288 -278
- pyproject.toml +2 -2
Dockerfile
CHANGED
@@ -1,23 +1,106 @@
|
|
1 |
-
|
2 |
-
|
|
|
|
|
|
|
3 |
|
4 |
WORKDIR /ragflow
|
5 |
|
6 |
-
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
|
9 |
-
|
10 |
-
|
11 |
-
ADD ./deepdoc ./deepdoc
|
12 |
-
ADD ./rag ./rag
|
13 |
-
ADD ./agent ./agent
|
14 |
-
ADD ./graphrag ./graphrag
|
15 |
|
16 |
ENV PYTHONPATH=/ragflow/
|
17 |
-
ENV HF_ENDPOINT=https://hf-mirror.com
|
18 |
|
19 |
-
|
20 |
-
ADD docker/.env ./
|
21 |
RUN chmod +x ./entrypoint.sh
|
22 |
|
23 |
-
ENTRYPOINT ["./entrypoint.sh"]
|
|
|
1 |
+
# base stage
|
2 |
+
FROM ubuntu:24.04 AS base
|
3 |
+
USER root
|
4 |
+
|
5 |
+
ENV LIGHTEN=0
|
6 |
|
7 |
WORKDIR /ragflow
|
8 |
|
9 |
+
RUN rm -f /etc/apt/apt.conf.d/docker-clean \
|
10 |
+
&& echo 'Binary::apt::APT::Keep-Downloaded-Packages "true";' > /etc/apt/apt.conf.d/keep-cache
|
11 |
+
|
12 |
+
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
|
13 |
+
apt update && apt-get --no-install-recommends install -y ca-certificates
|
14 |
+
|
15 |
+
# if you located in China, you can use tsinghua mirror to speed up apt
|
16 |
+
RUN sed -i 's|http://archive.ubuntu.com|https://mirrors.tuna.tsinghua.edu.cn|g' /etc/apt/sources.list.d/ubuntu.sources
|
17 |
+
|
18 |
+
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
|
19 |
+
apt update && apt install -y curl libpython3-dev nginx libglib2.0-0 libglx-mesa0 \
|
20 |
+
&& rm -rf /var/lib/apt/lists/* \
|
21 |
+
&& curl -sSL https://install.python-poetry.org | python3 -
|
22 |
+
|
23 |
+
ENV PYTHONDONTWRITEBYTECODE=1 LD_LIBRARY_PATH=usr/lib/x86_64-linux-gnu/openmpi/lib:$LD_LIBRARY_PATH
|
24 |
+
|
25 |
+
# Configure Poetry
|
26 |
+
ENV POETRY_NO_INTERACTION=1
|
27 |
+
ENV POETRY_VIRTUALENVS_IN_PROJECT=true
|
28 |
+
ENV POETRY_VIRTUALENVS_CREATE=true
|
29 |
+
ENV POETRY_REQUESTS_TIMEOUT=15
|
30 |
+
|
31 |
+
# builder stage
|
32 |
+
FROM base AS builder
|
33 |
+
USER root
|
34 |
+
|
35 |
+
WORKDIR /ragflow
|
36 |
+
|
37 |
+
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
|
38 |
+
apt update && apt install -y nodejs npm cargo && \
|
39 |
+
rm -rf /var/lib/apt/lists/*
|
40 |
+
|
41 |
+
COPY web web
|
42 |
+
RUN cd web && npm i --force && npm run build
|
43 |
+
|
44 |
+
# install dependencies from poetry.lock file
|
45 |
+
COPY pyproject.toml poetry.toml poetry.lock ./
|
46 |
+
|
47 |
+
RUN --mount=type=cache,target=/root/.cache/pypoetry,sharing=locked \
|
48 |
+
if [ "$LIGHTEN" -eq 0 ]; then \
|
49 |
+
/root/.local/bin/poetry install --sync --no-cache --no-root --with=full; \
|
50 |
+
else \
|
51 |
+
/root/.local/bin/poetry install --sync --no-cache --no-root; \
|
52 |
+
fi
|
53 |
+
|
54 |
+
# production stage
|
55 |
+
FROM base AS production
|
56 |
+
USER root
|
57 |
+
|
58 |
+
WORKDIR /ragflow
|
59 |
+
|
60 |
+
# Install python packages' dependencies
|
61 |
+
# cv2 requires libGL.so.1
|
62 |
+
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
|
63 |
+
apt update && apt install -y --no-install-recommends nginx libgl1 vim less && \
|
64 |
+
rm -rf /var/lib/apt/lists/*
|
65 |
+
|
66 |
+
COPY web web
|
67 |
+
COPY api api
|
68 |
+
COPY conf conf
|
69 |
+
COPY deepdoc deepdoc
|
70 |
+
COPY rag rag
|
71 |
+
COPY agent agent
|
72 |
+
COPY graphrag graphrag
|
73 |
+
COPY pyproject.toml poetry.toml poetry.lock ./
|
74 |
+
|
75 |
+
# Copy models downloaded via download_deps.py
|
76 |
+
RUN mkdir -p /ragflow/rag/res/deepdoc /root/.ragflow
|
77 |
+
RUN --mount=type=bind,source=huggingface.io,target=/huggingface.io \
|
78 |
+
tar --exclude='.*' -cf - \
|
79 |
+
/huggingface.io/InfiniFlow/text_concat_xgb_v1.0 \
|
80 |
+
/huggingface.io/InfiniFlow/deepdoc \
|
81 |
+
| tar -xf - --strip-components=3 -C /ragflow/rag/res/deepdoc
|
82 |
+
RUN --mount=type=bind,source=huggingface.io,target=/huggingface.io \
|
83 |
+
tar -cf - \
|
84 |
+
/huggingface.io/BAAI/bge-large-zh-v1.5 \
|
85 |
+
/huggingface.io/BAAI/bge-reranker-v2-m3 \
|
86 |
+
/huggingface.io/maidalun1020/bce-embedding-base_v1 \
|
87 |
+
/huggingface.io/maidalun1020/bce-reranker-base_v1 \
|
88 |
+
| tar -xf - --strip-components=2 -C /root/.ragflow
|
89 |
+
|
90 |
+
# Copy compiled web pages
|
91 |
+
COPY --from=builder /ragflow/web/dist /ragflow/web/dist
|
92 |
+
|
93 |
+
# Copy Python environment and packages
|
94 |
+
ENV VIRTUAL_ENV=/ragflow/.venv
|
95 |
+
COPY --from=builder ${VIRTUAL_ENV} ${VIRTUAL_ENV}
|
96 |
+
ENV PATH="${VIRTUAL_ENV}/bin:/root/.local/bin:${PATH}"
|
97 |
|
98 |
+
# Download nltk data
|
99 |
+
RUN python3 -m nltk.downloader wordnet punkt punkt_tab
|
|
|
|
|
|
|
|
|
100 |
|
101 |
ENV PYTHONPATH=/ragflow/
|
|
|
102 |
|
103 |
+
COPY docker/entrypoint.sh ./entrypoint.sh
|
|
|
104 |
RUN chmod +x ./entrypoint.sh
|
105 |
|
106 |
+
ENTRYPOINT ["./entrypoint.sh"]
|
docker/.env
CHANGED
@@ -33,7 +33,7 @@ REDIS_PASSWORD=infini_rag_flow
|
|
33 |
|
34 |
SVR_HTTP_PORT=9380
|
35 |
|
36 |
-
RAGFLOW_VERSION=dev
|
37 |
|
38 |
TIMEZONE='Asia/Shanghai'
|
39 |
|
|
|
33 |
|
34 |
SVR_HTTP_PORT=9380
|
35 |
|
36 |
+
RAGFLOW_VERSION=dev-slim
|
37 |
|
38 |
TIMEZONE='Asia/Shanghai'
|
39 |
|
docs/guides/develop/build_docker_image.md
CHANGED
@@ -36,17 +36,52 @@ cd ragflow
|
|
36 |
|
37 |
### Build the Docker Image
|
38 |
|
39 |
-
Navigate to the `ragflow` directory where the Dockerfile and other necessary files are located. Now you can build the Docker image using the provided Dockerfile. The command below specifies which Dockerfile to use and
|
40 |
|
41 |
-
#### Build image `ragflow:dev-slim`
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
```bash
|
43 |
-
|
|
|
|
|
|
|
44 |
```
|
45 |
-
This image's size is about 1GB. It relies external LLM services since it doesn't contain embedding models.
|
46 |
|
47 |
-
|
48 |
```bash
|
49 |
-
|
50 |
-
|
|
|
|
|
51 |
```
|
52 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
|
37 |
### Build the Docker Image
|
38 |
|
39 |
+
Navigate to the `ragflow` directory where the Dockerfile and other necessary files are located. Now you can build the Docker image using the provided Dockerfile. The command below specifies which Dockerfile to use and tags the image with a name for reference purpose.
|
40 |
|
41 |
+
#### Build and push multi-arch image `infiniflow/ragflow:dev-slim`
|
42 |
+
|
43 |
+
On a `linux/amd64` host:
|
44 |
+
```bash
|
45 |
+
docker build -f Dockerfile.slim -t infiniflow/ragflow:dev-slim-amd64 .
|
46 |
+
docker push infiniflow/ragflow:dev-slim-amd64
|
47 |
+
```
|
48 |
+
|
49 |
+
On a `linux/arm64` host:
|
50 |
+
```bash
|
51 |
+
docker build -f Dockerfile.slim -t infiniflow/ragflow:dev-slim-arm64 .
|
52 |
+
docker push infiniflow/ragflow:dev-slim-arm64
|
53 |
+
```
|
54 |
+
|
55 |
+
On a Linux host:
|
56 |
+
```bash
|
57 |
+
docker manifest create infiniflow/ragflow:dev-slim --amend infiniflow/ragflow:dev-slim-amd64 --amend infiniflow/ragflow:dev-slim-arm64
|
58 |
+
docker manifest push infiniflow/ragflow:dev-slim
|
59 |
+
```
|
60 |
+
|
61 |
+
This image is approximately 1 GB in size and relies on external LLM services, as it does not include deepdoc, embedding, or chat models.
|
62 |
+
|
63 |
+
#### Build and push multi-arch image `infiniflow/ragflow:dev`
|
64 |
+
|
65 |
+
On a `linux/amd64` host:
|
66 |
```bash
|
67 |
+
pip3 install huggingface-hub
|
68 |
+
python3 download_deps.py
|
69 |
+
docker build -f Dockerfile -t infiniflow/ragflow:dev-amd64 .
|
70 |
+
docker push infiniflow/ragflow:dev-amd64
|
71 |
```
|
|
|
72 |
|
73 |
+
On a `linux/arm64` host:
|
74 |
```bash
|
75 |
+
pip3 install huggingface-hub
|
76 |
+
python3 download_deps.py
|
77 |
+
docker build -f Dockerfile -t infiniflow/ragflow:dev-arm64 .
|
78 |
+
docker push infiniflow/ragflow:dev-arm64
|
79 |
```
|
80 |
+
|
81 |
+
On any linux host:
|
82 |
+
```bash
|
83 |
+
docker manifest create infiniflow/ragflow:dev --amend infiniflow/ragflow:dev-amd64 --amend infiniflow/ragflow:dev-arm64
|
84 |
+
docker manifest push infiniflow/ragflow:dev
|
85 |
+
```
|
86 |
+
|
87 |
+
This image's size is approximately 9 GB in size and can reference via either local CPU/GPU or an external LLM, as it includes deepdoc, embedding, and chat models.
|
docs/guides/develop/launch_ragflow_from_source.md
CHANGED
@@ -118,7 +118,7 @@ docker compose -f docker/docker-compose-base.yml up -d
|
|
118 |
|
119 |
```bash
|
120 |
npm run dev
|
121 |
-
```
|
122 |
|
123 |
*The following message appears, showing the IP address and port number of your frontend service:*
|
124 |
|
@@ -126,4 +126,16 @@ docker compose -f docker/docker-compose-base.yml up -d
|
|
126 |
|
127 |
### Access the RAGFlow service
|
128 |
|
129 |
-
In your web browser, enter `http://127.0.0.1:<PORT>/`, ensuring the port number matches that shown in the screenshot above.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
|
119 |
```bash
|
120 |
npm run dev
|
121 |
+
```
|
122 |
|
123 |
*The following message appears, showing the IP address and port number of your frontend service:*
|
124 |
|
|
|
126 |
|
127 |
### Access the RAGFlow service
|
128 |
|
129 |
+
In your web browser, enter `http://127.0.0.1:<PORT>/`, ensuring the port number matches that shown in the screenshot above.
|
130 |
+
|
131 |
+
### Stop the RAGFlow service when the development is done
|
132 |
+
|
133 |
+
1. Stop the RAGFlow frontend service:
|
134 |
+
```bash
|
135 |
+
pkill npm
|
136 |
+
```
|
137 |
+
|
138 |
+
2. Stop the RAGFlow backend service:
|
139 |
+
```bash
|
140 |
+
pkill -f "docker/entrypoint.sh"
|
141 |
+
```
|
download_deps.py
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#!/usr/bin/env python3
|
2 |
+
|
3 |
+
from huggingface_hub import snapshot_download
|
4 |
+
import os
|
5 |
+
|
6 |
+
repos = [
|
7 |
+
"InfiniFlow/text_concat_xgb_v1.0",
|
8 |
+
"InfiniFlow/deepdoc",
|
9 |
+
"BAAI/bge-large-zh-v1.5",
|
10 |
+
"BAAI/bge-reranker-v2-m3",
|
11 |
+
"maidalun1020/bce-embedding-base_v1",
|
12 |
+
"maidalun1020/bce-reranker-base_v1",
|
13 |
+
]
|
14 |
+
|
15 |
+
|
16 |
+
def download_model(repo_id):
|
17 |
+
local_dir = os.path.join("huggingface.io", repo_id)
|
18 |
+
os.makedirs(local_dir, exist_ok=True)
|
19 |
+
snapshot_download(repo_id=repo_id, local_dir=local_dir)
|
20 |
+
|
21 |
+
|
22 |
+
if __name__ == "__main__":
|
23 |
+
for repo_id in repos:
|
24 |
+
download_model(repo_id)
|
download_deps.sh
DELETED
@@ -1,38 +0,0 @@
|
|
1 |
-
#!/usr/bin/env bash
|
2 |
-
|
3 |
-
download()
|
4 |
-
{
|
5 |
-
echo "download $1"
|
6 |
-
# https://stackoverflow.com/questions/3162385/how-to-split-a-string-in-shell-and-get-the-last-field
|
7 |
-
fn=${1##*/}
|
8 |
-
if [ ! -f $fn ] ; then
|
9 |
-
wget --no-check-certificate $1
|
10 |
-
fi
|
11 |
-
}
|
12 |
-
|
13 |
-
# https://stackoverflow.com/questions/24628076/convert-multiline-string-to-array
|
14 |
-
names="https://huggingface.co/InfiniFlow/deepdoc/resolve/main/det.onnx
|
15 |
-
https://huggingface.co/InfiniFlow/deepdoc/resolve/main/layout.laws.onnx
|
16 |
-
https://huggingface.co/InfiniFlow/deepdoc/resolve/main/layout.manual.onnx
|
17 |
-
https://huggingface.co/InfiniFlow/deepdoc/resolve/main/layout.onnx
|
18 |
-
https://huggingface.co/InfiniFlow/deepdoc/resolve/main/layout.paper.onnx
|
19 |
-
https://huggingface.co/InfiniFlow/deepdoc/resolve/main/ocr.res
|
20 |
-
https://huggingface.co/InfiniFlow/deepdoc/resolve/main/rec.onnx
|
21 |
-
https://huggingface.co/InfiniFlow/deepdoc/resolve/main/tsr.onnx
|
22 |
-
https://huggingface.co/InfiniFlow/text_concat_xgb_v1.0/resolve/main/updown_concat_xgb.model"
|
23 |
-
|
24 |
-
SAVEIFS=$IFS # Save current IFS (Internal Field Separator)
|
25 |
-
IFS=$'\n' # Change IFS to newline char
|
26 |
-
names=($names) # split the `names` string into an array by the same name
|
27 |
-
IFS=$SAVEIFS # Restore original IFS
|
28 |
-
|
29 |
-
find . -size 0 | xargs rm -f
|
30 |
-
# https://stackoverflow.com/questions/15466808/shell-iterate-over-array
|
31 |
-
for ((i=0; i<${#names[@]}; i+=1)); do
|
32 |
-
url="${names[$i]}"
|
33 |
-
download $url
|
34 |
-
if [ $? != 0 ]; then
|
35 |
-
exit -1
|
36 |
-
fi
|
37 |
-
done
|
38 |
-
find . -size 0 | xargs rm -f
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
poetry.lock
CHANGED
@@ -44,102 +44,102 @@ files = [
|
|
44 |
|
45 |
[[package]]
|
46 |
name = "aiohttp"
|
47 |
-
version = "3.10.
|
48 |
description = "Async http client/server framework (asyncio)"
|
49 |
optional = false
|
50 |
python-versions = ">=3.8"
|
51 |
files = [
|
52 |
-
{file = "aiohttp-3.10.
|
53 |
-
{file = "aiohttp-3.10.
|
54 |
-
{file = "aiohttp-3.10.
|
55 |
-
{file = "aiohttp-3.10.
|
56 |
-
{file = "aiohttp-3.10.
|
57 |
-
{file = "aiohttp-3.10.
|
58 |
-
{file = "aiohttp-3.10.
|
59 |
-
{file = "aiohttp-3.10.
|
60 |
-
{file = "aiohttp-3.10.
|
61 |
-
{file = "aiohttp-3.10.
|
62 |
-
{file = "aiohttp-3.10.
|
63 |
-
{file = "aiohttp-3.10.
|
64 |
-
{file = "aiohttp-3.10.
|
65 |
-
{file = "aiohttp-3.10.
|
66 |
-
{file = "aiohttp-3.10.
|
67 |
-
{file = "aiohttp-3.10.
|
68 |
-
{file = "aiohttp-3.10.
|
69 |
-
{file = "aiohttp-3.10.
|
70 |
-
{file = "aiohttp-3.10.
|
71 |
-
{file = "aiohttp-3.10.
|
72 |
-
{file = "aiohttp-3.10.
|
73 |
-
{file = "aiohttp-3.10.
|
74 |
-
{file = "aiohttp-3.10.
|
75 |
-
{file = "aiohttp-3.10.
|
76 |
-
{file = "aiohttp-3.10.
|
77 |
-
{file = "aiohttp-3.10.
|
78 |
-
{file = "aiohttp-3.10.
|
79 |
-
{file = "aiohttp-3.10.
|
80 |
-
{file = "aiohttp-3.10.
|
81 |
-
{file = "aiohttp-3.10.
|
82 |
-
{file = "aiohttp-3.10.
|
83 |
-
{file = "aiohttp-3.10.
|
84 |
-
{file = "aiohttp-3.10.
|
85 |
-
{file = "aiohttp-3.10.
|
86 |
-
{file = "aiohttp-3.10.
|
87 |
-
{file = "aiohttp-3.10.
|
88 |
-
{file = "aiohttp-3.10.
|
89 |
-
{file = "aiohttp-3.10.
|
90 |
-
{file = "aiohttp-3.10.
|
91 |
-
{file = "aiohttp-3.10.
|
92 |
-
{file = "aiohttp-3.10.
|
93 |
-
{file = "aiohttp-3.10.
|
94 |
-
{file = "aiohttp-3.10.
|
95 |
-
{file = "aiohttp-3.10.
|
96 |
-
{file = "aiohttp-3.10.
|
97 |
-
{file = "aiohttp-3.10.
|
98 |
-
{file = "aiohttp-3.10.
|
99 |
-
{file = "aiohttp-3.10.
|
100 |
-
{file = "aiohttp-3.10.
|
101 |
-
{file = "aiohttp-3.10.
|
102 |
-
{file = "aiohttp-3.10.
|
103 |
-
{file = "aiohttp-3.10.
|
104 |
-
{file = "aiohttp-3.10.
|
105 |
-
{file = "aiohttp-3.10.
|
106 |
-
{file = "aiohttp-3.10.
|
107 |
-
{file = "aiohttp-3.10.
|
108 |
-
{file = "aiohttp-3.10.
|
109 |
-
{file = "aiohttp-3.10.
|
110 |
-
{file = "aiohttp-3.10.
|
111 |
-
{file = "aiohttp-3.10.
|
112 |
-
{file = "aiohttp-3.10.
|
113 |
-
{file = "aiohttp-3.10.
|
114 |
-
{file = "aiohttp-3.10.
|
115 |
-
{file = "aiohttp-3.10.
|
116 |
-
{file = "aiohttp-3.10.
|
117 |
-
{file = "aiohttp-3.10.
|
118 |
-
{file = "aiohttp-3.10.
|
119 |
-
{file = "aiohttp-3.10.
|
120 |
-
{file = "aiohttp-3.10.
|
121 |
-
{file = "aiohttp-3.10.
|
122 |
-
{file = "aiohttp-3.10.
|
123 |
-
{file = "aiohttp-3.10.
|
124 |
-
{file = "aiohttp-3.10.
|
125 |
-
{file = "aiohttp-3.10.
|
126 |
-
{file = "aiohttp-3.10.
|
127 |
-
{file = "aiohttp-3.10.
|
128 |
-
{file = "aiohttp-3.10.
|
129 |
-
{file = "aiohttp-3.10.
|
130 |
-
{file = "aiohttp-3.10.
|
131 |
-
{file = "aiohttp-3.10.
|
132 |
-
{file = "aiohttp-3.10.
|
133 |
-
{file = "aiohttp-3.10.
|
134 |
-
{file = "aiohttp-3.10.
|
135 |
-
{file = "aiohttp-3.10.
|
136 |
-
{file = "aiohttp-3.10.
|
137 |
-
{file = "aiohttp-3.10.
|
138 |
-
{file = "aiohttp-3.10.
|
139 |
-
{file = "aiohttp-3.10.
|
140 |
-
{file = "aiohttp-3.10.
|
141 |
-
{file = "aiohttp-3.10.
|
142 |
-
{file = "aiohttp-3.10.
|
143 |
]
|
144 |
|
145 |
[package.dependencies]
|
@@ -191,13 +191,13 @@ files = [
|
|
191 |
|
192 |
[[package]]
|
193 |
name = "akshare"
|
194 |
-
version = "1.14.
|
195 |
description = "AKShare is an elegant and simple financial data interface library for Python, built for human beings!"
|
196 |
optional = false
|
197 |
python-versions = ">=3.8"
|
198 |
files = [
|
199 |
-
{file = "akshare-1.14.
|
200 |
-
{file = "akshare-1.14.
|
201 |
]
|
202 |
|
203 |
[package.dependencies]
|
@@ -2776,76 +2776,85 @@ protobuf = ">=3.20.2,<4.21.1 || >4.21.1,<4.21.2 || >4.21.2,<4.21.3 || >4.21.3,<4
|
|
2776 |
|
2777 |
[[package]]
|
2778 |
name = "grpcio"
|
2779 |
-
version = "1.66.
|
2780 |
description = "HTTP/2-based RPC framework"
|
2781 |
optional = false
|
2782 |
python-versions = ">=3.8"
|
2783 |
files = [
|
2784 |
-
{file = "grpcio-1.66.
|
2785 |
-
{file = "grpcio-1.66.
|
2786 |
-
{file = "grpcio-1.66.
|
2787 |
-
{file = "grpcio-1.66.
|
2788 |
-
{file = "grpcio-1.66.
|
2789 |
-
{file = "grpcio-1.66.
|
2790 |
-
{file = "grpcio-1.66.
|
2791 |
-
{file = "grpcio-1.66.
|
2792 |
-
{file = "grpcio-1.66.
|
2793 |
-
{file = "grpcio-1.66.
|
2794 |
-
{file = "grpcio-1.66.
|
2795 |
-
{file = "grpcio-1.66.
|
2796 |
-
{file = "grpcio-1.66.
|
2797 |
-
{file = "grpcio-1.66.
|
2798 |
-
{file = "grpcio-1.66.
|
2799 |
-
{file = "grpcio-1.66.
|
2800 |
-
{file = "grpcio-1.66.
|
2801 |
-
{file = "grpcio-1.66.
|
2802 |
-
{file = "grpcio-1.66.
|
2803 |
-
{file = "grpcio-1.66.
|
2804 |
-
{file = "grpcio-1.66.
|
2805 |
-
{file = "grpcio-1.66.
|
2806 |
-
{file = "grpcio-1.66.
|
2807 |
-
{file = "grpcio-1.66.
|
2808 |
-
{file = "grpcio-1.66.
|
2809 |
-
{file = "grpcio-1.66.
|
2810 |
-
{file = "grpcio-1.66.
|
2811 |
-
{file = "grpcio-1.66.
|
2812 |
-
{file = "grpcio-1.66.
|
2813 |
-
{file = "grpcio-1.66.
|
2814 |
-
{file = "grpcio-1.66.
|
2815 |
-
{file = "grpcio-1.66.
|
2816 |
-
{file = "grpcio-1.66.
|
2817 |
-
{file = "grpcio-1.66.
|
2818 |
-
{file = "grpcio-1.66.
|
2819 |
-
{file = "grpcio-1.66.
|
2820 |
-
{file = "grpcio-1.66.
|
2821 |
-
{file = "grpcio-1.66.
|
2822 |
-
{file = "grpcio-1.66.
|
2823 |
-
{file = "grpcio-1.66.
|
2824 |
-
{file = "grpcio-1.66.
|
2825 |
-
{file = "grpcio-1.66.
|
2826 |
-
{file = "grpcio-1.66.
|
2827 |
-
{file = "grpcio-1.66.
|
2828 |
-
{file = "grpcio-1.66.
|
2829 |
-
{file = "grpcio-1.66.
|
2830 |
-
|
2831 |
-
|
2832 |
-
|
2833 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2834 |
|
2835 |
[[package]]
|
2836 |
name = "grpcio-status"
|
2837 |
-
version = "1.66.
|
2838 |
description = "Status proto mapping for gRPC"
|
2839 |
optional = false
|
2840 |
python-versions = ">=3.8"
|
2841 |
files = [
|
2842 |
-
{file = "grpcio_status-1.66.
|
2843 |
-
{file = "grpcio_status-1.66.
|
2844 |
]
|
2845 |
|
2846 |
[package.dependencies]
|
2847 |
googleapis-common-protos = ">=1.5.5"
|
2848 |
-
grpcio = ">=1.66.
|
2849 |
protobuf = ">=5.26.1,<6.0dev"
|
2850 |
|
2851 |
[[package]]
|
@@ -4794,36 +4803,36 @@ reference = ["google-re2", "pillow"]
|
|
4794 |
|
4795 |
[[package]]
|
4796 |
name = "onnxruntime"
|
4797 |
-
version = "1.
|
4798 |
description = "ONNX Runtime is a runtime accelerator for Machine Learning models"
|
4799 |
optional = false
|
4800 |
python-versions = "*"
|
4801 |
files = [
|
4802 |
-
{file = "onnxruntime-1.
|
4803 |
-
{file = "onnxruntime-1.
|
4804 |
-
{file = "onnxruntime-1.
|
4805 |
-
{file = "onnxruntime-1.
|
4806 |
-
{file = "onnxruntime-1.
|
4807 |
-
{file = "onnxruntime-1.
|
4808 |
-
{file = "onnxruntime-1.
|
4809 |
-
{file = "onnxruntime-1.
|
4810 |
-
{file = "onnxruntime-1.
|
4811 |
-
{file = "onnxruntime-1.
|
4812 |
-
{file = "onnxruntime-1.
|
4813 |
-
{file = "onnxruntime-1.
|
4814 |
-
{file = "onnxruntime-1.
|
4815 |
-
{file = "onnxruntime-1.
|
4816 |
-
{file = "onnxruntime-1.
|
4817 |
-
{file = "onnxruntime-1.
|
4818 |
-
{file = "onnxruntime-1.
|
4819 |
-
{file = "onnxruntime-1.
|
4820 |
-
{file = "onnxruntime-1.
|
4821 |
-
{file = "onnxruntime-1.
|
4822 |
-
{file = "onnxruntime-1.
|
4823 |
-
{file = "onnxruntime-1.
|
4824 |
-
{file = "onnxruntime-1.
|
4825 |
-
{file = "onnxruntime-1.
|
4826 |
-
{file = "onnxruntime-1.
|
4827 |
]
|
4828 |
|
4829 |
[package.dependencies]
|
@@ -8391,15 +8400,17 @@ files = [
|
|
8391 |
h11 = ">=0.9.0,<1"
|
8392 |
|
8393 |
[[package]]
|
8394 |
-
name = "xgboost
|
8395 |
-
version = "
|
8396 |
description = "XGBoost Python Package"
|
8397 |
optional = false
|
8398 |
-
python-versions = ">=3.
|
8399 |
files = [
|
8400 |
-
{file = "
|
8401 |
-
{file = "
|
8402 |
-
{file = "
|
|
|
|
|
8403 |
]
|
8404 |
|
8405 |
[package.dependencies]
|
@@ -8409,9 +8420,8 @@ scipy = "*"
|
|
8409 |
[package.extras]
|
8410 |
dask = ["dask", "distributed", "pandas"]
|
8411 |
datatable = ["datatable"]
|
8412 |
-
pandas = ["pandas
|
8413 |
plotting = ["graphviz", "matplotlib"]
|
8414 |
-
pyspark = ["cloudpickle", "pyspark", "scikit-learn"]
|
8415 |
scikit-learn = ["scikit-learn"]
|
8416 |
|
8417 |
[[package]]
|
@@ -8589,103 +8599,103 @@ files = [
|
|
8589 |
|
8590 |
[[package]]
|
8591 |
name = "yarl"
|
8592 |
-
version = "1.13.
|
8593 |
description = "Yet another URL library"
|
8594 |
optional = false
|
8595 |
python-versions = ">=3.8"
|
8596 |
files = [
|
8597 |
-
{file = "yarl-1.13.
|
8598 |
-
{file = "yarl-1.13.
|
8599 |
-
{file = "yarl-1.13.
|
8600 |
-
{file = "yarl-1.13.
|
8601 |
-
{file = "yarl-1.13.
|
8602 |
-
{file = "yarl-1.13.
|
8603 |
-
{file = "yarl-1.13.
|
8604 |
-
{file = "yarl-1.13.
|
8605 |
-
{file = "yarl-1.13.
|
8606 |
-
{file = "yarl-1.13.
|
8607 |
-
{file = "yarl-1.13.
|
8608 |
-
{file = "yarl-1.13.
|
8609 |
-
{file = "yarl-1.13.
|
8610 |
-
{file = "yarl-1.13.
|
8611 |
-
{file = "yarl-1.13.
|
8612 |
-
{file = "yarl-1.13.
|
8613 |
-
{file = "yarl-1.13.
|
8614 |
-
{file = "yarl-1.13.
|
8615 |
-
{file = "yarl-1.13.
|
8616 |
-
{file = "yarl-1.13.
|
8617 |
-
{file = "yarl-1.13.
|
8618 |
-
{file = "yarl-1.13.
|
8619 |
-
{file = "yarl-1.13.
|
8620 |
-
{file = "yarl-1.13.
|
8621 |
-
{file = "yarl-1.13.
|
8622 |
-
{file = "yarl-1.13.
|
8623 |
-
{file = "yarl-1.13.
|
8624 |
-
{file = "yarl-1.13.
|
8625 |
-
{file = "yarl-1.13.
|
8626 |
-
{file = "yarl-1.13.
|
8627 |
-
{file = "yarl-1.13.
|
8628 |
-
{file = "yarl-1.13.
|
8629 |
-
{file = "yarl-1.13.
|
8630 |
-
{file = "yarl-1.13.
|
8631 |
-
{file = "yarl-1.13.
|
8632 |
-
{file = "yarl-1.13.
|
8633 |
-
{file = "yarl-1.13.
|
8634 |
-
{file = "yarl-1.13.
|
8635 |
-
{file = "yarl-1.13.
|
8636 |
-
{file = "yarl-1.13.
|
8637 |
-
{file = "yarl-1.13.
|
8638 |
-
{file = "yarl-1.13.
|
8639 |
-
{file = "yarl-1.13.
|
8640 |
-
{file = "yarl-1.13.
|
8641 |
-
{file = "yarl-1.13.
|
8642 |
-
{file = "yarl-1.13.
|
8643 |
-
{file = "yarl-1.13.
|
8644 |
-
{file = "yarl-1.13.
|
8645 |
-
{file = "yarl-1.13.
|
8646 |
-
{file = "yarl-1.13.
|
8647 |
-
{file = "yarl-1.13.
|
8648 |
-
{file = "yarl-1.13.
|
8649 |
-
{file = "yarl-1.13.
|
8650 |
-
{file = "yarl-1.13.
|
8651 |
-
{file = "yarl-1.13.
|
8652 |
-
{file = "yarl-1.13.
|
8653 |
-
{file = "yarl-1.13.
|
8654 |
-
{file = "yarl-1.13.
|
8655 |
-
{file = "yarl-1.13.
|
8656 |
-
{file = "yarl-1.13.
|
8657 |
-
{file = "yarl-1.13.
|
8658 |
-
{file = "yarl-1.13.
|
8659 |
-
{file = "yarl-1.13.
|
8660 |
-
{file = "yarl-1.13.
|
8661 |
-
{file = "yarl-1.13.
|
8662 |
-
{file = "yarl-1.13.
|
8663 |
-
{file = "yarl-1.13.
|
8664 |
-
{file = "yarl-1.13.
|
8665 |
-
{file = "yarl-1.13.
|
8666 |
-
{file = "yarl-1.13.
|
8667 |
-
{file = "yarl-1.13.
|
8668 |
-
{file = "yarl-1.13.
|
8669 |
-
{file = "yarl-1.13.
|
8670 |
-
{file = "yarl-1.13.
|
8671 |
-
{file = "yarl-1.13.
|
8672 |
-
{file = "yarl-1.13.
|
8673 |
-
{file = "yarl-1.13.
|
8674 |
-
{file = "yarl-1.13.
|
8675 |
-
{file = "yarl-1.13.
|
8676 |
-
{file = "yarl-1.13.
|
8677 |
-
{file = "yarl-1.13.
|
8678 |
-
{file = "yarl-1.13.
|
8679 |
-
{file = "yarl-1.13.
|
8680 |
-
{file = "yarl-1.13.
|
8681 |
-
{file = "yarl-1.13.
|
8682 |
-
{file = "yarl-1.13.
|
8683 |
-
{file = "yarl-1.13.
|
8684 |
-
{file = "yarl-1.13.
|
8685 |
-
{file = "yarl-1.13.
|
8686 |
-
{file = "yarl-1.13.
|
8687 |
-
{file = "yarl-1.13.
|
8688 |
-
{file = "yarl-1.13.
|
8689 |
]
|
8690 |
|
8691 |
[package.dependencies]
|
@@ -8769,4 +8779,4 @@ files = [
|
|
8769 |
[metadata]
|
8770 |
lock-version = "2.0"
|
8771 |
python-versions = ">=3.12,<3.13"
|
8772 |
-
content-hash = "
|
|
|
44 |
|
45 |
[[package]]
|
46 |
name = "aiohttp"
|
47 |
+
version = "3.10.8"
|
48 |
description = "Async http client/server framework (asyncio)"
|
49 |
optional = false
|
50 |
python-versions = ">=3.8"
|
51 |
files = [
|
52 |
+
{file = "aiohttp-3.10.8-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a1ba7bc139592339ddeb62c06486d0fa0f4ca61216e14137a40d626c81faf10c"},
|
53 |
+
{file = "aiohttp-3.10.8-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:85e4d7bd05d18e4b348441e7584c681eff646e3bf38f68b2626807f3add21aa2"},
|
54 |
+
{file = "aiohttp-3.10.8-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:69de056022e7abf69cb9fec795515973cc3eeaff51e3ea8d72a77aa933a91c52"},
|
55 |
+
{file = "aiohttp-3.10.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ee3587506898d4a404b33bd19689286ccf226c3d44d7a73670c8498cd688e42c"},
|
56 |
+
{file = "aiohttp-3.10.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fe285a697c851734285369614443451462ce78aac2b77db23567507484b1dc6f"},
|
57 |
+
{file = "aiohttp-3.10.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:10c7932337285a6bfa3a5fe1fd4da90b66ebfd9d0cbd1544402e1202eb9a8c3e"},
|
58 |
+
{file = "aiohttp-3.10.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cd9716ef0224fe0d0336997eb242f40619f9f8c5c57e66b525a1ebf9f1d8cebe"},
|
59 |
+
{file = "aiohttp-3.10.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ceacea31f8a55cdba02bc72c93eb2e1b77160e91f8abd605969c168502fd71eb"},
|
60 |
+
{file = "aiohttp-3.10.8-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:9721554bfa9e15f6e462da304374c2f1baede3cb06008c36c47fa37ea32f1dc4"},
|
61 |
+
{file = "aiohttp-3.10.8-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:22cdeb684d8552490dd2697a5138c4ecb46f844892df437aaf94f7eea99af879"},
|
62 |
+
{file = "aiohttp-3.10.8-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:e56bb7e31c4bc79956b866163170bc89fd619e0581ce813330d4ea46921a4881"},
|
63 |
+
{file = "aiohttp-3.10.8-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:3a95d2686bc4794d66bd8de654e41b5339fab542b2bca9238aa63ed5f4f2ce82"},
|
64 |
+
{file = "aiohttp-3.10.8-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:d82404a0e7b10e0d7f022cf44031b78af8a4f99bd01561ac68f7c24772fed021"},
|
65 |
+
{file = "aiohttp-3.10.8-cp310-cp310-win32.whl", hash = "sha256:4e10b04542d27e21538e670156e88766543692a0a883f243ba8fad9ddea82e53"},
|
66 |
+
{file = "aiohttp-3.10.8-cp310-cp310-win_amd64.whl", hash = "sha256:680dbcff5adc7f696ccf8bf671d38366a1f620b5616a1d333d0cb33956065395"},
|
67 |
+
{file = "aiohttp-3.10.8-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:33a68011a38020ed4ff41ae0dbf4a96a202562ecf2024bdd8f65385f1d07f6ef"},
|
68 |
+
{file = "aiohttp-3.10.8-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6c7efa6616a95e3bd73b8a69691012d2ef1f95f9ea0189e42f338fae080c2fc6"},
|
69 |
+
{file = "aiohttp-3.10.8-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ddb9b9764cfb4459acf01c02d2a59d3e5066b06a846a364fd1749aa168efa2be"},
|
70 |
+
{file = "aiohttp-3.10.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3c7f270f4ca92760f98a42c45a58674fff488e23b144ec80b1cc6fa2effed377"},
|
71 |
+
{file = "aiohttp-3.10.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6984dda9d79064361ab58d03f6c1e793ea845c6cfa89ffe1a7b9bb400dfd56bd"},
|
72 |
+
{file = "aiohttp-3.10.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3f6d47e392c27206701565c8df4cac6ebed28fdf6dcaea5b1eea7a4631d8e6db"},
|
73 |
+
{file = "aiohttp-3.10.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a72f89aea712c619b2ca32c6f4335c77125ede27530ad9705f4f349357833695"},
|
74 |
+
{file = "aiohttp-3.10.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c36074b26f3263879ba8e4dbd33db2b79874a3392f403a70b772701363148b9f"},
|
75 |
+
{file = "aiohttp-3.10.8-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:e32148b4a745e70a255a1d44b5664de1f2e24fcefb98a75b60c83b9e260ddb5b"},
|
76 |
+
{file = "aiohttp-3.10.8-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5aa1a073514cf59c81ad49a4ed9b5d72b2433638cd53160fd2f3a9cfa94718db"},
|
77 |
+
{file = "aiohttp-3.10.8-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:d3a79200a9d5e621c4623081ddb25380b713c8cf5233cd11c1aabad990bb9381"},
|
78 |
+
{file = "aiohttp-3.10.8-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:e45fdfcb2d5bcad83373e4808825b7512953146d147488114575780640665027"},
|
79 |
+
{file = "aiohttp-3.10.8-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:f78e2a78432c537ae876a93013b7bc0027ba5b93ad7b3463624c4b6906489332"},
|
80 |
+
{file = "aiohttp-3.10.8-cp311-cp311-win32.whl", hash = "sha256:f8179855a4e4f3b931cb1764ec87673d3fbdcca2af496c8d30567d7b034a13db"},
|
81 |
+
{file = "aiohttp-3.10.8-cp311-cp311-win_amd64.whl", hash = "sha256:ef9b484604af05ca745b6108ca1aaa22ae1919037ae4f93aaf9a37ba42e0b835"},
|
82 |
+
{file = "aiohttp-3.10.8-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:ab2d6523575fc98896c80f49ac99e849c0b0e69cc80bf864eed6af2ae728a52b"},
|
83 |
+
{file = "aiohttp-3.10.8-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:f5d5d5401744dda50b943d8764508d0e60cc2d3305ac1e6420935861a9d544bc"},
|
84 |
+
{file = "aiohttp-3.10.8-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:de23085cf90911600ace512e909114385026b16324fa203cc74c81f21fd3276a"},
|
85 |
+
{file = "aiohttp-3.10.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4618f0d2bf523043866a9ff8458900d8eb0a6d4018f251dae98e5f1fb699f3a8"},
|
86 |
+
{file = "aiohttp-3.10.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:21c1925541ca84f7b5e0df361c0a813a7d6a56d3b0030ebd4b220b8d232015f9"},
|
87 |
+
{file = "aiohttp-3.10.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:497a7d20caea8855c5429db3cdb829385467217d7feb86952a6107e033e031b9"},
|
88 |
+
{file = "aiohttp-3.10.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c887019dbcb4af58a091a45ccf376fffe800b5531b45c1efccda4bedf87747ea"},
|
89 |
+
{file = "aiohttp-3.10.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:40d2d719c3c36a7a65ed26400e2b45b2d9ed7edf498f4df38b2ae130f25a0d01"},
|
90 |
+
{file = "aiohttp-3.10.8-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:57359785f27394a8bcab0da6dcd46706d087dfebf59a8d0ad2e64a4bc2f6f94f"},
|
91 |
+
{file = "aiohttp-3.10.8-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:a961ee6f2cdd1a2be4735333ab284691180d40bad48f97bb598841bfcbfb94ec"},
|
92 |
+
{file = "aiohttp-3.10.8-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:fe3d79d6af839ffa46fdc5d2cf34295390894471e9875050eafa584cb781508d"},
|
93 |
+
{file = "aiohttp-3.10.8-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:9a281cba03bdaa341c70b7551b2256a88d45eead149f48b75a96d41128c240b3"},
|
94 |
+
{file = "aiohttp-3.10.8-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c6769d71bfb1ed60321363a9bc05e94dcf05e38295ef41d46ac08919e5b00d19"},
|
95 |
+
{file = "aiohttp-3.10.8-cp312-cp312-win32.whl", hash = "sha256:a3081246bab4d419697ee45e555cef5cd1def7ac193dff6f50be761d2e44f194"},
|
96 |
+
{file = "aiohttp-3.10.8-cp312-cp312-win_amd64.whl", hash = "sha256:ab1546fc8e00676febc81c548a876c7bde32f881b8334b77f84719ab2c7d28dc"},
|
97 |
+
{file = "aiohttp-3.10.8-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:b1a012677b8e0a39e181e218de47d6741c5922202e3b0b65e412e2ce47c39337"},
|
98 |
+
{file = "aiohttp-3.10.8-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:2df786c96c57cd6b87156ba4c5f166af7b88f3fc05f9d592252fdc83d8615a3c"},
|
99 |
+
{file = "aiohttp-3.10.8-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:8885ca09d3a9317219c0831276bfe26984b17b2c37b7bf70dd478d17092a4772"},
|
100 |
+
{file = "aiohttp-3.10.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4dbf252ac19860e0ab56cd480d2805498f47c5a2d04f5995d8d8a6effd04b48c"},
|
101 |
+
{file = "aiohttp-3.10.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3b2036479b6b94afaaca7d07b8a68dc0e67b0caf5f6293bb6a5a1825f5923000"},
|
102 |
+
{file = "aiohttp-3.10.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:365783e1b7c40b59ed4ce2b5a7491bae48f41cd2c30d52647a5b1ee8604c68ad"},
|
103 |
+
{file = "aiohttp-3.10.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:270e653b5a4b557476a1ed40e6b6ce82f331aab669620d7c95c658ef976c9c5e"},
|
104 |
+
{file = "aiohttp-3.10.8-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8960fabc20bfe4fafb941067cda8e23c8c17c98c121aa31c7bf0cdab11b07842"},
|
105 |
+
{file = "aiohttp-3.10.8-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f21e8f2abed9a44afc3d15bba22e0dfc71e5fa859bea916e42354c16102b036f"},
|
106 |
+
{file = "aiohttp-3.10.8-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:fecd55e7418fabd297fd836e65cbd6371aa4035a264998a091bbf13f94d9c44d"},
|
107 |
+
{file = "aiohttp-3.10.8-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:badb51d851358cd7535b647bb67af4854b64f3c85f0d089c737f75504d5910ec"},
|
108 |
+
{file = "aiohttp-3.10.8-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:e860985f30f3a015979e63e7ba1a391526cdac1b22b7b332579df7867848e255"},
|
109 |
+
{file = "aiohttp-3.10.8-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:71462f8eeca477cbc0c9700a9464e3f75f59068aed5e9d4a521a103692da72dc"},
|
110 |
+
{file = "aiohttp-3.10.8-cp313-cp313-win32.whl", hash = "sha256:177126e971782769b34933e94fddd1089cef0fe6b82fee8a885e539f5b0f0c6a"},
|
111 |
+
{file = "aiohttp-3.10.8-cp313-cp313-win_amd64.whl", hash = "sha256:98a4eb60e27033dee9593814ca320ee8c199489fbc6b2699d0f710584db7feb7"},
|
112 |
+
{file = "aiohttp-3.10.8-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:ffef3d763e4c8fc97e740da5b4d0f080b78630a3914f4e772a122bbfa608c1db"},
|
113 |
+
{file = "aiohttp-3.10.8-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:597128cb7bc5f068181b49a732961f46cb89f85686206289d6ccb5e27cb5fbe2"},
|
114 |
+
{file = "aiohttp-3.10.8-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:f23a6c1d09de5de89a33c9e9b229106cb70dcfdd55e81a3a3580eaadaa32bc92"},
|
115 |
+
{file = "aiohttp-3.10.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da57af0c54a302b7c655fa1ccd5b1817a53739afa39924ef1816e7b7c8a07ccb"},
|
116 |
+
{file = "aiohttp-3.10.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1e7a6af57091056a79a35104d6ec29d98ec7f1fb7270ad9c6fff871b678d1ff8"},
|
117 |
+
{file = "aiohttp-3.10.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:32710d6b3b6c09c60c794d84ca887a3a2890131c0b02b3cefdcc6709a2260a7c"},
|
118 |
+
{file = "aiohttp-3.10.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b91f4f62ad39a8a42d511d66269b46cb2fb7dea9564c21ab6c56a642d28bff5"},
|
119 |
+
{file = "aiohttp-3.10.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:471a8c47344b9cc309558b3fcc469bd2c12b49322b4b31eb386c4a2b2d44e44a"},
|
120 |
+
{file = "aiohttp-3.10.8-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:fc0e7f91705445d79beafba9bb3057dd50830e40fe5417017a76a214af54e122"},
|
121 |
+
{file = "aiohttp-3.10.8-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:85431c9131a9a0f65260dc7a65c800ca5eae78c4c9931618f18c8e0933a0e0c1"},
|
122 |
+
{file = "aiohttp-3.10.8-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:b91557ee0893da52794b25660d4f57bb519bcad8b7df301acd3898f7197c5d81"},
|
123 |
+
{file = "aiohttp-3.10.8-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:4954e6b06dd0be97e1a5751fc606be1f9edbdc553c5d9b57d72406a8fbd17f9d"},
|
124 |
+
{file = "aiohttp-3.10.8-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:a087c84b4992160ffef7afd98ef24177c8bd4ad61c53607145a8377457385100"},
|
125 |
+
{file = "aiohttp-3.10.8-cp38-cp38-win32.whl", hash = "sha256:e1f0f7b27171b2956a27bd8f899751d0866ddabdd05cbddf3520f945130a908c"},
|
126 |
+
{file = "aiohttp-3.10.8-cp38-cp38-win_amd64.whl", hash = "sha256:c4916070e12ae140110aa598031876c1bf8676a36a750716ea0aa5bd694aa2e7"},
|
127 |
+
{file = "aiohttp-3.10.8-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:5284997e3d88d0dfb874c43e51ae8f4a6f4ca5b90dcf22995035187253d430db"},
|
128 |
+
{file = "aiohttp-3.10.8-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9443d9ebc5167ce1fbb552faf2d666fb22ef5716a8750be67efd140a7733738c"},
|
129 |
+
{file = "aiohttp-3.10.8-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b667e2a03407d79a76c618dc30cedebd48f082d85880d0c9c4ec2faa3e10f43e"},
|
130 |
+
{file = "aiohttp-3.10.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:98fae99d5c2146f254b7806001498e6f9ffb0e330de55a35e72feb7cb2fa399b"},
|
131 |
+
{file = "aiohttp-3.10.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8296edd99d0dd9d0eb8b9e25b3b3506eef55c1854e9cc230f0b3f885f680410b"},
|
132 |
+
{file = "aiohttp-3.10.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1ce46dfb49cfbf9e92818be4b761d4042230b1f0e05ffec0aad15b3eb162b905"},
|
133 |
+
{file = "aiohttp-3.10.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7c38cfd355fd86c39b2d54651bd6ed7d63d4fe3b5553f364bae3306e2445f847"},
|
134 |
+
{file = "aiohttp-3.10.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:713dff3f87ceec3bde4f3f484861464e722cf7533f9fa6b824ec82bb5a9010a7"},
|
135 |
+
{file = "aiohttp-3.10.8-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:21a72f4a9c69a8567a0aca12042f12bba25d3139fd5dd8eeb9931f4d9e8599cd"},
|
136 |
+
{file = "aiohttp-3.10.8-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:6d1ad868624f6cea77341ef2877ad4e71f7116834a6cd7ec36ec5c32f94ee6ae"},
|
137 |
+
{file = "aiohttp-3.10.8-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:a78ba86d5a08207d1d1ad10b97aed6ea48b374b3f6831d02d0b06545ac0f181e"},
|
138 |
+
{file = "aiohttp-3.10.8-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:aff048793d05e1ce05b62e49dccf81fe52719a13f4861530706619506224992b"},
|
139 |
+
{file = "aiohttp-3.10.8-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:d088ca05381fd409793571d8e34eca06daf41c8c50a05aeed358d2d340c7af81"},
|
140 |
+
{file = "aiohttp-3.10.8-cp39-cp39-win32.whl", hash = "sha256:ee97c4e54f457c366e1f76fbbf3e8effee9de57dae671084a161c00f481106ce"},
|
141 |
+
{file = "aiohttp-3.10.8-cp39-cp39-win_amd64.whl", hash = "sha256:d95ae4420669c871667aad92ba8cce6251d61d79c1a38504621094143f94a8b4"},
|
142 |
+
{file = "aiohttp-3.10.8.tar.gz", hash = "sha256:21f8225f7dc187018e8433c9326be01477fb2810721e048b33ac49091b19fb4a"},
|
143 |
]
|
144 |
|
145 |
[package.dependencies]
|
|
|
191 |
|
192 |
[[package]]
|
193 |
name = "akshare"
|
194 |
+
version = "1.14.86"
|
195 |
description = "AKShare is an elegant and simple financial data interface library for Python, built for human beings!"
|
196 |
optional = false
|
197 |
python-versions = ">=3.8"
|
198 |
files = [
|
199 |
+
{file = "akshare-1.14.86-py3-none-any.whl", hash = "sha256:5124ad6e914049d1d3d8c2d755ed7d8cb1300c8e785243278fe3b516d844e6be"},
|
200 |
+
{file = "akshare-1.14.86.tar.gz", hash = "sha256:d1d1e2b0da73ed38e5bc20328ea78e5e6fc463979d74678274f35732d9ce3ffa"},
|
201 |
]
|
202 |
|
203 |
[package.dependencies]
|
|
|
2776 |
|
2777 |
[[package]]
|
2778 |
name = "grpcio"
|
2779 |
+
version = "1.66.2"
|
2780 |
description = "HTTP/2-based RPC framework"
|
2781 |
optional = false
|
2782 |
python-versions = ">=3.8"
|
2783 |
files = [
|
2784 |
+
{file = "grpcio-1.66.2-cp310-cp310-linux_armv7l.whl", hash = "sha256:fe96281713168a3270878255983d2cb1a97e034325c8c2c25169a69289d3ecfa"},
|
2785 |
+
{file = "grpcio-1.66.2-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:73fc8f8b9b5c4a03e802b3cd0c18b2b06b410d3c1dcbef989fdeb943bd44aff7"},
|
2786 |
+
{file = "grpcio-1.66.2-cp310-cp310-manylinux_2_17_aarch64.whl", hash = "sha256:03b0b307ba26fae695e067b94cbb014e27390f8bc5ac7a3a39b7723fed085604"},
|
2787 |
+
{file = "grpcio-1.66.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7d69ce1f324dc2d71e40c9261d3fdbe7d4c9d60f332069ff9b2a4d8a257c7b2b"},
|
2788 |
+
{file = "grpcio-1.66.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05bc2ceadc2529ab0b227b1310d249d95d9001cd106aa4d31e8871ad3c428d73"},
|
2789 |
+
{file = "grpcio-1.66.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:8ac475e8da31484efa25abb774674d837b343afb78bb3bcdef10f81a93e3d6bf"},
|
2790 |
+
{file = "grpcio-1.66.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0be4e0490c28da5377283861bed2941d1d20ec017ca397a5df4394d1c31a9b50"},
|
2791 |
+
{file = "grpcio-1.66.2-cp310-cp310-win32.whl", hash = "sha256:4e504572433f4e72b12394977679161d495c4c9581ba34a88d843eaf0f2fbd39"},
|
2792 |
+
{file = "grpcio-1.66.2-cp310-cp310-win_amd64.whl", hash = "sha256:2018b053aa15782db2541ca01a7edb56a0bf18c77efed975392583725974b249"},
|
2793 |
+
{file = "grpcio-1.66.2-cp311-cp311-linux_armv7l.whl", hash = "sha256:2335c58560a9e92ac58ff2bc5649952f9b37d0735608242973c7a8b94a6437d8"},
|
2794 |
+
{file = "grpcio-1.66.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:45a3d462826f4868b442a6b8fdbe8b87b45eb4f5b5308168c156b21eca43f61c"},
|
2795 |
+
{file = "grpcio-1.66.2-cp311-cp311-manylinux_2_17_aarch64.whl", hash = "sha256:a9539f01cb04950fd4b5ab458e64a15f84c2acc273670072abe49a3f29bbad54"},
|
2796 |
+
{file = "grpcio-1.66.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ce89f5876662f146d4c1f695dda29d4433a5d01c8681fbd2539afff535da14d4"},
|
2797 |
+
{file = "grpcio-1.66.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d25a14af966438cddf498b2e338f88d1c9706f3493b1d73b93f695c99c5f0e2a"},
|
2798 |
+
{file = "grpcio-1.66.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:6001e575b8bbd89eee11960bb640b6da6ae110cf08113a075f1e2051cc596cae"},
|
2799 |
+
{file = "grpcio-1.66.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:4ea1d062c9230278793820146c95d038dc0f468cbdd172eec3363e42ff1c7d01"},
|
2800 |
+
{file = "grpcio-1.66.2-cp311-cp311-win32.whl", hash = "sha256:38b68498ff579a3b1ee8f93a05eb48dc2595795f2f62716e797dc24774c1aaa8"},
|
2801 |
+
{file = "grpcio-1.66.2-cp311-cp311-win_amd64.whl", hash = "sha256:6851de821249340bdb100df5eacfecfc4e6075fa85c6df7ee0eb213170ec8e5d"},
|
2802 |
+
{file = "grpcio-1.66.2-cp312-cp312-linux_armv7l.whl", hash = "sha256:802d84fd3d50614170649853d121baaaa305de7b65b3e01759247e768d691ddf"},
|
2803 |
+
{file = "grpcio-1.66.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:80fd702ba7e432994df208f27514280b4b5c6843e12a48759c9255679ad38db8"},
|
2804 |
+
{file = "grpcio-1.66.2-cp312-cp312-manylinux_2_17_aarch64.whl", hash = "sha256:12fda97ffae55e6526825daf25ad0fa37483685952b5d0f910d6405c87e3adb6"},
|
2805 |
+
{file = "grpcio-1.66.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:950da58d7d80abd0ea68757769c9db0a95b31163e53e5bb60438d263f4bed7b7"},
|
2806 |
+
{file = "grpcio-1.66.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e636ce23273683b00410f1971d209bf3689238cf5538d960adc3cdfe80dd0dbd"},
|
2807 |
+
{file = "grpcio-1.66.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:a917d26e0fe980b0ac7bfcc1a3c4ad6a9a4612c911d33efb55ed7833c749b0ee"},
|
2808 |
+
{file = "grpcio-1.66.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:49f0ca7ae850f59f828a723a9064cadbed90f1ece179d375966546499b8a2c9c"},
|
2809 |
+
{file = "grpcio-1.66.2-cp312-cp312-win32.whl", hash = "sha256:31fd163105464797a72d901a06472860845ac157389e10f12631025b3e4d0453"},
|
2810 |
+
{file = "grpcio-1.66.2-cp312-cp312-win_amd64.whl", hash = "sha256:ff1f7882e56c40b0d33c4922c15dfa30612f05fb785074a012f7cda74d1c3679"},
|
2811 |
+
{file = "grpcio-1.66.2-cp313-cp313-linux_armv7l.whl", hash = "sha256:3b00efc473b20d8bf83e0e1ae661b98951ca56111feb9b9611df8efc4fe5d55d"},
|
2812 |
+
{file = "grpcio-1.66.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:1caa38fb22a8578ab8393da99d4b8641e3a80abc8fd52646f1ecc92bcb8dee34"},
|
2813 |
+
{file = "grpcio-1.66.2-cp313-cp313-manylinux_2_17_aarch64.whl", hash = "sha256:c408f5ef75cfffa113cacd8b0c0e3611cbfd47701ca3cdc090594109b9fcbaed"},
|
2814 |
+
{file = "grpcio-1.66.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c806852deaedee9ce8280fe98955c9103f62912a5b2d5ee7e3eaa284a6d8d8e7"},
|
2815 |
+
{file = "grpcio-1.66.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f145cc21836c332c67baa6fc81099d1d27e266401565bf481948010d6ea32d46"},
|
2816 |
+
{file = "grpcio-1.66.2-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:73e3b425c1e155730273f73e419de3074aa5c5e936771ee0e4af0814631fb30a"},
|
2817 |
+
{file = "grpcio-1.66.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:9c509a4f78114cbc5f0740eb3d7a74985fd2eff022971bc9bc31f8bc93e66a3b"},
|
2818 |
+
{file = "grpcio-1.66.2-cp313-cp313-win32.whl", hash = "sha256:20657d6b8cfed7db5e11b62ff7dfe2e12064ea78e93f1434d61888834bc86d75"},
|
2819 |
+
{file = "grpcio-1.66.2-cp313-cp313-win_amd64.whl", hash = "sha256:fb70487c95786e345af5e854ffec8cb8cc781bcc5df7930c4fbb7feaa72e1cdf"},
|
2820 |
+
{file = "grpcio-1.66.2-cp38-cp38-linux_armv7l.whl", hash = "sha256:a18e20d8321c6400185b4263e27982488cb5cdd62da69147087a76a24ef4e7e3"},
|
2821 |
+
{file = "grpcio-1.66.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:02697eb4a5cbe5a9639f57323b4c37bcb3ab2d48cec5da3dc2f13334d72790dd"},
|
2822 |
+
{file = "grpcio-1.66.2-cp38-cp38-manylinux_2_17_aarch64.whl", hash = "sha256:99a641995a6bc4287a6315989ee591ff58507aa1cbe4c2e70d88411c4dcc0839"},
|
2823 |
+
{file = "grpcio-1.66.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3ed71e81782966ffead60268bbda31ea3f725ebf8aa73634d5dda44f2cf3fb9c"},
|
2824 |
+
{file = "grpcio-1.66.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbd27c24a4cc5e195a7f56cfd9312e366d5d61b86e36d46bbe538457ea6eb8dd"},
|
2825 |
+
{file = "grpcio-1.66.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:d9a9724a156c8ec6a379869b23ba3323b7ea3600851c91489b871e375f710bc8"},
|
2826 |
+
{file = "grpcio-1.66.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d8d4732cc5052e92cea2f78b233c2e2a52998ac40cd651f40e398893ad0d06ec"},
|
2827 |
+
{file = "grpcio-1.66.2-cp38-cp38-win32.whl", hash = "sha256:7b2c86457145ce14c38e5bf6bdc19ef88e66c5fee2c3d83285c5aef026ba93b3"},
|
2828 |
+
{file = "grpcio-1.66.2-cp38-cp38-win_amd64.whl", hash = "sha256:e88264caad6d8d00e7913996030bac8ad5f26b7411495848cc218bd3a9040b6c"},
|
2829 |
+
{file = "grpcio-1.66.2-cp39-cp39-linux_armv7l.whl", hash = "sha256:c400ba5675b67025c8a9f48aa846f12a39cf0c44df5cd060e23fda5b30e9359d"},
|
2830 |
+
{file = "grpcio-1.66.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:66a0cd8ba6512b401d7ed46bb03f4ee455839957f28b8d61e7708056a806ba6a"},
|
2831 |
+
{file = "grpcio-1.66.2-cp39-cp39-manylinux_2_17_aarch64.whl", hash = "sha256:06de8ec0bd71be123eec15b0e0d457474931c2c407869b6c349bd9bed4adbac3"},
|
2832 |
+
{file = "grpcio-1.66.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fb57870449dfcfac428afbb5a877829fcb0d6db9d9baa1148705739e9083880e"},
|
2833 |
+
{file = "grpcio-1.66.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b672abf90a964bfde2d0ecbce30f2329a47498ba75ce6f4da35a2f4532b7acbc"},
|
2834 |
+
{file = "grpcio-1.66.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:ad2efdbe90c73b0434cbe64ed372e12414ad03c06262279b104a029d1889d13e"},
|
2835 |
+
{file = "grpcio-1.66.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:9c3a99c519f4638e700e9e3f83952e27e2ea10873eecd7935823dab0c1c9250e"},
|
2836 |
+
{file = "grpcio-1.66.2-cp39-cp39-win32.whl", hash = "sha256:78fa51ebc2d9242c0fc5db0feecc57a9943303b46664ad89921f5079e2e4ada7"},
|
2837 |
+
{file = "grpcio-1.66.2-cp39-cp39-win_amd64.whl", hash = "sha256:728bdf36a186e7f51da73be7f8d09457a03061be848718d0edf000e709418987"},
|
2838 |
+
{file = "grpcio-1.66.2.tar.gz", hash = "sha256:563588c587b75c34b928bc428548e5b00ea38c46972181a4d8b75ba7e3f24231"},
|
2839 |
+
]
|
2840 |
+
|
2841 |
+
[package.extras]
|
2842 |
+
protobuf = ["grpcio-tools (>=1.66.2)"]
|
2843 |
|
2844 |
[[package]]
|
2845 |
name = "grpcio-status"
|
2846 |
+
version = "1.66.2"
|
2847 |
description = "Status proto mapping for gRPC"
|
2848 |
optional = false
|
2849 |
python-versions = ">=3.8"
|
2850 |
files = [
|
2851 |
+
{file = "grpcio_status-1.66.2-py3-none-any.whl", hash = "sha256:e5fe189f6897d12aa9cd74408a17ca41e44fad30871cf84f5cbd17bd713d2455"},
|
2852 |
+
{file = "grpcio_status-1.66.2.tar.gz", hash = "sha256:fb55cbb5c2e67062f7a4d5c99e489d074fb57e98678d5c3c6692a2d74d89e9ae"},
|
2853 |
]
|
2854 |
|
2855 |
[package.dependencies]
|
2856 |
googleapis-common-protos = ">=1.5.5"
|
2857 |
+
grpcio = ">=1.66.2"
|
2858 |
protobuf = ">=5.26.1,<6.0dev"
|
2859 |
|
2860 |
[[package]]
|
|
|
4803 |
|
4804 |
[[package]]
|
4805 |
name = "onnxruntime"
|
4806 |
+
version = "1.19.2"
|
4807 |
description = "ONNX Runtime is a runtime accelerator for Machine Learning models"
|
4808 |
optional = false
|
4809 |
python-versions = "*"
|
4810 |
files = [
|
4811 |
+
{file = "onnxruntime-1.19.2-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:84fa57369c06cadd3c2a538ae2a26d76d583e7c34bdecd5769d71ca5c0fc750e"},
|
4812 |
+
{file = "onnxruntime-1.19.2-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:bdc471a66df0c1cdef774accef69e9f2ca168c851ab5e4f2f3341512c7ef4666"},
|
4813 |
+
{file = "onnxruntime-1.19.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e3a4ce906105d99ebbe817f536d50a91ed8a4d1592553f49b3c23c4be2560ae6"},
|
4814 |
+
{file = "onnxruntime-1.19.2-cp310-cp310-win32.whl", hash = "sha256:4b3d723cc154c8ddeb9f6d0a8c0d6243774c6b5930847cc83170bfe4678fafb3"},
|
4815 |
+
{file = "onnxruntime-1.19.2-cp310-cp310-win_amd64.whl", hash = "sha256:17ed7382d2c58d4b7354fb2b301ff30b9bf308a1c7eac9546449cd122d21cae5"},
|
4816 |
+
{file = "onnxruntime-1.19.2-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:d863e8acdc7232d705d49e41087e10b274c42f09e259016a46f32c34e06dc4fd"},
|
4817 |
+
{file = "onnxruntime-1.19.2-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c1dfe4f660a71b31caa81fc298a25f9612815215a47b286236e61d540350d7b6"},
|
4818 |
+
{file = "onnxruntime-1.19.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a36511dc07c5c964b916697e42e366fa43c48cdb3d3503578d78cef30417cb84"},
|
4819 |
+
{file = "onnxruntime-1.19.2-cp311-cp311-win32.whl", hash = "sha256:50cbb8dc69d6befad4746a69760e5b00cc3ff0a59c6c3fb27f8afa20e2cab7e7"},
|
4820 |
+
{file = "onnxruntime-1.19.2-cp311-cp311-win_amd64.whl", hash = "sha256:1c3e5d415b78337fa0b1b75291e9ea9fb2a4c1f148eb5811e7212fed02cfffa8"},
|
4821 |
+
{file = "onnxruntime-1.19.2-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:68e7051bef9cfefcbb858d2d2646536829894d72a4130c24019219442b1dd2ed"},
|
4822 |
+
{file = "onnxruntime-1.19.2-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d2d366fbcc205ce68a8a3bde2185fd15c604d9645888703785b61ef174265168"},
|
4823 |
+
{file = "onnxruntime-1.19.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:477b93df4db467e9cbf34051662a4b27c18e131fa1836e05974eae0d6e4cf29b"},
|
4824 |
+
{file = "onnxruntime-1.19.2-cp312-cp312-win32.whl", hash = "sha256:9a174073dc5608fad05f7cf7f320b52e8035e73d80b0a23c80f840e5a97c0147"},
|
4825 |
+
{file = "onnxruntime-1.19.2-cp312-cp312-win_amd64.whl", hash = "sha256:190103273ea4507638ffc31d66a980594b237874b65379e273125150eb044857"},
|
4826 |
+
{file = "onnxruntime-1.19.2-cp38-cp38-macosx_11_0_universal2.whl", hash = "sha256:636bc1d4cc051d40bc52e1f9da87fbb9c57d9d47164695dfb1c41646ea51ea66"},
|
4827 |
+
{file = "onnxruntime-1.19.2-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5bd8b875757ea941cbcfe01582970cc299893d1b65bd56731e326a8333f638a3"},
|
4828 |
+
{file = "onnxruntime-1.19.2-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b2046fc9560f97947bbc1acbe4c6d48585ef0f12742744307d3364b131ac5778"},
|
4829 |
+
{file = "onnxruntime-1.19.2-cp38-cp38-win32.whl", hash = "sha256:31c12840b1cde4ac1f7d27d540c44e13e34f2345cf3642762d2a3333621abb6a"},
|
4830 |
+
{file = "onnxruntime-1.19.2-cp38-cp38-win_amd64.whl", hash = "sha256:016229660adea180e9a32ce218b95f8f84860a200f0f13b50070d7d90e92956c"},
|
4831 |
+
{file = "onnxruntime-1.19.2-cp39-cp39-macosx_11_0_universal2.whl", hash = "sha256:006c8d326835c017a9e9f74c9c77ebb570a71174a1e89fe078b29a557d9c3848"},
|
4832 |
+
{file = "onnxruntime-1.19.2-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:df2a94179a42d530b936f154615b54748239c2908ee44f0d722cb4df10670f68"},
|
4833 |
+
{file = "onnxruntime-1.19.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fae4b4de45894b9ce7ae418c5484cbf0341db6813effec01bb2216091c52f7fb"},
|
4834 |
+
{file = "onnxruntime-1.19.2-cp39-cp39-win32.whl", hash = "sha256:dc5430f473e8706fff837ae01323be9dcfddd3ea471c900a91fa7c9b807ec5d3"},
|
4835 |
+
{file = "onnxruntime-1.19.2-cp39-cp39-win_amd64.whl", hash = "sha256:38475e29a95c5f6c62c2c603d69fc7d4c6ccbf4df602bd567b86ae1138881c49"},
|
4836 |
]
|
4837 |
|
4838 |
[package.dependencies]
|
|
|
8400 |
h11 = ">=0.9.0,<1"
|
8401 |
|
8402 |
[[package]]
|
8403 |
+
name = "xgboost"
|
8404 |
+
version = "1.5.0"
|
8405 |
description = "XGBoost Python Package"
|
8406 |
optional = false
|
8407 |
+
python-versions = ">=3.6"
|
8408 |
files = [
|
8409 |
+
{file = "xgboost-1.5.0-py3-none-macosx_10_14_x86_64.macosx_10_15_x86_64.macosx_11_0_x86_64.whl", hash = "sha256:ae122406c2c1d2a407c18a49c2a05f9bbbaa3249fd39e91c11cb223d538dba4e"},
|
8410 |
+
{file = "xgboost-1.5.0-py3-none-manylinux2014_aarch64.whl", hash = "sha256:ebe36ee21516a37f645bcd1f3ca1247485fe77d96f1c3d605f970c469b6a9015"},
|
8411 |
+
{file = "xgboost-1.5.0-py3-none-manylinux2014_x86_64.whl", hash = "sha256:edaad84317a53671069b4477152915c25b4121d997bfa531711f0a18ba1402fe"},
|
8412 |
+
{file = "xgboost-1.5.0-py3-none-win_amd64.whl", hash = "sha256:9502a9ed5c52669c83207380eeaaa3862cbf38b271040c6d5226914e07cf196c"},
|
8413 |
+
{file = "xgboost-1.5.0.tar.gz", hash = "sha256:6b7c34a18474c1b73b5c6dcf1231f5fe102d6f26490a65465e3879048bf1f3d4"},
|
8414 |
]
|
8415 |
|
8416 |
[package.dependencies]
|
|
|
8420 |
[package.extras]
|
8421 |
dask = ["dask", "distributed", "pandas"]
|
8422 |
datatable = ["datatable"]
|
8423 |
+
pandas = ["pandas"]
|
8424 |
plotting = ["graphviz", "matplotlib"]
|
|
|
8425 |
scikit-learn = ["scikit-learn"]
|
8426 |
|
8427 |
[[package]]
|
|
|
8599 |
|
8600 |
[[package]]
|
8601 |
name = "yarl"
|
8602 |
+
version = "1.13.1"
|
8603 |
description = "Yet another URL library"
|
8604 |
optional = false
|
8605 |
python-versions = ">=3.8"
|
8606 |
files = [
|
8607 |
+
{file = "yarl-1.13.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:82e692fb325013a18a5b73a4fed5a1edaa7c58144dc67ad9ef3d604eccd451ad"},
|
8608 |
+
{file = "yarl-1.13.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:df4e82e68f43a07735ae70a2d84c0353e58e20add20ec0af611f32cd5ba43fb4"},
|
8609 |
+
{file = "yarl-1.13.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ec9dd328016d8d25702a24ee274932aebf6be9787ed1c28d021945d264235b3c"},
|
8610 |
+
{file = "yarl-1.13.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5820bd4178e6a639b3ef1db8b18500a82ceab6d8b89309e121a6859f56585b05"},
|
8611 |
+
{file = "yarl-1.13.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:86c438ce920e089c8c2388c7dcc8ab30dfe13c09b8af3d306bcabb46a053d6f7"},
|
8612 |
+
{file = "yarl-1.13.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3de86547c820e4f4da4606d1c8ab5765dd633189791f15247706a2eeabc783ae"},
|
8613 |
+
{file = "yarl-1.13.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8ca53632007c69ddcdefe1e8cbc3920dd88825e618153795b57e6ebcc92e752a"},
|
8614 |
+
{file = "yarl-1.13.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d4ee1d240b84e2f213565f0ec08caef27a0e657d4c42859809155cf3a29d1735"},
|
8615 |
+
{file = "yarl-1.13.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:c49f3e379177f4477f929097f7ed4b0622a586b0aa40c07ac8c0f8e40659a1ac"},
|
8616 |
+
{file = "yarl-1.13.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:5c5e32fef09ce101fe14acd0f498232b5710effe13abac14cd95de9c274e689e"},
|
8617 |
+
{file = "yarl-1.13.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:ab9524e45ee809a083338a749af3b53cc7efec458c3ad084361c1dbf7aaf82a2"},
|
8618 |
+
{file = "yarl-1.13.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:b1481c048fe787f65e34cb06f7d6824376d5d99f1231eae4778bbe5c3831076d"},
|
8619 |
+
{file = "yarl-1.13.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:31497aefd68036d8e31bfbacef915826ca2e741dbb97a8d6c7eac66deda3b606"},
|
8620 |
+
{file = "yarl-1.13.1-cp310-cp310-win32.whl", hash = "sha256:1fa56f34b2236f5192cb5fceba7bbb09620e5337e0b6dfe2ea0ddbd19dd5b154"},
|
8621 |
+
{file = "yarl-1.13.1-cp310-cp310-win_amd64.whl", hash = "sha256:1bbb418f46c7f7355084833051701b2301092e4611d9e392360c3ba2e3e69f88"},
|
8622 |
+
{file = "yarl-1.13.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:216a6785f296169ed52cd7dcdc2612f82c20f8c9634bf7446327f50398732a51"},
|
8623 |
+
{file = "yarl-1.13.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:40c6e73c03a6befb85b72da213638b8aaa80fe4136ec8691560cf98b11b8ae6e"},
|
8624 |
+
{file = "yarl-1.13.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2430cf996113abe5aee387d39ee19529327205cda975d2b82c0e7e96e5fdabdc"},
|
8625 |
+
{file = "yarl-1.13.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9fb4134cc6e005b99fa29dbc86f1ea0a298440ab6b07c6b3ee09232a3b48f495"},
|
8626 |
+
{file = "yarl-1.13.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:309c104ecf67626c033845b860d31594a41343766a46fa58c3309c538a1e22b2"},
|
8627 |
+
{file = "yarl-1.13.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f90575e9fe3aae2c1e686393a9689c724cd00045275407f71771ae5d690ccf38"},
|
8628 |
+
{file = "yarl-1.13.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9d2e1626be8712333a9f71270366f4a132f476ffbe83b689dd6dc0d114796c74"},
|
8629 |
+
{file = "yarl-1.13.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5b66c87da3c6da8f8e8b648878903ca54589038a0b1e08dde2c86d9cd92d4ac9"},
|
8630 |
+
{file = "yarl-1.13.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:cf1ad338620249f8dd6d4b6a91a69d1f265387df3697ad5dc996305cf6c26fb2"},
|
8631 |
+
{file = "yarl-1.13.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:9915300fe5a0aa663c01363db37e4ae8e7c15996ebe2c6cce995e7033ff6457f"},
|
8632 |
+
{file = "yarl-1.13.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:703b0f584fcf157ef87816a3c0ff868e8c9f3c370009a8b23b56255885528f10"},
|
8633 |
+
{file = "yarl-1.13.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:1d8e3ca29f643dd121f264a7c89f329f0fcb2e4461833f02de6e39fef80f89da"},
|
8634 |
+
{file = "yarl-1.13.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:7055bbade838d68af73aea13f8c86588e4bcc00c2235b4b6d6edb0dbd174e246"},
|
8635 |
+
{file = "yarl-1.13.1-cp311-cp311-win32.whl", hash = "sha256:a3442c31c11088e462d44a644a454d48110f0588de830921fd201060ff19612a"},
|
8636 |
+
{file = "yarl-1.13.1-cp311-cp311-win_amd64.whl", hash = "sha256:81bad32c8f8b5897c909bf3468bf601f1b855d12f53b6af0271963ee67fff0d2"},
|
8637 |
+
{file = "yarl-1.13.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:f452cc1436151387d3d50533523291d5f77c6bc7913c116eb985304abdbd9ec9"},
|
8638 |
+
{file = "yarl-1.13.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:9cec42a20eae8bebf81e9ce23fb0d0c729fc54cf00643eb251ce7c0215ad49fe"},
|
8639 |
+
{file = "yarl-1.13.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d959fe96e5c2712c1876d69af0507d98f0b0e8d81bee14cfb3f6737470205419"},
|
8640 |
+
{file = "yarl-1.13.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b8c837ab90c455f3ea8e68bee143472ee87828bff19ba19776e16ff961425b57"},
|
8641 |
+
{file = "yarl-1.13.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:94a993f976cdcb2dc1b855d8b89b792893220db8862d1a619efa7451817c836b"},
|
8642 |
+
{file = "yarl-1.13.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2b2442a415a5f4c55ced0fade7b72123210d579f7d950e0b5527fc598866e62c"},
|
8643 |
+
{file = "yarl-1.13.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3fdbf0418489525231723cdb6c79e7738b3cbacbaed2b750cb033e4ea208f220"},
|
8644 |
+
{file = "yarl-1.13.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6b7f6e699304717fdc265a7e1922561b02a93ceffdaefdc877acaf9b9f3080b8"},
|
8645 |
+
{file = "yarl-1.13.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:bcd5bf4132e6a8d3eb54b8d56885f3d3a38ecd7ecae8426ecf7d9673b270de43"},
|
8646 |
+
{file = "yarl-1.13.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:2a93a4557f7fc74a38ca5a404abb443a242217b91cd0c4840b1ebedaad8919d4"},
|
8647 |
+
{file = "yarl-1.13.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:22b739f99c7e4787922903f27a892744189482125cc7b95b747f04dd5c83aa9f"},
|
8648 |
+
{file = "yarl-1.13.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:2db874dd1d22d4c2c657807562411ffdfabec38ce4c5ce48b4c654be552759dc"},
|
8649 |
+
{file = "yarl-1.13.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:4feaaa4742517eaceafcbe74595ed335a494c84634d33961214b278126ec1485"},
|
8650 |
+
{file = "yarl-1.13.1-cp312-cp312-win32.whl", hash = "sha256:bbf9c2a589be7414ac4a534d54e4517d03f1cbb142c0041191b729c2fa23f320"},
|
8651 |
+
{file = "yarl-1.13.1-cp312-cp312-win_amd64.whl", hash = "sha256:d07b52c8c450f9366c34aa205754355e933922c79135125541daae6cbf31c799"},
|
8652 |
+
{file = "yarl-1.13.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:95c6737f28069153c399d875317f226bbdea939fd48a6349a3b03da6829fb550"},
|
8653 |
+
{file = "yarl-1.13.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:cd66152561632ed4b2a9192e7f8e5a1d41e28f58120b4761622e0355f0fe034c"},
|
8654 |
+
{file = "yarl-1.13.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6a2acde25be0cf9be23a8f6cbd31734536a264723fca860af3ae5e89d771cd71"},
|
8655 |
+
{file = "yarl-1.13.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9a18595e6a2ee0826bf7dfdee823b6ab55c9b70e8f80f8b77c37e694288f5de1"},
|
8656 |
+
{file = "yarl-1.13.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a31d21089894942f7d9a8df166b495101b7258ff11ae0abec58e32daf8088813"},
|
8657 |
+
{file = "yarl-1.13.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:45f209fb4bbfe8630e3d2e2052535ca5b53d4ce2d2026bed4d0637b0416830da"},
|
8658 |
+
{file = "yarl-1.13.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f722f30366474a99745533cc4015b1781ee54b08de73260b2bbe13316079851"},
|
8659 |
+
{file = "yarl-1.13.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3bf60444269345d712838bb11cc4eadaf51ff1a364ae39ce87a5ca8ad3bb2c8"},
|
8660 |
+
{file = "yarl-1.13.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:942c80a832a79c3707cca46bd12ab8aa58fddb34b1626d42b05aa8f0bcefc206"},
|
8661 |
+
{file = "yarl-1.13.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:44b07e1690f010c3c01d353b5790ec73b2f59b4eae5b0000593199766b3f7a5c"},
|
8662 |
+
{file = "yarl-1.13.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:396e59b8de7e4d59ff5507fb4322d2329865b909f29a7ed7ca37e63ade7f835c"},
|
8663 |
+
{file = "yarl-1.13.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:3bb83a0f12701c0b91112a11148b5217617982e1e466069d0555be9b372f2734"},
|
8664 |
+
{file = "yarl-1.13.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:c92b89bffc660f1274779cb6fbb290ec1f90d6dfe14492523a0667f10170de26"},
|
8665 |
+
{file = "yarl-1.13.1-cp313-cp313-win32.whl", hash = "sha256:269c201bbc01d2cbba5b86997a1e0f73ba5e2f471cfa6e226bcaa7fd664b598d"},
|
8666 |
+
{file = "yarl-1.13.1-cp313-cp313-win_amd64.whl", hash = "sha256:1d0828e17fa701b557c6eaed5edbd9098eb62d8838344486248489ff233998b8"},
|
8667 |
+
{file = "yarl-1.13.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:8be8cdfe20787e6a5fcbd010f8066227e2bb9058331a4eccddec6c0db2bb85b2"},
|
8668 |
+
{file = "yarl-1.13.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:08d7148ff11cb8e886d86dadbfd2e466a76d5dd38c7ea8ebd9b0e07946e76e4b"},
|
8669 |
+
{file = "yarl-1.13.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4afdf84610ca44dcffe8b6c22c68f309aff96be55f5ea2fa31c0c225d6b83e23"},
|
8670 |
+
{file = "yarl-1.13.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d0d12fe78dcf60efa205e9a63f395b5d343e801cf31e5e1dda0d2c1fb618073d"},
|
8671 |
+
{file = "yarl-1.13.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:298c1eecfd3257aa16c0cb0bdffb54411e3e831351cd69e6b0739be16b1bdaa8"},
|
8672 |
+
{file = "yarl-1.13.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c14c16831b565707149c742d87a6203eb5597f4329278446d5c0ae7a1a43928e"},
|
8673 |
+
{file = "yarl-1.13.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5a9bacedbb99685a75ad033fd4de37129449e69808e50e08034034c0bf063f99"},
|
8674 |
+
{file = "yarl-1.13.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:658e8449b84b92a4373f99305de042b6bd0d19bf2080c093881e0516557474a5"},
|
8675 |
+
{file = "yarl-1.13.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:373f16f38721c680316a6a00ae21cc178e3a8ef43c0227f88356a24c5193abd6"},
|
8676 |
+
{file = "yarl-1.13.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:45d23c4668d4925688e2ea251b53f36a498e9ea860913ce43b52d9605d3d8177"},
|
8677 |
+
{file = "yarl-1.13.1-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:f7917697bcaa3bc3e83db91aa3a0e448bf5cde43c84b7fc1ae2427d2417c0224"},
|
8678 |
+
{file = "yarl-1.13.1-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:5989a38ba1281e43e4663931a53fbf356f78a0325251fd6af09dd03b1d676a09"},
|
8679 |
+
{file = "yarl-1.13.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:11b3ca8b42a024513adce810385fcabdd682772411d95bbbda3b9ed1a4257644"},
|
8680 |
+
{file = "yarl-1.13.1-cp38-cp38-win32.whl", hash = "sha256:dcaef817e13eafa547cdfdc5284fe77970b891f731266545aae08d6cce52161e"},
|
8681 |
+
{file = "yarl-1.13.1-cp38-cp38-win_amd64.whl", hash = "sha256:7addd26594e588503bdef03908fc207206adac5bd90b6d4bc3e3cf33a829f57d"},
|
8682 |
+
{file = "yarl-1.13.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:a0ae6637b173d0c40b9c1462e12a7a2000a71a3258fa88756a34c7d38926911c"},
|
8683 |
+
{file = "yarl-1.13.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:576365c9f7469e1f6124d67b001639b77113cfd05e85ce0310f5f318fd02fe85"},
|
8684 |
+
{file = "yarl-1.13.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:78f271722423b2d4851cf1f4fa1a1c4833a128d020062721ba35e1a87154a049"},
|
8685 |
+
{file = "yarl-1.13.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9d74f3c335cfe9c21ea78988e67f18eb9822f5d31f88b41aec3a1ec5ecd32da5"},
|
8686 |
+
{file = "yarl-1.13.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1891d69a6ba16e89473909665cd355d783a8a31bc84720902c5911dbb6373465"},
|
8687 |
+
{file = "yarl-1.13.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fb382fd7b4377363cc9f13ba7c819c3c78ed97c36a82f16f3f92f108c787cbbf"},
|
8688 |
+
{file = "yarl-1.13.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c8854b9f80693d20cec797d8e48a848c2fb273eb6f2587b57763ccba3f3bd4b"},
|
8689 |
+
{file = "yarl-1.13.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bbf2c3f04ff50f16404ce70f822cdc59760e5e2d7965905f0e700270feb2bbfc"},
|
8690 |
+
{file = "yarl-1.13.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:fb9f59f3848edf186a76446eb8bcf4c900fe147cb756fbbd730ef43b2e67c6a7"},
|
8691 |
+
{file = "yarl-1.13.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:ef9b85fa1bc91c4db24407e7c4da93a5822a73dd4513d67b454ca7064e8dc6a3"},
|
8692 |
+
{file = "yarl-1.13.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:098b870c18f1341786f290b4d699504e18f1cd050ed179af8123fd8232513424"},
|
8693 |
+
{file = "yarl-1.13.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:8c723c91c94a3bc8033dd2696a0f53e5d5f8496186013167bddc3fb5d9df46a3"},
|
8694 |
+
{file = "yarl-1.13.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:44a4c40a6f84e4d5955b63462a0e2a988f8982fba245cf885ce3be7618f6aa7d"},
|
8695 |
+
{file = "yarl-1.13.1-cp39-cp39-win32.whl", hash = "sha256:84bbcdcf393139f0abc9f642bf03f00cac31010f3034faa03224a9ef0bb74323"},
|
8696 |
+
{file = "yarl-1.13.1-cp39-cp39-win_amd64.whl", hash = "sha256:fc2931ac9ce9c61c9968989ec831d3a5e6fcaaff9474e7cfa8de80b7aff5a093"},
|
8697 |
+
{file = "yarl-1.13.1-py3-none-any.whl", hash = "sha256:6a5185ad722ab4dd52d5fb1f30dcc73282eb1ed494906a92d1a228d3f89607b0"},
|
8698 |
+
{file = "yarl-1.13.1.tar.gz", hash = "sha256:ec8cfe2295f3e5e44c51f57272afbd69414ae629ec7c6b27f5a410efc78b70a0"},
|
8699 |
]
|
8700 |
|
8701 |
[package.dependencies]
|
|
|
8779 |
[metadata]
|
8780 |
lock-version = "2.0"
|
8781 |
python-versions = ">=3.12,<3.13"
|
8782 |
+
content-hash = "c4a92e4121eae4f793268ddfe1e31bdff9c7f0724dbfba850dad58b72f19dabb"
|
pyproject.toml
CHANGED
@@ -54,7 +54,7 @@ mistralai = "0.4.2"
|
|
54 |
nltk = "3.9.1"
|
55 |
numpy = "1.26.4"
|
56 |
ollama = "0.2.1"
|
57 |
-
onnxruntime = "1.
|
58 |
openai = "1.12.0"
|
59 |
opencv-python = "4.9.0.80"
|
60 |
opencv-python-headless = "4.9.0.80"
|
@@ -111,6 +111,7 @@ python-docx = "^1.1.2"
|
|
111 |
pypdf2 = "^3.0.1"
|
112 |
graspologic = "^3.4.1"
|
113 |
pymysql = "^1.1.1"
|
|
|
114 |
|
115 |
|
116 |
[tool.poetry.group.full]
|
@@ -120,7 +121,6 @@ optional = true
|
|
120 |
bcembedding = "0.1.3"
|
121 |
fastembed = "^0.3.6"
|
122 |
flagembedding = "1.2.10"
|
123 |
-
mini-racer = "^0.12.4"
|
124 |
torch = "2.3.0"
|
125 |
transformers = "4.38.1"
|
126 |
|
|
|
54 |
nltk = "3.9.1"
|
55 |
numpy = "1.26.4"
|
56 |
ollama = "0.2.1"
|
57 |
+
onnxruntime = "1.19.2"
|
58 |
openai = "1.12.0"
|
59 |
opencv-python = "4.9.0.80"
|
60 |
opencv-python-headless = "4.9.0.80"
|
|
|
111 |
pypdf2 = "^3.0.1"
|
112 |
graspologic = "^3.4.1"
|
113 |
pymysql = "^1.1.1"
|
114 |
+
mini-racer = "^0.12.4"
|
115 |
|
116 |
|
117 |
[tool.poetry.group.full]
|
|
|
121 |
bcembedding = "0.1.3"
|
122 |
fastembed = "^0.3.6"
|
123 |
flagembedding = "1.2.10"
|
|
|
124 |
torch = "2.3.0"
|
125 |
transformers = "4.38.1"
|
126 |
|