update
Browse files- .gitattributes +2 -0
- .gitignore +3 -0
- Dockerfile +13 -0
- app.py +7 -0
- pixi.lock +1049 -0
- pixi.toml +13 -0
- requirements.txt +2 -0
.gitattributes
CHANGED
@@ -33,3 +33,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
# GitHub syntax highlighting
|
37 |
+
pixi.lock linguist-language=YAML linguist-generated=true
|
.gitignore
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
# pixi environments
|
2 |
+
.pixi
|
3 |
+
*.egg-info
|
Dockerfile
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM python:3.11-slim
|
2 |
+
|
3 |
+
RUN useradd -m -u 1000 user
|
4 |
+
|
5 |
+
WORKDIR /app
|
6 |
+
|
7 |
+
COPY --chown=user ./requirements.txt requirements.txt
|
8 |
+
|
9 |
+
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
10 |
+
|
11 |
+
COPY --chown=user . /app
|
12 |
+
|
13 |
+
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|
app.py
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from fastapi import FastAPI
|
2 |
+
|
3 |
+
app = FastAPI()
|
4 |
+
|
5 |
+
@app.get("/")
|
6 |
+
def greet_json():
|
7 |
+
return {"Hello": "World!"}
|
pixi.lock
ADDED
@@ -0,0 +1,1049 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
version: 5
|
2 |
+
environments:
|
3 |
+
default:
|
4 |
+
channels:
|
5 |
+
- url: https://conda.anaconda.org/conda-forge/
|
6 |
+
packages:
|
7 |
+
linux-64:
|
8 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
|
9 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
|
10 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_0.conda
|
11 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.4.0-pyhd8ed1ab_0.conda
|
12 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda
|
13 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.6.2-hbcca054_0.conda
|
14 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.6.2-pyhd8ed1ab_0.conda
|
15 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda
|
16 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/dnspython-2.6.1-pyhd8ed1ab_1.conda
|
17 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/email-validator-2.2.0-pyhd8ed1ab_0.conda
|
18 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/email_validator-2.2.0-hd8ed1ab_0.conda
|
19 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.0-pyhd8ed1ab_2.conda
|
20 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/fastapi-0.111.0-pyhd8ed1ab_0.conda
|
21 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/fastapi-cli-0.0.4-pyhd8ed1ab_0.conda
|
22 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_0.tar.bz2
|
23 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2
|
24 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2
|
25 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.5-pyhd8ed1ab_0.conda
|
26 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.27.0-pyhd8ed1ab_0.conda
|
27 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2
|
28 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda
|
29 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda
|
30 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-hf3520f5_7.conda
|
31 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.2-h59595ed_0.conda
|
32 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2
|
33 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h77fa898_13.conda
|
34 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.2.0-h77fa898_13.conda
|
35 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda
|
36 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.46.0-hde9e2c9_0.conda
|
37 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-hc0a3c3a_13.conda
|
38 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda
|
39 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
|
40 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-h4ab18f5_1.conda
|
41 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda
|
42 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.5-py312h98912ed_0.conda
|
43 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda
|
44 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h59595ed_0.conda
|
45 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.1-h4ab18f5_0.conda
|
46 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/orjson-3.10.4-py312h4413252_0.conda
|
47 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.7.4-pyhd8ed1ab_0.conda
|
48 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/pydantic-core-2.18.4-py312h4413252_0.conda
|
49 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_0.conda
|
50 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.4-h194c7f8_0_cpython.conda
|
51 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/python-multipart-0.0.9-pyhd8ed1ab_0.conda
|
52 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.12-4_cp312.conda
|
53 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda
|
54 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.7.1-pyhd8ed1ab_0.conda
|
55 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_0.conda
|
56 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_0.conda
|
57 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.37.2-pyhd8ed1ab_0.conda
|
58 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda
|
59 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.12.3-pyhd8ed1ab_0.conda
|
60 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.12.3-pyhd8ed1ab_0.conda
|
61 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.12.3-hd8ed1ab_0.conda
|
62 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda
|
63 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda
|
64 |
+
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda
|
65 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/ujson-5.10.0-py312h7070661_0.conda
|
66 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/uvicorn-0.30.1-py312h7900ff3_0.conda
|
67 |
+
- conda: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2
|
68 |
+
packages:
|
69 |
+
- kind: conda
|
70 |
+
name: _libgcc_mutex
|
71 |
+
version: '0.1'
|
72 |
+
build: conda_forge
|
73 |
+
subdir: linux-64
|
74 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
|
75 |
+
sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726
|
76 |
+
md5: d7c89558ba9fa0495403155b64376d81
|
77 |
+
license: None
|
78 |
+
size: 2562
|
79 |
+
timestamp: 1578324546067
|
80 |
+
- kind: conda
|
81 |
+
name: _openmp_mutex
|
82 |
+
version: '4.5'
|
83 |
+
build: 2_gnu
|
84 |
+
build_number: 16
|
85 |
+
subdir: linux-64
|
86 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
|
87 |
+
sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22
|
88 |
+
md5: 73aaf86a425cc6e73fcf236a5a46396d
|
89 |
+
depends:
|
90 |
+
- _libgcc_mutex 0.1 conda_forge
|
91 |
+
- libgomp >=7.5.0
|
92 |
+
constrains:
|
93 |
+
- openmp_impl 9999
|
94 |
+
license: BSD-3-Clause
|
95 |
+
license_family: BSD
|
96 |
+
size: 23621
|
97 |
+
timestamp: 1650670423406
|
98 |
+
- kind: conda
|
99 |
+
name: annotated-types
|
100 |
+
version: 0.7.0
|
101 |
+
build: pyhd8ed1ab_0
|
102 |
+
subdir: noarch
|
103 |
+
noarch: python
|
104 |
+
url: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_0.conda
|
105 |
+
sha256: 668f0825b6c18e4012ca24a0070562b6ec801ebc7008228a428eb52b4038873f
|
106 |
+
md5: 7e9f4612544c8edbfd6afad17f1bd045
|
107 |
+
depends:
|
108 |
+
- python >=3.7
|
109 |
+
- typing-extensions >=4.0.0
|
110 |
+
license: MIT
|
111 |
+
license_family: MIT
|
112 |
+
size: 18235
|
113 |
+
timestamp: 1716290348421
|
114 |
+
- kind: conda
|
115 |
+
name: anyio
|
116 |
+
version: 4.4.0
|
117 |
+
build: pyhd8ed1ab_0
|
118 |
+
subdir: noarch
|
119 |
+
noarch: python
|
120 |
+
url: https://conda.anaconda.org/conda-forge/noarch/anyio-4.4.0-pyhd8ed1ab_0.conda
|
121 |
+
sha256: 84ac9429812495f12939ab4994f2634f7cacd254f6234a0c2c0243daed15a7ee
|
122 |
+
md5: 1fa97c6e8db1f82c64ff17a5efc4ae8e
|
123 |
+
depends:
|
124 |
+
- exceptiongroup >=1.0.2
|
125 |
+
- idna >=2.8
|
126 |
+
- python >=3.8
|
127 |
+
- sniffio >=1.1
|
128 |
+
- typing_extensions >=4.1
|
129 |
+
constrains:
|
130 |
+
- uvloop >=0.17
|
131 |
+
- trio >=0.23
|
132 |
+
license: MIT
|
133 |
+
license_family: MIT
|
134 |
+
size: 104255
|
135 |
+
timestamp: 1717693144467
|
136 |
+
- kind: conda
|
137 |
+
name: bzip2
|
138 |
+
version: 1.0.8
|
139 |
+
build: hd590300_5
|
140 |
+
build_number: 5
|
141 |
+
subdir: linux-64
|
142 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-hd590300_5.conda
|
143 |
+
sha256: 242c0c324507ee172c0e0dd2045814e746bb303d1eb78870d182ceb0abc726a8
|
144 |
+
md5: 69b8b6202a07720f448be700e300ccf4
|
145 |
+
depends:
|
146 |
+
- libgcc-ng >=12
|
147 |
+
license: bzip2-1.0.6
|
148 |
+
license_family: BSD
|
149 |
+
size: 254228
|
150 |
+
timestamp: 1699279927352
|
151 |
+
- kind: conda
|
152 |
+
name: ca-certificates
|
153 |
+
version: 2024.6.2
|
154 |
+
build: hbcca054_0
|
155 |
+
subdir: linux-64
|
156 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.6.2-hbcca054_0.conda
|
157 |
+
sha256: 979af0932b2a5a26112044891a2d79e402e5ae8166f50fa48b8ebae47c0a2d65
|
158 |
+
md5: 847c3c2905cc467cea52c24f9cfa8080
|
159 |
+
license: ISC
|
160 |
+
size: 156035
|
161 |
+
timestamp: 1717311767102
|
162 |
+
- kind: conda
|
163 |
+
name: certifi
|
164 |
+
version: 2024.6.2
|
165 |
+
build: pyhd8ed1ab_0
|
166 |
+
subdir: noarch
|
167 |
+
noarch: python
|
168 |
+
url: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.6.2-pyhd8ed1ab_0.conda
|
169 |
+
sha256: f101b8f9155b79d623601214eb719747ffe1c2ad3ff6c4e600f59163bd5f4803
|
170 |
+
md5: 8821ec1c8fcdc9e1d291d7b9f6e9968a
|
171 |
+
depends:
|
172 |
+
- python >=3.7
|
173 |
+
license: ISC
|
174 |
+
size: 160543
|
175 |
+
timestamp: 1718025161969
|
176 |
+
- kind: conda
|
177 |
+
name: click
|
178 |
+
version: 8.1.7
|
179 |
+
build: unix_pyh707e725_0
|
180 |
+
subdir: noarch
|
181 |
+
noarch: python
|
182 |
+
url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda
|
183 |
+
sha256: f0016cbab6ac4138a429e28dbcb904a90305b34b3fe41a9b89d697c90401caec
|
184 |
+
md5: f3ad426304898027fc619827ff428eca
|
185 |
+
depends:
|
186 |
+
- __unix
|
187 |
+
- python >=3.8
|
188 |
+
license: BSD-3-Clause
|
189 |
+
license_family: BSD
|
190 |
+
size: 84437
|
191 |
+
timestamp: 1692311973840
|
192 |
+
- kind: conda
|
193 |
+
name: dnspython
|
194 |
+
version: 2.6.1
|
195 |
+
build: pyhd8ed1ab_1
|
196 |
+
build_number: 1
|
197 |
+
subdir: noarch
|
198 |
+
noarch: python
|
199 |
+
url: https://conda.anaconda.org/conda-forge/noarch/dnspython-2.6.1-pyhd8ed1ab_1.conda
|
200 |
+
sha256: 0d52c878553e569bccfbd96472c1659fb873bc05e95911b457d35982827626fe
|
201 |
+
md5: 936e6aadb75534384d11d982fab74b61
|
202 |
+
depends:
|
203 |
+
- python >=3.8.0,<4.0.0
|
204 |
+
- sniffio
|
205 |
+
constrains:
|
206 |
+
- h2 >=4.1.0
|
207 |
+
- httpcore >=1.0.0
|
208 |
+
- wmi >=1.5.1
|
209 |
+
- trio >=0.23
|
210 |
+
- aioquic >=0.9.25
|
211 |
+
- cryptography >=42
|
212 |
+
- idna >=3.6
|
213 |
+
- httpx >=0.26.0
|
214 |
+
license: ISC
|
215 |
+
license_family: OTHER
|
216 |
+
size: 169434
|
217 |
+
timestamp: 1709190848615
|
218 |
+
- kind: conda
|
219 |
+
name: email-validator
|
220 |
+
version: 2.2.0
|
221 |
+
build: pyhd8ed1ab_0
|
222 |
+
subdir: noarch
|
223 |
+
noarch: python
|
224 |
+
url: https://conda.anaconda.org/conda-forge/noarch/email-validator-2.2.0-pyhd8ed1ab_0.conda
|
225 |
+
sha256: ea9e936ed7c49ea6d66fa3554afe31ba311f2a3d5e384d8c38925fda9e37bdb9
|
226 |
+
md5: 3067adf57ee658ddf5bfad47b0041ce4
|
227 |
+
depends:
|
228 |
+
- dnspython >=2.0.0
|
229 |
+
- idna >=2.0.0
|
230 |
+
- python >=3.7
|
231 |
+
license: Unlicense
|
232 |
+
size: 44157
|
233 |
+
timestamp: 1718984716782
|
234 |
+
- kind: conda
|
235 |
+
name: email_validator
|
236 |
+
version: 2.2.0
|
237 |
+
build: hd8ed1ab_0
|
238 |
+
subdir: noarch
|
239 |
+
noarch: generic
|
240 |
+
url: https://conda.anaconda.org/conda-forge/noarch/email_validator-2.2.0-hd8ed1ab_0.conda
|
241 |
+
sha256: 2cbbbe9e0f3872214227c27b8b775dd2296a435c90ef50a7cc69934c329b6c65
|
242 |
+
md5: 0214a004f7cf5ac28fc10a390dfc47ee
|
243 |
+
depends:
|
244 |
+
- email-validator >=2.2.0,<2.2.1.0a0
|
245 |
+
license: Unlicense
|
246 |
+
size: 6690
|
247 |
+
timestamp: 1718984720419
|
248 |
+
- kind: conda
|
249 |
+
name: exceptiongroup
|
250 |
+
version: 1.2.0
|
251 |
+
build: pyhd8ed1ab_2
|
252 |
+
build_number: 2
|
253 |
+
subdir: noarch
|
254 |
+
noarch: python
|
255 |
+
url: https://conda.anaconda.org/conda-forge/noarch/exceptiongroup-1.2.0-pyhd8ed1ab_2.conda
|
256 |
+
sha256: a6ae416383bda0e3ed14eaa187c653e22bec94ff2aa3b56970cdf0032761e80d
|
257 |
+
md5: 8d652ea2ee8eaee02ed8dc820bc794aa
|
258 |
+
depends:
|
259 |
+
- python >=3.7
|
260 |
+
license: MIT and PSF-2.0
|
261 |
+
size: 20551
|
262 |
+
timestamp: 1704921321122
|
263 |
+
- kind: conda
|
264 |
+
name: fastapi
|
265 |
+
version: 0.111.0
|
266 |
+
build: pyhd8ed1ab_0
|
267 |
+
subdir: noarch
|
268 |
+
noarch: python
|
269 |
+
url: https://conda.anaconda.org/conda-forge/noarch/fastapi-0.111.0-pyhd8ed1ab_0.conda
|
270 |
+
sha256: 98cc823775b794b6ce45f02af5e4b711065ed0787c8eaec027434dabdb308bf7
|
271 |
+
md5: 7d347962e391cffc68f922c344f7cb3c
|
272 |
+
depends:
|
273 |
+
- email_validator >=2.0.0
|
274 |
+
- fastapi-cli >=0.0.2
|
275 |
+
- httpx >=0.23.0
|
276 |
+
- jinja2 >=2.11.2
|
277 |
+
- orjson >=3.2.1
|
278 |
+
- pydantic >=1.7.4,!=1.8,!=1.8.1,!=2.0.0,!=2.0.1,!=2.1.0,<3.0.0
|
279 |
+
- python >=3.8
|
280 |
+
- python-multipart >=0.0.7
|
281 |
+
- starlette >=0.37.2,<0.38.0
|
282 |
+
- typing-extensions >=4.8.0
|
283 |
+
- ujson >=4.0.1,!=4.0.2,!=4.1.0,!=4.2.0,!=4.3.0,!=5.0.0,!=5.1.0
|
284 |
+
- uvicorn >=0.12.0
|
285 |
+
license: MIT
|
286 |
+
license_family: MIT
|
287 |
+
size: 71107
|
288 |
+
timestamp: 1715197099580
|
289 |
+
- kind: conda
|
290 |
+
name: fastapi-cli
|
291 |
+
version: 0.0.4
|
292 |
+
build: pyhd8ed1ab_0
|
293 |
+
subdir: noarch
|
294 |
+
noarch: python
|
295 |
+
url: https://conda.anaconda.org/conda-forge/noarch/fastapi-cli-0.0.4-pyhd8ed1ab_0.conda
|
296 |
+
sha256: 1b812ecef00b17b9b2714c4ea72de0272e817b95475b18af5400b26a6e571e71
|
297 |
+
md5: 2581ef67574e5b5400c0c151cc1c8b15
|
298 |
+
depends:
|
299 |
+
- fastapi
|
300 |
+
- python >=3.8
|
301 |
+
- typer >=0.12.3
|
302 |
+
- uvicorn >=0.15.0
|
303 |
+
license: MIT
|
304 |
+
license_family: MIT
|
305 |
+
size: 14596
|
306 |
+
timestamp: 1716205900682
|
307 |
+
- kind: conda
|
308 |
+
name: h11
|
309 |
+
version: 0.14.0
|
310 |
+
build: pyhd8ed1ab_0
|
311 |
+
subdir: noarch
|
312 |
+
noarch: python
|
313 |
+
url: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_0.tar.bz2
|
314 |
+
sha256: 817d2c77d53afe3f3d9cf7f6eb8745cdd8ea76c7adaa9d7ced75c455a2c2c085
|
315 |
+
md5: b21ed0883505ba1910994f1df031a428
|
316 |
+
depends:
|
317 |
+
- python >=3
|
318 |
+
- typing_extensions
|
319 |
+
license: MIT
|
320 |
+
license_family: MIT
|
321 |
+
size: 48251
|
322 |
+
timestamp: 1664132995560
|
323 |
+
- kind: conda
|
324 |
+
name: h2
|
325 |
+
version: 4.1.0
|
326 |
+
build: pyhd8ed1ab_0
|
327 |
+
subdir: noarch
|
328 |
+
noarch: python
|
329 |
+
url: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2
|
330 |
+
sha256: bfc6a23849953647f4e255c782e74a0e18fe16f7e25c7bb0bc57b83bb6762c7a
|
331 |
+
md5: b748fbf7060927a6e82df7cb5ee8f097
|
332 |
+
depends:
|
333 |
+
- hpack >=4.0,<5
|
334 |
+
- hyperframe >=6.0,<7
|
335 |
+
- python >=3.6.1
|
336 |
+
license: MIT
|
337 |
+
license_family: MIT
|
338 |
+
size: 46754
|
339 |
+
timestamp: 1634280590080
|
340 |
+
- kind: conda
|
341 |
+
name: hpack
|
342 |
+
version: 4.0.0
|
343 |
+
build: pyh9f0ad1d_0
|
344 |
+
subdir: noarch
|
345 |
+
noarch: python
|
346 |
+
url: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2
|
347 |
+
sha256: 5dec948932c4f740674b1afb551223ada0c55103f4c7bf86a110454da3d27cb8
|
348 |
+
md5: 914d6646c4dbb1fd3ff539830a12fd71
|
349 |
+
depends:
|
350 |
+
- python
|
351 |
+
license: MIT
|
352 |
+
license_family: MIT
|
353 |
+
size: 25341
|
354 |
+
timestamp: 1598856368685
|
355 |
+
- kind: conda
|
356 |
+
name: httpcore
|
357 |
+
version: 1.0.5
|
358 |
+
build: pyhd8ed1ab_0
|
359 |
+
subdir: noarch
|
360 |
+
noarch: python
|
361 |
+
url: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.5-pyhd8ed1ab_0.conda
|
362 |
+
sha256: 4025644200eefa0598e4600a66fd4804a57d9fd7054a5c8c45e508fd875e0b84
|
363 |
+
md5: a6b9a0158301e697e4d0a36a3d60e133
|
364 |
+
depends:
|
365 |
+
- anyio >=3.0,<5.0
|
366 |
+
- certifi
|
367 |
+
- h11 >=0.13,<0.15
|
368 |
+
- h2 >=3,<5
|
369 |
+
- python >=3.8
|
370 |
+
- sniffio 1.*
|
371 |
+
license: BSD-3-Clause
|
372 |
+
license_family: BSD
|
373 |
+
size: 45816
|
374 |
+
timestamp: 1711597091407
|
375 |
+
- kind: conda
|
376 |
+
name: httpx
|
377 |
+
version: 0.27.0
|
378 |
+
build: pyhd8ed1ab_0
|
379 |
+
subdir: noarch
|
380 |
+
noarch: python
|
381 |
+
url: https://conda.anaconda.org/conda-forge/noarch/httpx-0.27.0-pyhd8ed1ab_0.conda
|
382 |
+
sha256: fdaf341fb2630b7afe8238315448fc93947f77ebfa4da68bb349e1bcf820af58
|
383 |
+
md5: 9f359af5a886fd6ca6b2b6ea02e58332
|
384 |
+
depends:
|
385 |
+
- anyio
|
386 |
+
- certifi
|
387 |
+
- httpcore 1.*
|
388 |
+
- idna
|
389 |
+
- python >=3.8
|
390 |
+
- sniffio
|
391 |
+
license: BSD-3-Clause
|
392 |
+
license_family: BSD
|
393 |
+
size: 64651
|
394 |
+
timestamp: 1708531043505
|
395 |
+
- kind: conda
|
396 |
+
name: hyperframe
|
397 |
+
version: 6.0.1
|
398 |
+
build: pyhd8ed1ab_0
|
399 |
+
subdir: noarch
|
400 |
+
noarch: python
|
401 |
+
url: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_0.tar.bz2
|
402 |
+
sha256: e374a9d0f53149328134a8d86f5d72bca4c6dcebed3c0ecfa968c02996289330
|
403 |
+
md5: 9f765cbfab6870c8435b9eefecd7a1f4
|
404 |
+
depends:
|
405 |
+
- python >=3.6
|
406 |
+
license: MIT
|
407 |
+
license_family: MIT
|
408 |
+
size: 14646
|
409 |
+
timestamp: 1619110249723
|
410 |
+
- kind: conda
|
411 |
+
name: idna
|
412 |
+
version: '3.7'
|
413 |
+
build: pyhd8ed1ab_0
|
414 |
+
subdir: noarch
|
415 |
+
noarch: python
|
416 |
+
url: https://conda.anaconda.org/conda-forge/noarch/idna-3.7-pyhd8ed1ab_0.conda
|
417 |
+
sha256: 9687ee909ed46169395d4f99a0ee94b80a52f87bed69cd454bb6d37ffeb0ec7b
|
418 |
+
md5: c0cc1420498b17414d8617d0b9f506ca
|
419 |
+
depends:
|
420 |
+
- python >=3.6
|
421 |
+
license: BSD-3-Clause
|
422 |
+
license_family: BSD
|
423 |
+
size: 52718
|
424 |
+
timestamp: 1713279497047
|
425 |
+
- kind: conda
|
426 |
+
name: jinja2
|
427 |
+
version: 3.1.4
|
428 |
+
build: pyhd8ed1ab_0
|
429 |
+
subdir: noarch
|
430 |
+
noarch: python
|
431 |
+
url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_0.conda
|
432 |
+
sha256: 27380d870d42d00350d2d52598cddaf02f9505fb24be09488da0c9b8d1428f2d
|
433 |
+
md5: 7b86ecb7d3557821c649b3c31e3eb9f2
|
434 |
+
depends:
|
435 |
+
- markupsafe >=2.0
|
436 |
+
- python >=3.7
|
437 |
+
license: BSD-3-Clause
|
438 |
+
license_family: BSD
|
439 |
+
size: 111565
|
440 |
+
timestamp: 1715127275924
|
441 |
+
- kind: conda
|
442 |
+
name: ld_impl_linux-64
|
443 |
+
version: '2.40'
|
444 |
+
build: hf3520f5_7
|
445 |
+
build_number: 7
|
446 |
+
subdir: linux-64
|
447 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-hf3520f5_7.conda
|
448 |
+
sha256: 764b6950aceaaad0c67ef925417594dd14cd2e22fff864aeef455ac259263d15
|
449 |
+
md5: b80f2f396ca2c28b8c14c437a4ed1e74
|
450 |
+
constrains:
|
451 |
+
- binutils_impl_linux-64 2.40
|
452 |
+
license: GPL-3.0-only
|
453 |
+
license_family: GPL
|
454 |
+
size: 707602
|
455 |
+
timestamp: 1718625640445
|
456 |
+
- kind: conda
|
457 |
+
name: libexpat
|
458 |
+
version: 2.6.2
|
459 |
+
build: h59595ed_0
|
460 |
+
subdir: linux-64
|
461 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.2-h59595ed_0.conda
|
462 |
+
sha256: 331bb7c7c05025343ebd79f86ae612b9e1e74d2687b8f3179faec234f986ce19
|
463 |
+
md5: e7ba12deb7020dd080c6c70e7b6f6a3d
|
464 |
+
depends:
|
465 |
+
- libgcc-ng >=12
|
466 |
+
constrains:
|
467 |
+
- expat 2.6.2.*
|
468 |
+
license: MIT
|
469 |
+
license_family: MIT
|
470 |
+
size: 73730
|
471 |
+
timestamp: 1710362120304
|
472 |
+
- kind: conda
|
473 |
+
name: libffi
|
474 |
+
version: 3.4.2
|
475 |
+
build: h7f98852_5
|
476 |
+
build_number: 5
|
477 |
+
subdir: linux-64
|
478 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2
|
479 |
+
sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e
|
480 |
+
md5: d645c6d2ac96843a2bfaccd2d62b3ac3
|
481 |
+
depends:
|
482 |
+
- libgcc-ng >=9.4.0
|
483 |
+
license: MIT
|
484 |
+
license_family: MIT
|
485 |
+
size: 58292
|
486 |
+
timestamp: 1636488182923
|
487 |
+
- kind: conda
|
488 |
+
name: libgcc-ng
|
489 |
+
version: 13.2.0
|
490 |
+
build: h77fa898_13
|
491 |
+
build_number: 13
|
492 |
+
subdir: linux-64
|
493 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h77fa898_13.conda
|
494 |
+
sha256: ffa0f472c8b37f864de855af2d3c057f1813162319f10ebd97332d73fc27ba60
|
495 |
+
md5: 9358cdd61ef0d600d2a0dde2d53b006c
|
496 |
+
depends:
|
497 |
+
- _libgcc_mutex 0.1 conda_forge
|
498 |
+
- _openmp_mutex >=4.5
|
499 |
+
constrains:
|
500 |
+
- libgomp 13.2.0 h77fa898_13
|
501 |
+
license: GPL-3.0-only WITH GCC-exception-3.1
|
502 |
+
size: 792721
|
503 |
+
timestamp: 1719179941452
|
504 |
+
- kind: conda
|
505 |
+
name: libgomp
|
506 |
+
version: 13.2.0
|
507 |
+
build: h77fa898_13
|
508 |
+
build_number: 13
|
509 |
+
subdir: linux-64
|
510 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.2.0-h77fa898_13.conda
|
511 |
+
sha256: c5949bec7eee93cdd5c367e6e5c5e92ee1c5139a827567af23853dd52721d8ed
|
512 |
+
md5: d370d1855cca14dff6a819c90c77497c
|
513 |
+
depends:
|
514 |
+
- _libgcc_mutex 0.1 conda_forge
|
515 |
+
license: GPL-3.0-only WITH GCC-exception-3.1
|
516 |
+
size: 444091
|
517 |
+
timestamp: 1719179831697
|
518 |
+
- kind: conda
|
519 |
+
name: libnsl
|
520 |
+
version: 2.0.1
|
521 |
+
build: hd590300_0
|
522 |
+
subdir: linux-64
|
523 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda
|
524 |
+
sha256: 26d77a3bb4dceeedc2a41bd688564fe71bf2d149fdcf117049970bc02ff1add6
|
525 |
+
md5: 30fd6e37fe21f86f4bd26d6ee73eeec7
|
526 |
+
depends:
|
527 |
+
- libgcc-ng >=12
|
528 |
+
license: LGPL-2.1-only
|
529 |
+
license_family: GPL
|
530 |
+
size: 33408
|
531 |
+
timestamp: 1697359010159
|
532 |
+
- kind: conda
|
533 |
+
name: libsqlite
|
534 |
+
version: 3.46.0
|
535 |
+
build: hde9e2c9_0
|
536 |
+
subdir: linux-64
|
537 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.46.0-hde9e2c9_0.conda
|
538 |
+
sha256: daee3f68786231dad457d0dfde3f7f1f9a7f2018adabdbb864226775101341a8
|
539 |
+
md5: 18aa975d2094c34aef978060ae7da7d8
|
540 |
+
depends:
|
541 |
+
- libgcc-ng >=12
|
542 |
+
- libzlib >=1.2.13,<2.0a0
|
543 |
+
license: Unlicense
|
544 |
+
size: 865346
|
545 |
+
timestamp: 1718050628718
|
546 |
+
- kind: conda
|
547 |
+
name: libstdcxx-ng
|
548 |
+
version: 13.2.0
|
549 |
+
build: hc0a3c3a_13
|
550 |
+
build_number: 13
|
551 |
+
subdir: linux-64
|
552 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.2.0-hc0a3c3a_13.conda
|
553 |
+
sha256: 143171c6084e526122cc2976fbbfadf7b9f50e5d13036adf20feb7ed9d036dd2
|
554 |
+
md5: 1053882642ed5bbc799e1e866ff86826
|
555 |
+
depends:
|
556 |
+
- libgcc-ng 13.2.0 h77fa898_13
|
557 |
+
license: GPL-3.0-only WITH GCC-exception-3.1
|
558 |
+
size: 3836375
|
559 |
+
timestamp: 1719179964037
|
560 |
+
- kind: conda
|
561 |
+
name: libuuid
|
562 |
+
version: 2.38.1
|
563 |
+
build: h0b41bf4_0
|
564 |
+
subdir: linux-64
|
565 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda
|
566 |
+
sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18
|
567 |
+
md5: 40b61aab5c7ba9ff276c41cfffe6b80b
|
568 |
+
depends:
|
569 |
+
- libgcc-ng >=12
|
570 |
+
license: BSD-3-Clause
|
571 |
+
license_family: BSD
|
572 |
+
size: 33601
|
573 |
+
timestamp: 1680112270483
|
574 |
+
- kind: conda
|
575 |
+
name: libxcrypt
|
576 |
+
version: 4.4.36
|
577 |
+
build: hd590300_1
|
578 |
+
build_number: 1
|
579 |
+
subdir: linux-64
|
580 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
|
581 |
+
sha256: 6ae68e0b86423ef188196fff6207ed0c8195dd84273cb5623b85aa08033a410c
|
582 |
+
md5: 5aa797f8787fe7a17d1b0821485b5adc
|
583 |
+
depends:
|
584 |
+
- libgcc-ng >=12
|
585 |
+
license: LGPL-2.1-or-later
|
586 |
+
size: 100393
|
587 |
+
timestamp: 1702724383534
|
588 |
+
- kind: conda
|
589 |
+
name: libzlib
|
590 |
+
version: 1.3.1
|
591 |
+
build: h4ab18f5_1
|
592 |
+
build_number: 1
|
593 |
+
subdir: linux-64
|
594 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-h4ab18f5_1.conda
|
595 |
+
sha256: adf6096f98b537a11ae3729eaa642b0811478f0ea0402ca67b5108fe2cb0010d
|
596 |
+
md5: 57d7dc60e9325e3de37ff8dffd18e814
|
597 |
+
depends:
|
598 |
+
- libgcc-ng >=12
|
599 |
+
constrains:
|
600 |
+
- zlib 1.3.1 *_1
|
601 |
+
license: Zlib
|
602 |
+
license_family: Other
|
603 |
+
size: 61574
|
604 |
+
timestamp: 1716874187109
|
605 |
+
- kind: conda
|
606 |
+
name: markdown-it-py
|
607 |
+
version: 3.0.0
|
608 |
+
build: pyhd8ed1ab_0
|
609 |
+
subdir: noarch
|
610 |
+
noarch: python
|
611 |
+
url: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda
|
612 |
+
sha256: c041b0eaf7a6af3344d5dd452815cdc148d6284fec25a4fa3f4263b3a021e962
|
613 |
+
md5: 93a8e71256479c62074356ef6ebf501b
|
614 |
+
depends:
|
615 |
+
- mdurl >=0.1,<1
|
616 |
+
- python >=3.8
|
617 |
+
license: MIT
|
618 |
+
license_family: MIT
|
619 |
+
size: 64356
|
620 |
+
timestamp: 1686175179621
|
621 |
+
- kind: conda
|
622 |
+
name: markupsafe
|
623 |
+
version: 2.1.5
|
624 |
+
build: py312h98912ed_0
|
625 |
+
subdir: linux-64
|
626 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.5-py312h98912ed_0.conda
|
627 |
+
sha256: 273d8efd6c089c534ccbede566394c0ac1e265bfe5d89fe76e80332f3d75a636
|
628 |
+
md5: 6ff0b9582da2d4a74a1f9ae1f9ce2af6
|
629 |
+
depends:
|
630 |
+
- libgcc-ng >=12
|
631 |
+
- python >=3.12,<3.13.0a0
|
632 |
+
- python_abi 3.12.* *_cp312
|
633 |
+
constrains:
|
634 |
+
- jinja2 >=3.0.0
|
635 |
+
license: BSD-3-Clause
|
636 |
+
license_family: BSD
|
637 |
+
size: 26685
|
638 |
+
timestamp: 1706900070330
|
639 |
+
- kind: conda
|
640 |
+
name: mdurl
|
641 |
+
version: 0.1.2
|
642 |
+
build: pyhd8ed1ab_0
|
643 |
+
subdir: noarch
|
644 |
+
noarch: python
|
645 |
+
url: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda
|
646 |
+
sha256: 64073dfb6bb429d52fff30891877b48c7ec0f89625b1bf844905b66a81cce6e1
|
647 |
+
md5: 776a8dd9e824f77abac30e6ef43a8f7a
|
648 |
+
depends:
|
649 |
+
- python >=3.6
|
650 |
+
license: MIT
|
651 |
+
license_family: MIT
|
652 |
+
size: 14680
|
653 |
+
timestamp: 1704317789138
|
654 |
+
- kind: conda
|
655 |
+
name: ncurses
|
656 |
+
version: '6.5'
|
657 |
+
build: h59595ed_0
|
658 |
+
subdir: linux-64
|
659 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-h59595ed_0.conda
|
660 |
+
sha256: 4fc3b384f4072b68853a0013ea83bdfd3d66b0126e2238e1d6e1560747aa7586
|
661 |
+
md5: fcea371545eda051b6deafb24889fc69
|
662 |
+
depends:
|
663 |
+
- libgcc-ng >=12
|
664 |
+
license: X11 AND BSD-3-Clause
|
665 |
+
size: 887465
|
666 |
+
timestamp: 1715194722503
|
667 |
+
- kind: conda
|
668 |
+
name: openssl
|
669 |
+
version: 3.3.1
|
670 |
+
build: h4ab18f5_0
|
671 |
+
subdir: linux-64
|
672 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.1-h4ab18f5_0.conda
|
673 |
+
sha256: 9691f8bd6394c5bb0b8d2f47cd1467b91bd5b1df923b69e6b517f54496ee4b50
|
674 |
+
md5: a41fa0e391cc9e0d6b78ac69ca047a6c
|
675 |
+
depends:
|
676 |
+
- ca-certificates
|
677 |
+
- libgcc-ng >=12
|
678 |
+
constrains:
|
679 |
+
- pyopenssl >=22.1
|
680 |
+
license: Apache-2.0
|
681 |
+
license_family: Apache
|
682 |
+
size: 2896170
|
683 |
+
timestamp: 1717546157673
|
684 |
+
- kind: conda
|
685 |
+
name: orjson
|
686 |
+
version: 3.10.4
|
687 |
+
build: py312h4413252_0
|
688 |
+
subdir: linux-64
|
689 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/orjson-3.10.4-py312h4413252_0.conda
|
690 |
+
sha256: 151ec36bd567e5452e4d8b9ac809f2c2afa0b08764f35bbd0ad7c4e4adea1934
|
691 |
+
md5: e2b1cf11cd52bc9fee6a53f14b3e1308
|
692 |
+
depends:
|
693 |
+
- libgcc-ng >=12
|
694 |
+
- python >=3.12,<3.13.0a0
|
695 |
+
- python_abi 3.12.* *_cp312
|
696 |
+
license: Apache-2.0
|
697 |
+
license_family: Apache
|
698 |
+
size: 281782
|
699 |
+
timestamp: 1718073447255
|
700 |
+
- kind: conda
|
701 |
+
name: pydantic
|
702 |
+
version: 2.7.4
|
703 |
+
build: pyhd8ed1ab_0
|
704 |
+
subdir: noarch
|
705 |
+
noarch: python
|
706 |
+
url: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.7.4-pyhd8ed1ab_0.conda
|
707 |
+
sha256: 329de082dbf174fa7ce3136eb747edfb5c63eb7c77d789ae275040b17fc92471
|
708 |
+
md5: 20ebbfbc8ce3fc9d1955e9fd31accbb1
|
709 |
+
depends:
|
710 |
+
- annotated-types >=0.4.0
|
711 |
+
- pydantic-core 2.18.4
|
712 |
+
- python >=3.7
|
713 |
+
- typing-extensions >=4.6.1
|
714 |
+
license: MIT
|
715 |
+
license_family: MIT
|
716 |
+
size: 281971
|
717 |
+
timestamp: 1718228801146
|
718 |
+
- kind: conda
|
719 |
+
name: pydantic-core
|
720 |
+
version: 2.18.4
|
721 |
+
build: py312h4413252_0
|
722 |
+
subdir: linux-64
|
723 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/pydantic-core-2.18.4-py312h4413252_0.conda
|
724 |
+
sha256: d7af4fa02992b9f883a4c4be4db75321e82b0f77fac15a7abd5f2ca9917d1cb1
|
725 |
+
md5: 760628de5ba09598d4ab4cd9d021228b
|
726 |
+
depends:
|
727 |
+
- libgcc-ng >=12
|
728 |
+
- python >=3.12,<3.13.0a0
|
729 |
+
- python_abi 3.12.* *_cp312
|
730 |
+
- typing-extensions >=4.6.0,!=4.7.0
|
731 |
+
license: MIT
|
732 |
+
license_family: MIT
|
733 |
+
size: 1634127
|
734 |
+
timestamp: 1717463219555
|
735 |
+
- kind: conda
|
736 |
+
name: pygments
|
737 |
+
version: 2.18.0
|
738 |
+
build: pyhd8ed1ab_0
|
739 |
+
subdir: noarch
|
740 |
+
noarch: python
|
741 |
+
url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_0.conda
|
742 |
+
sha256: 78267adf4e76d0d64ea2ffab008c501156c108bb08fecb703816fb63e279780b
|
743 |
+
md5: b7f5c092b8f9800150d998a71b76d5a1
|
744 |
+
depends:
|
745 |
+
- python >=3.8
|
746 |
+
license: BSD-2-Clause
|
747 |
+
license_family: BSD
|
748 |
+
size: 879295
|
749 |
+
timestamp: 1714846885370
|
750 |
+
- kind: conda
|
751 |
+
name: python
|
752 |
+
version: 3.12.4
|
753 |
+
build: h194c7f8_0_cpython
|
754 |
+
subdir: linux-64
|
755 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.4-h194c7f8_0_cpython.conda
|
756 |
+
sha256: 97a78631e6c928bf7ad78d52f7f070fcf3bd37619fa48dc4394c21cf3058cdee
|
757 |
+
md5: d73490214f536cccb5819e9873048c92
|
758 |
+
depends:
|
759 |
+
- bzip2 >=1.0.8,<2.0a0
|
760 |
+
- ld_impl_linux-64 >=2.36.1
|
761 |
+
- libexpat >=2.6.2,<3.0a0
|
762 |
+
- libffi >=3.4,<4.0a0
|
763 |
+
- libgcc-ng >=12
|
764 |
+
- libnsl >=2.0.1,<2.1.0a0
|
765 |
+
- libsqlite >=3.46.0,<4.0a0
|
766 |
+
- libuuid >=2.38.1,<3.0a0
|
767 |
+
- libxcrypt >=4.4.36
|
768 |
+
- libzlib >=1.3.1,<2.0a0
|
769 |
+
- ncurses >=6.5,<7.0a0
|
770 |
+
- openssl >=3.3.1,<4.0a0
|
771 |
+
- readline >=8.2,<9.0a0
|
772 |
+
- tk >=8.6.13,<8.7.0a0
|
773 |
+
- tzdata
|
774 |
+
- xz >=5.2.6,<6.0a0
|
775 |
+
constrains:
|
776 |
+
- python_abi 3.12.* *_cp312
|
777 |
+
license: Python-2.0
|
778 |
+
size: 32073625
|
779 |
+
timestamp: 1718621771849
|
780 |
+
- kind: conda
|
781 |
+
name: python-multipart
|
782 |
+
version: 0.0.9
|
783 |
+
build: pyhd8ed1ab_0
|
784 |
+
subdir: noarch
|
785 |
+
noarch: python
|
786 |
+
url: https://conda.anaconda.org/conda-forge/noarch/python-multipart-0.0.9-pyhd8ed1ab_0.conda
|
787 |
+
sha256: 026467128031bd667c4a32555ae07e922d5caed257e4815c44e7338887bbd56a
|
788 |
+
md5: 0eef653965f0fed2013924d08089f371
|
789 |
+
depends:
|
790 |
+
- python >=3.7
|
791 |
+
license: Apache-2.0
|
792 |
+
license_family: Apache
|
793 |
+
size: 26439
|
794 |
+
timestamp: 1707760278735
|
795 |
+
- kind: conda
|
796 |
+
name: python_abi
|
797 |
+
version: '3.12'
|
798 |
+
build: 4_cp312
|
799 |
+
build_number: 4
|
800 |
+
subdir: linux-64
|
801 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.12-4_cp312.conda
|
802 |
+
sha256: 182a329de10a4165f6e8a3804caf751f918f6ea6176dd4e5abcdae1ed3095bf6
|
803 |
+
md5: dccc2d142812964fcc6abdc97b672dff
|
804 |
+
constrains:
|
805 |
+
- python 3.12.* *_cpython
|
806 |
+
license: BSD-3-Clause
|
807 |
+
license_family: BSD
|
808 |
+
size: 6385
|
809 |
+
timestamp: 1695147396604
|
810 |
+
- kind: conda
|
811 |
+
name: readline
|
812 |
+
version: '8.2'
|
813 |
+
build: h8228510_1
|
814 |
+
build_number: 1
|
815 |
+
subdir: linux-64
|
816 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda
|
817 |
+
sha256: 5435cf39d039387fbdc977b0a762357ea909a7694d9528ab40f005e9208744d7
|
818 |
+
md5: 47d31b792659ce70f470b5c82fdfb7a4
|
819 |
+
depends:
|
820 |
+
- libgcc-ng >=12
|
821 |
+
- ncurses >=6.3,<7.0a0
|
822 |
+
license: GPL-3.0-only
|
823 |
+
license_family: GPL
|
824 |
+
size: 281456
|
825 |
+
timestamp: 1679532220005
|
826 |
+
- kind: conda
|
827 |
+
name: rich
|
828 |
+
version: 13.7.1
|
829 |
+
build: pyhd8ed1ab_0
|
830 |
+
subdir: noarch
|
831 |
+
noarch: python
|
832 |
+
url: https://conda.anaconda.org/conda-forge/noarch/rich-13.7.1-pyhd8ed1ab_0.conda
|
833 |
+
sha256: 2b26d58aa59e46f933c3126367348651b0dab6e0bf88014e857415bb184a4667
|
834 |
+
md5: ba445bf767ae6f0d959ff2b40c20912b
|
835 |
+
depends:
|
836 |
+
- markdown-it-py >=2.2.0
|
837 |
+
- pygments >=2.13.0,<3.0.0
|
838 |
+
- python >=3.7.0
|
839 |
+
- typing_extensions >=4.0.0,<5.0.0
|
840 |
+
license: MIT
|
841 |
+
license_family: MIT
|
842 |
+
size: 184347
|
843 |
+
timestamp: 1709150578093
|
844 |
+
- kind: conda
|
845 |
+
name: shellingham
|
846 |
+
version: 1.5.4
|
847 |
+
build: pyhd8ed1ab_0
|
848 |
+
subdir: noarch
|
849 |
+
noarch: python
|
850 |
+
url: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_0.conda
|
851 |
+
sha256: 3c49a0a101c41b7cf6ac05a1872d7a1f91f1b6d02eecb4a36b605a19517862bb
|
852 |
+
md5: d08db09a552699ee9e7eec56b4eb3899
|
853 |
+
depends:
|
854 |
+
- python >=3.7
|
855 |
+
license: MIT
|
856 |
+
license_family: MIT
|
857 |
+
size: 14568
|
858 |
+
timestamp: 1698144516278
|
859 |
+
- kind: conda
|
860 |
+
name: sniffio
|
861 |
+
version: 1.3.1
|
862 |
+
build: pyhd8ed1ab_0
|
863 |
+
subdir: noarch
|
864 |
+
noarch: python
|
865 |
+
url: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_0.conda
|
866 |
+
sha256: bc12100b2d8836b93c55068b463190505b8064d0fc7d025e89f20ebf22fe6c2b
|
867 |
+
md5: 490730480d76cf9c8f8f2849719c6e2b
|
868 |
+
depends:
|
869 |
+
- python >=3.7
|
870 |
+
license: Apache-2.0
|
871 |
+
license_family: Apache
|
872 |
+
size: 15064
|
873 |
+
timestamp: 1708953086199
|
874 |
+
- kind: conda
|
875 |
+
name: starlette
|
876 |
+
version: 0.37.2
|
877 |
+
build: pyhd8ed1ab_0
|
878 |
+
subdir: noarch
|
879 |
+
noarch: python
|
880 |
+
url: https://conda.anaconda.org/conda-forge/noarch/starlette-0.37.2-pyhd8ed1ab_0.conda
|
881 |
+
sha256: de3c43075fdc33c90cd8034e440638904268c46023dc2b14921a8355415dc40e
|
882 |
+
md5: 7e5550dfa3ed2c2019988cbb9f8302ea
|
883 |
+
depends:
|
884 |
+
- anyio <5,>=3.4.0
|
885 |
+
- python >=3.8
|
886 |
+
- typing_extensions >=3.10.0
|
887 |
+
license: BSD-3-Clause
|
888 |
+
license_family: BSD
|
889 |
+
size: 57620
|
890 |
+
timestamp: 1709667193131
|
891 |
+
- kind: conda
|
892 |
+
name: tk
|
893 |
+
version: 8.6.13
|
894 |
+
build: noxft_h4845f30_101
|
895 |
+
build_number: 101
|
896 |
+
subdir: linux-64
|
897 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda
|
898 |
+
sha256: e0569c9caa68bf476bead1bed3d79650bb080b532c64a4af7d8ca286c08dea4e
|
899 |
+
md5: d453b98d9c83e71da0741bb0ff4d76bc
|
900 |
+
depends:
|
901 |
+
- libgcc-ng >=12
|
902 |
+
- libzlib >=1.2.13,<2.0.0a0
|
903 |
+
license: TCL
|
904 |
+
license_family: BSD
|
905 |
+
size: 3318875
|
906 |
+
timestamp: 1699202167581
|
907 |
+
- kind: conda
|
908 |
+
name: typer
|
909 |
+
version: 0.12.3
|
910 |
+
build: pyhd8ed1ab_0
|
911 |
+
subdir: noarch
|
912 |
+
noarch: python
|
913 |
+
url: https://conda.anaconda.org/conda-forge/noarch/typer-0.12.3-pyhd8ed1ab_0.conda
|
914 |
+
sha256: b8b182303858c512fa04f38a3123c892958f708d2ae90afd35246da7c4829485
|
915 |
+
md5: 10efd02b22c39c0a46312ef7cb16d237
|
916 |
+
depends:
|
917 |
+
- python >=3.7
|
918 |
+
- typer-slim-standard 0.12.3 hd8ed1ab_0
|
919 |
+
license: MIT
|
920 |
+
license_family: MIT
|
921 |
+
size: 52670
|
922 |
+
timestamp: 1712702716762
|
923 |
+
- kind: conda
|
924 |
+
name: typer-slim
|
925 |
+
version: 0.12.3
|
926 |
+
build: pyhd8ed1ab_0
|
927 |
+
subdir: noarch
|
928 |
+
noarch: python
|
929 |
+
url: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.12.3-pyhd8ed1ab_0.conda
|
930 |
+
sha256: 01dcb54375c8eae54d13374ed3d5823635401c552340b87e67fdbbb507760596
|
931 |
+
md5: cf2c3a89f89644c53cadbfeb124914e9
|
932 |
+
depends:
|
933 |
+
- click >=8.0.0
|
934 |
+
- python >=3.7
|
935 |
+
- typing_extensions >=3.7.4.3
|
936 |
+
constrains:
|
937 |
+
- shellingham >=1.3.0,<2.0.0
|
938 |
+
- rich >=10.11.0,<14.0.0
|
939 |
+
- typer >=0.12.3,<0.12.4.0a0
|
940 |
+
license: MIT
|
941 |
+
license_family: MIT
|
942 |
+
size: 45674
|
943 |
+
timestamp: 1712702684668
|
944 |
+
- kind: conda
|
945 |
+
name: typer-slim-standard
|
946 |
+
version: 0.12.3
|
947 |
+
build: hd8ed1ab_0
|
948 |
+
subdir: noarch
|
949 |
+
noarch: generic
|
950 |
+
url: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.12.3-hd8ed1ab_0.conda
|
951 |
+
sha256: 06e2f8ca7e3f7168a39d3d2cc62ee1e220928e1e5a4370f4ade2566342c4a459
|
952 |
+
md5: 8e56b98837d17e6ace4dc455d905709a
|
953 |
+
depends:
|
954 |
+
- rich
|
955 |
+
- shellingham
|
956 |
+
- typer-slim 0.12.3 pyhd8ed1ab_0
|
957 |
+
license: MIT
|
958 |
+
license_family: MIT
|
959 |
+
size: 46047
|
960 |
+
timestamp: 1712702688759
|
961 |
+
- kind: conda
|
962 |
+
name: typing-extensions
|
963 |
+
version: 4.12.2
|
964 |
+
build: hd8ed1ab_0
|
965 |
+
subdir: noarch
|
966 |
+
noarch: python
|
967 |
+
url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda
|
968 |
+
sha256: d3b9a8ed6da7c9f9553c5fd8a4fca9c3e0ab712fa5f497859f82337d67533b73
|
969 |
+
md5: 52d648bd608f5737b123f510bb5514b5
|
970 |
+
depends:
|
971 |
+
- typing_extensions 4.12.2 pyha770c72_0
|
972 |
+
license: PSF-2.0
|
973 |
+
license_family: PSF
|
974 |
+
size: 10097
|
975 |
+
timestamp: 1717802659025
|
976 |
+
- kind: conda
|
977 |
+
name: typing_extensions
|
978 |
+
version: 4.12.2
|
979 |
+
build: pyha770c72_0
|
980 |
+
subdir: noarch
|
981 |
+
noarch: python
|
982 |
+
url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda
|
983 |
+
sha256: 0fce54f8ec3e59f5ef3bb7641863be4e1bf1279623e5af3d3fa726e8f7628ddb
|
984 |
+
md5: ebe6952715e1d5eb567eeebf25250fa7
|
985 |
+
depends:
|
986 |
+
- python >=3.8
|
987 |
+
license: PSF-2.0
|
988 |
+
license_family: PSF
|
989 |
+
size: 39888
|
990 |
+
timestamp: 1717802653893
|
991 |
+
- kind: conda
|
992 |
+
name: tzdata
|
993 |
+
version: 2024a
|
994 |
+
build: h0c530f3_0
|
995 |
+
subdir: noarch
|
996 |
+
noarch: generic
|
997 |
+
url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024a-h0c530f3_0.conda
|
998 |
+
sha256: 7b2b69c54ec62a243eb6fba2391b5e443421608c3ae5dbff938ad33ca8db5122
|
999 |
+
md5: 161081fc7cec0bfda0d86d7cb595f8d8
|
1000 |
+
license: LicenseRef-Public-Domain
|
1001 |
+
size: 119815
|
1002 |
+
timestamp: 1706886945727
|
1003 |
+
- kind: conda
|
1004 |
+
name: ujson
|
1005 |
+
version: 5.10.0
|
1006 |
+
build: py312h7070661_0
|
1007 |
+
subdir: linux-64
|
1008 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/ujson-5.10.0-py312h7070661_0.conda
|
1009 |
+
sha256: 36c39df244b96e501300ff9f11fb9648e9d82ea8a33ebb9afa17795e08875c0d
|
1010 |
+
md5: dd19f5820a3fd57aea70aaf88e6dd191
|
1011 |
+
depends:
|
1012 |
+
- libgcc-ng >=12
|
1013 |
+
- libstdcxx-ng >=12
|
1014 |
+
- python >=3.12,<3.13.0a0
|
1015 |
+
- python_abi 3.12.* *_cp312
|
1016 |
+
license: BSD-3-Clause
|
1017 |
+
license_family: BSD
|
1018 |
+
size: 52337
|
1019 |
+
timestamp: 1715783243655
|
1020 |
+
- kind: conda
|
1021 |
+
name: uvicorn
|
1022 |
+
version: 0.30.1
|
1023 |
+
build: py312h7900ff3_0
|
1024 |
+
subdir: linux-64
|
1025 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/uvicorn-0.30.1-py312h7900ff3_0.conda
|
1026 |
+
sha256: 36eafb2f2c03eb543a0c5d9bfe60061b91e59844bef00bbf643bd4c47b8e576d
|
1027 |
+
md5: 5bfc9003c6fbaa658f513f9c41bd2446
|
1028 |
+
depends:
|
1029 |
+
- click >=7.0
|
1030 |
+
- h11 >=0.8
|
1031 |
+
- python >=3.12,<3.13.0a0
|
1032 |
+
- python_abi 3.12.* *_cp312
|
1033 |
+
license: BSD-3-Clause
|
1034 |
+
license_family: BSD
|
1035 |
+
size: 132249
|
1036 |
+
timestamp: 1717405078297
|
1037 |
+
- kind: conda
|
1038 |
+
name: xz
|
1039 |
+
version: 5.2.6
|
1040 |
+
build: h166bdaf_0
|
1041 |
+
subdir: linux-64
|
1042 |
+
url: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2
|
1043 |
+
sha256: 03a6d28ded42af8a347345f82f3eebdd6807a08526d47899a42d62d319609162
|
1044 |
+
md5: 2161070d867d1b1204ea749c8eec4ef0
|
1045 |
+
depends:
|
1046 |
+
- libgcc-ng >=12
|
1047 |
+
license: LGPL-2.1 and GPL-2.0
|
1048 |
+
size: 418368
|
1049 |
+
timestamp: 1660346797927
|
pixi.toml
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[project]
|
2 |
+
name = "RembgApi"
|
3 |
+
version = "0.1.0"
|
4 |
+
description = "Add a short description here"
|
5 |
+
authors = ["EdvardsZ <edvards1999@gmail.com>"]
|
6 |
+
channels = ["conda-forge"]
|
7 |
+
platforms = ["linux-64"]
|
8 |
+
|
9 |
+
[tasks]
|
10 |
+
|
11 |
+
[dependencies]
|
12 |
+
fastapi = ">=0.111.0,<0.112"
|
13 |
+
uvicorn = ">=0.30.1,<0.31"
|
requirements.txt
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
fastapi
|
2 |
+
uvicorn[standard]
|