Spaces:
Running
Running
Delanoe Pirard
commited on
Commit
·
e93a448
1
Parent(s):
66f600f
clean 2
Browse files- agents/video_analyzer_agent.py +5 -1
- get_cookie.py +38 -0
- pyproject.toml +1 -0
- uv.lock +116 -0
agents/video_analyzer_agent.py
CHANGED
@@ -108,7 +108,11 @@ def download_video_and_analyze(video_url: str) -> str:
|
|
108 |
|
109 |
ydl_opts = {
|
110 |
'format': 'best',
|
111 |
-
|
|
|
|
|
|
|
|
|
112 |
}
|
113 |
|
114 |
with yt_dlp.YoutubeDL(ydl_opts) as ydl_download:
|
|
|
108 |
|
109 |
ydl_opts = {
|
110 |
'format': 'best',
|
111 |
+
'outtmpl': os.path.join("downloaded_videos", 'temp_video.%(ext)s'),
|
112 |
+
'quiet': True,
|
113 |
+
'extract_flat': True,
|
114 |
+
'ignoreerrors': True,
|
115 |
+
"cookies": os.getenv("YT_COOKIE", "")
|
116 |
}
|
117 |
|
118 |
with yt_dlp.YoutubeDL(ydl_opts) as ydl_download:
|
get_cookie.py
ADDED
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import tempfile
|
2 |
+
import browser_cookie3
|
3 |
+
from yt_dlp import YoutubeDL
|
4 |
+
|
5 |
+
def export_youtube_cookies_netscape(domain: str = "youtube.com") -> str:
|
6 |
+
"""
|
7 |
+
Exporte les cookies du navigateur (Chrome/Firefox) pour le domaine
|
8 |
+
spécifié dans un fichier au format Netscape (standard .txt).
|
9 |
+
Retourne le chemin du fichier temporaire.
|
10 |
+
"""
|
11 |
+
# Récupère les cookies du navigateur
|
12 |
+
# browser_cookie3 supporte 'chrome', 'firefox', 'edge'…
|
13 |
+
# cj = browser_cookie3.brave(domain_name=domain)
|
14 |
+
cj = browser_cookie3.librewolf(domain_name=domain)
|
15 |
+
|
16 |
+
# Crée un fichier temporaire en mode écriture texte
|
17 |
+
tmp = tempfile.NamedTemporaryFile(mode="w", delete=False, suffix=".txt")
|
18 |
+
# Format Netscape :
|
19 |
+
# domain \t include_subdomains \t path \t secure \t expires \t name \t value
|
20 |
+
for cookie in cj:
|
21 |
+
include_sub = "TRUE" if cookie.domain.startswith('.') else "FALSE"
|
22 |
+
secure_flag = "TRUE" if cookie.secure else "FALSE"
|
23 |
+
expires = cookie.expires or 0
|
24 |
+
line = "\t".join([
|
25 |
+
cookie.domain,
|
26 |
+
include_sub,
|
27 |
+
cookie.path,
|
28 |
+
secure_flag,
|
29 |
+
str(expires),
|
30 |
+
cookie.name,
|
31 |
+
cookie.value,
|
32 |
+
])
|
33 |
+
tmp.write(line + "\n")
|
34 |
+
|
35 |
+
tmp.flush()
|
36 |
+
return tmp.name
|
37 |
+
|
38 |
+
print(export_youtube_cookies_netscape())
|
pyproject.toml
CHANGED
@@ -5,6 +5,7 @@ description = "Add your description here"
|
|
5 |
requires-python = ">=3.11"
|
6 |
dependencies = [
|
7 |
"beautifulsoup4>=4.13.4",
|
|
|
8 |
"certifi>=2025.4.26",
|
9 |
"datasets>=3.5.1",
|
10 |
"dotenv>=0.9.9",
|
|
|
5 |
requires-python = ">=3.11"
|
6 |
dependencies = [
|
7 |
"beautifulsoup4>=4.13.4",
|
8 |
+
"browser-cookie3>=0.20.1",
|
9 |
"certifi>=2025.4.26",
|
10 |
"datasets>=3.5.1",
|
11 |
"dotenv>=0.9.9",
|
uv.lock
CHANGED
@@ -255,6 +255,21 @@ wheels = [
|
|
255 |
{ url = "https://files.pythonhosted.org/packages/5a/1b/5a24ea839b8370ba9057a60fb71b00d59fe5921469dcd1933ef75e8d7b80/bm25s-0.2.12-py3-none-any.whl", hash = "sha256:c9e38ad861d9fe47dc536f9f323dd12ac752790ca86f0168e7f95691470ede36", size = 54500 },
|
256 |
]
|
257 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
258 |
[[package]]
|
259 |
name = "cachetools"
|
260 |
version = "5.5.2"
|
@@ -861,6 +876,7 @@ version = "0.1.0"
|
|
861 |
source = { virtual = "." }
|
862 |
dependencies = [
|
863 |
{ name = "beautifulsoup4" },
|
|
|
864 |
{ name = "certifi" },
|
865 |
{ name = "datasets" },
|
866 |
{ name = "dotenv" },
|
@@ -908,6 +924,7 @@ dependencies = [
|
|
908 |
[package.metadata]
|
909 |
requires-dist = [
|
910 |
{ name = "beautifulsoup4", specifier = ">=4.13.4" },
|
|
|
911 |
{ name = "certifi", specifier = ">=2025.4.26" },
|
912 |
{ name = "datasets", specifier = ">=3.5.1" },
|
913 |
{ name = "dotenv", specifier = ">=0.9.9" },
|
@@ -1302,6 +1319,15 @@ wheels = [
|
|
1302 |
{ url = "https://files.pythonhosted.org/packages/04/96/92447566d16df59b2a776c0fb82dbc4d9e07cd95062562af01e408583fc4/itsdangerous-2.2.0-py3-none-any.whl", hash = "sha256:c6242fc49e35958c8b15141343aa660db5fc54d4f13a1db01a3f5891b98700ef", size = 16234 },
|
1303 |
]
|
1304 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1305 |
[[package]]
|
1306 |
name = "jinja2"
|
1307 |
version = "3.1.6"
|
@@ -1857,6 +1883,38 @@ wheels = [
|
|
1857 |
{ url = "https://files.pythonhosted.org/packages/d0/81/e66fc86539293282fd9cb7c9417438e897f369e79ffb62e1ae5e5154d4dd/llvmlite-0.44.0-cp313-cp313-win_amd64.whl", hash = "sha256:2fb7c4f2fb86cbae6dca3db9ab203eeea0e22d73b99bc2341cdf9de93612e930", size = 30331193 },
|
1858 |
]
|
1859 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1860 |
[[package]]
|
1861 |
name = "markdown-it-py"
|
1862 |
version = "3.0.0"
|
@@ -2813,6 +2871,24 @@ wheels = [
|
|
2813 |
{ url = "https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl", hash = "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc", size = 117552 },
|
2814 |
]
|
2815 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2816 |
[[package]]
|
2817 |
name = "pydantic"
|
2818 |
version = "2.11.4"
|
@@ -3050,6 +3126,22 @@ wheels = [
|
|
3050 |
{ url = "https://files.pythonhosted.org/packages/81/c4/34e93fe5f5429d7570ec1fa436f1986fb1f00c3e0f43a589fe2bbcd22c3f/pytz-2025.2-py2.py3-none-any.whl", hash = "sha256:5ddf76296dd8c44c26eb8f4b6f35488f3ccbf6fbbd7adee0b7262d43f0ec2f00", size = 509225 },
|
3051 |
]
|
3052 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3053 |
[[package]]
|
3054 |
name = "pyyaml"
|
3055 |
version = "6.0.2"
|
@@ -3416,6 +3508,18 @@ version = "1.0.0"
|
|
3416 |
source = { registry = "https://pypi.org/simple" }
|
3417 |
sdist = { url = "https://files.pythonhosted.org/packages/9e/bd/3704a8c3e0942d711c1299ebf7b9091930adae6675d7c8f476a7ce48653c/sgmllib3k-1.0.0.tar.gz", hash = "sha256:7868fb1c8bfa764c1ac563d3cf369c381d1325d36124933a726f29fcdaa812e9", size = 5750 }
|
3418 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3419 |
[[package]]
|
3420 |
name = "shellingham"
|
3421 |
version = "1.5.4"
|
@@ -3945,6 +4049,18 @@ dependencies = [
|
|
3945 |
]
|
3946 |
sdist = { url = "https://files.pythonhosted.org/packages/67/35/25e68fbc99e672127cc6fbb14b8ec1ba3dfef035bf1e4c90f78f24a80b7d/wikipedia-1.4.0.tar.gz", hash = "sha256:db0fad1829fdd441b1852306e9856398204dc0786d2996dd2e0c8bb8e26133b2", size = 27748 }
|
3947 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3948 |
[[package]]
|
3949 |
name = "wrapt"
|
3950 |
version = "1.17.2"
|
|
|
255 |
{ url = "https://files.pythonhosted.org/packages/5a/1b/5a24ea839b8370ba9057a60fb71b00d59fe5921469dcd1933ef75e8d7b80/bm25s-0.2.12-py3-none-any.whl", hash = "sha256:c9e38ad861d9fe47dc536f9f323dd12ac752790ca86f0168e7f95691470ede36", size = 54500 },
|
256 |
]
|
257 |
|
258 |
+
[[package]]
|
259 |
+
name = "browser-cookie3"
|
260 |
+
version = "0.20.1"
|
261 |
+
source = { registry = "https://pypi.org/simple" }
|
262 |
+
dependencies = [
|
263 |
+
{ name = "jeepney", marker = "'bsd' in sys_platform or sys_platform == 'linux'" },
|
264 |
+
{ name = "lz4" },
|
265 |
+
{ name = "pycryptodomex" },
|
266 |
+
{ name = "shadowcopy", marker = "sys_platform == 'win32'" },
|
267 |
+
]
|
268 |
+
sdist = { url = "https://files.pythonhosted.org/packages/e0/e1/652adea0ce25948e613ef78294c8ceaf4b32844aae00680d3a1712dde444/browser_cookie3-0.20.1.tar.gz", hash = "sha256:6d8d0744bf42a5327c951bdbcf77741db3455b8b4e840e18bab266d598368a12", size = 22665 }
|
269 |
+
wheels = [
|
270 |
+
{ url = "https://files.pythonhosted.org/packages/4e/57/2a716f4ecf6c50b2dbe27439507c480bb7ca5725edef82349ecdcfcdd084/browser_cookie3-0.20.1-py3-none-any.whl", hash = "sha256:4b38bf669d386250733c8339f0036e1cf09c3d8e4d326fd507b9afb84def13d6", size = 17229 },
|
271 |
+
]
|
272 |
+
|
273 |
[[package]]
|
274 |
name = "cachetools"
|
275 |
version = "5.5.2"
|
|
|
876 |
source = { virtual = "." }
|
877 |
dependencies = [
|
878 |
{ name = "beautifulsoup4" },
|
879 |
+
{ name = "browser-cookie3" },
|
880 |
{ name = "certifi" },
|
881 |
{ name = "datasets" },
|
882 |
{ name = "dotenv" },
|
|
|
924 |
[package.metadata]
|
925 |
requires-dist = [
|
926 |
{ name = "beautifulsoup4", specifier = ">=4.13.4" },
|
927 |
+
{ name = "browser-cookie3", specifier = ">=0.20.1" },
|
928 |
{ name = "certifi", specifier = ">=2025.4.26" },
|
929 |
{ name = "datasets", specifier = ">=3.5.1" },
|
930 |
{ name = "dotenv", specifier = ">=0.9.9" },
|
|
|
1319 |
{ url = "https://files.pythonhosted.org/packages/04/96/92447566d16df59b2a776c0fb82dbc4d9e07cd95062562af01e408583fc4/itsdangerous-2.2.0-py3-none-any.whl", hash = "sha256:c6242fc49e35958c8b15141343aa660db5fc54d4f13a1db01a3f5891b98700ef", size = 16234 },
|
1320 |
]
|
1321 |
|
1322 |
+
[[package]]
|
1323 |
+
name = "jeepney"
|
1324 |
+
version = "0.9.0"
|
1325 |
+
source = { registry = "https://pypi.org/simple" }
|
1326 |
+
sdist = { url = "https://files.pythonhosted.org/packages/7b/6f/357efd7602486741aa73ffc0617fb310a29b588ed0fd69c2399acbb85b0c/jeepney-0.9.0.tar.gz", hash = "sha256:cf0e9e845622b81e4a28df94c40345400256ec608d0e55bb8a3feaa9163f5732", size = 106758 }
|
1327 |
+
wheels = [
|
1328 |
+
{ url = "https://files.pythonhosted.org/packages/b2/a3/e137168c9c44d18eff0376253da9f1e9234d0239e0ee230d2fee6cea8e55/jeepney-0.9.0-py3-none-any.whl", hash = "sha256:97e5714520c16fc0a45695e5365a2e11b81ea79bba796e26f9f1d178cb182683", size = 49010 },
|
1329 |
+
]
|
1330 |
+
|
1331 |
[[package]]
|
1332 |
name = "jinja2"
|
1333 |
version = "3.1.6"
|
|
|
1883 |
{ url = "https://files.pythonhosted.org/packages/d0/81/e66fc86539293282fd9cb7c9417438e897f369e79ffb62e1ae5e5154d4dd/llvmlite-0.44.0-cp313-cp313-win_amd64.whl", hash = "sha256:2fb7c4f2fb86cbae6dca3db9ab203eeea0e22d73b99bc2341cdf9de93612e930", size = 30331193 },
|
1884 |
]
|
1885 |
|
1886 |
+
[[package]]
|
1887 |
+
name = "lz4"
|
1888 |
+
version = "4.4.4"
|
1889 |
+
source = { registry = "https://pypi.org/simple" }
|
1890 |
+
sdist = { url = "https://files.pythonhosted.org/packages/c6/5a/945f5086326d569f14c84ac6f7fcc3229f0b9b1e8cc536b951fd53dfb9e1/lz4-4.4.4.tar.gz", hash = "sha256:070fd0627ec4393011251a094e08ed9fdcc78cb4e7ab28f507638eee4e39abda", size = 171884 }
|
1891 |
+
wheels = [
|
1892 |
+
{ url = "https://files.pythonhosted.org/packages/28/e8/63843dc5ecb1529eb38e1761ceed04a0ad52a9ad8929ab8b7930ea2e4976/lz4-4.4.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ddfc7194cd206496c445e9e5b0c47f970ce982c725c87bd22de028884125b68f", size = 220898 },
|
1893 |
+
{ url = "https://files.pythonhosted.org/packages/e4/94/c53de5f07c7dc11cf459aab2a1d754f5df5f693bfacbbe1e4914bfd02f1e/lz4-4.4.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:714f9298c86f8e7278f1c6af23e509044782fa8220eb0260f8f8f1632f820550", size = 189685 },
|
1894 |
+
{ url = "https://files.pythonhosted.org/packages/fe/59/c22d516dd0352f2a3415d1f665ccef2f3e74ecec3ca6a8f061a38f97d50d/lz4-4.4.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a8474c91de47733856c6686df3c4aca33753741da7e757979369c2c0d32918ba", size = 1239225 },
|
1895 |
+
{ url = "https://files.pythonhosted.org/packages/81/af/665685072e71f3f0e626221b7922867ec249cd8376aca761078c8f11f5da/lz4-4.4.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80dd27d7d680ea02c261c226acf1d41de2fd77af4fb2da62b278a9376e380de0", size = 1265881 },
|
1896 |
+
{ url = "https://files.pythonhosted.org/packages/90/04/b4557ae381d3aa451388a29755cc410066f5e2f78c847f66f154f4520a68/lz4-4.4.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9b7d6dddfd01b49aedb940fdcaf32f41dc58c926ba35f4e31866aeec2f32f4f4", size = 1185593 },
|
1897 |
+
{ url = "https://files.pythonhosted.org/packages/7b/e4/03636979f4e8bf92c557f998ca98ee4e6ef92e92eaf0ed6d3c7f2524e790/lz4-4.4.4-cp311-cp311-win32.whl", hash = "sha256:4134b9fd70ac41954c080b772816bb1afe0c8354ee993015a83430031d686a4c", size = 88259 },
|
1898 |
+
{ url = "https://files.pythonhosted.org/packages/07/f0/9efe53b4945441a5d2790d455134843ad86739855b7e6199977bf6dc8898/lz4-4.4.4-cp311-cp311-win_amd64.whl", hash = "sha256:f5024d3ca2383470f7c4ef4d0ed8eabad0b22b23eeefde1c192cf1a38d5e9f78", size = 99916 },
|
1899 |
+
{ url = "https://files.pythonhosted.org/packages/87/c8/1675527549ee174b9e1db089f7ddfbb962a97314657269b1e0344a5eaf56/lz4-4.4.4-cp311-cp311-win_arm64.whl", hash = "sha256:6ea715bb3357ea1665f77874cf8f55385ff112553db06f3742d3cdcec08633f7", size = 89741 },
|
1900 |
+
{ url = "https://files.pythonhosted.org/packages/f7/2d/5523b4fabe11cd98f040f715728d1932eb7e696bfe94391872a823332b94/lz4-4.4.4-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:23ae267494fdd80f0d2a131beff890cf857f1b812ee72dbb96c3204aab725553", size = 220669 },
|
1901 |
+
{ url = "https://files.pythonhosted.org/packages/91/06/1a5bbcacbfb48d8ee5b6eb3fca6aa84143a81d92946bdb5cd6b005f1863e/lz4-4.4.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:fff9f3a1ed63d45cb6514bfb8293005dc4141341ce3500abdfeb76124c0b9b2e", size = 189661 },
|
1902 |
+
{ url = "https://files.pythonhosted.org/packages/fa/08/39eb7ac907f73e11a69a11576a75a9e36406b3241c0ba41453a7eb842abb/lz4-4.4.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1ea7f07329f85a8eda4d8cf937b87f27f0ac392c6400f18bea2c667c8b7f8ecc", size = 1238775 },
|
1903 |
+
{ url = "https://files.pythonhosted.org/packages/e9/26/05840fbd4233e8d23e88411a066ab19f1e9de332edddb8df2b6a95c7fddc/lz4-4.4.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8ccab8f7f7b82f9fa9fc3b0ba584d353bd5aa818d5821d77d5b9447faad2aaad", size = 1265143 },
|
1904 |
+
{ url = "https://files.pythonhosted.org/packages/b7/5d/5f2db18c298a419932f3ab2023deb689863cf8fd7ed875b1c43492479af2/lz4-4.4.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e43e9d48b2daf80e486213128b0763deed35bbb7a59b66d1681e205e1702d735", size = 1185032 },
|
1905 |
+
{ url = "https://files.pythonhosted.org/packages/c4/e6/736ab5f128694b0f6aac58343bcf37163437ac95997276cd0be3ea4c3342/lz4-4.4.4-cp312-cp312-win32.whl", hash = "sha256:33e01e18e4561b0381b2c33d58e77ceee850a5067f0ece945064cbaac2176962", size = 88284 },
|
1906 |
+
{ url = "https://files.pythonhosted.org/packages/40/b8/243430cb62319175070e06e3a94c4c7bd186a812e474e22148ae1290d47d/lz4-4.4.4-cp312-cp312-win_amd64.whl", hash = "sha256:d21d1a2892a2dcc193163dd13eaadabb2c1b803807a5117d8f8588b22eaf9f12", size = 99918 },
|
1907 |
+
{ url = "https://files.pythonhosted.org/packages/6c/e1/0686c91738f3e6c2e1a243e0fdd4371667c4d2e5009b0a3605806c2aa020/lz4-4.4.4-cp312-cp312-win_arm64.whl", hash = "sha256:2f4f2965c98ab254feddf6b5072854a6935adab7bc81412ec4fe238f07b85f62", size = 89736 },
|
1908 |
+
{ url = "https://files.pythonhosted.org/packages/3b/3c/d1d1b926d3688263893461e7c47ed7382a969a0976fc121fc678ec325fc6/lz4-4.4.4-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:ed6eb9f8deaf25ee4f6fad9625d0955183fdc90c52b6f79a76b7f209af1b6e54", size = 220678 },
|
1909 |
+
{ url = "https://files.pythonhosted.org/packages/26/89/8783d98deb058800dabe07e6cdc90f5a2a8502a9bad8c5343c641120ace2/lz4-4.4.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:18ae4fe3bafb344dbd09f976d45cbf49c05c34416f2462828f9572c1fa6d5af7", size = 189670 },
|
1910 |
+
{ url = "https://files.pythonhosted.org/packages/22/ab/a491ace69a83a8914a49f7391e92ca0698f11b28d5ce7b2ececa2be28e9a/lz4-4.4.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:57fd20c5fc1a49d1bbd170836fccf9a338847e73664f8e313dce6ac91b8c1e02", size = 1238746 },
|
1911 |
+
{ url = "https://files.pythonhosted.org/packages/97/12/a1f2f4fdc6b7159c0d12249456f9fe454665b6126e98dbee9f2bd3cf735c/lz4-4.4.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9cb387c33f014dae4db8cb4ba789c8d2a0a6d045ddff6be13f6c8d9def1d2a6", size = 1265119 },
|
1912 |
+
{ url = "https://files.pythonhosted.org/packages/50/6e/e22e50f5207649db6ea83cd31b79049118305be67e96bec60becf317afc6/lz4-4.4.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d0be9f68240231e1e44118a4ebfecd8a5d4184f0bdf5c591c98dd6ade9720afd", size = 1184954 },
|
1913 |
+
{ url = "https://files.pythonhosted.org/packages/4c/c4/2a458039645fcc6324ece731d4d1361c5daf960b553d1fcb4261ba07d51c/lz4-4.4.4-cp313-cp313-win32.whl", hash = "sha256:e9ec5d45ea43684f87c316542af061ef5febc6a6b322928f059ce1fb289c298a", size = 88289 },
|
1914 |
+
{ url = "https://files.pythonhosted.org/packages/00/96/b8e24ea7537ab418074c226279acfcaa470e1ea8271003e24909b6db942b/lz4-4.4.4-cp313-cp313-win_amd64.whl", hash = "sha256:a760a175b46325b2bb33b1f2bbfb8aa21b48e1b9653e29c10b6834f9bb44ead4", size = 99925 },
|
1915 |
+
{ url = "https://files.pythonhosted.org/packages/a5/a5/f9838fe6aa132cfd22733ed2729d0592259fff074cefb80f19aa0607367b/lz4-4.4.4-cp313-cp313-win_arm64.whl", hash = "sha256:f4c21648d81e0dda38b4720dccc9006ae33b0e9e7ffe88af6bf7d4ec124e2fba", size = 89743 },
|
1916 |
+
]
|
1917 |
+
|
1918 |
[[package]]
|
1919 |
name = "markdown-it-py"
|
1920 |
version = "3.0.0"
|
|
|
2871 |
{ url = "https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl", hash = "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc", size = 117552 },
|
2872 |
]
|
2873 |
|
2874 |
+
[[package]]
|
2875 |
+
name = "pycryptodomex"
|
2876 |
+
version = "3.22.0"
|
2877 |
+
source = { registry = "https://pypi.org/simple" }
|
2878 |
+
sdist = { url = "https://files.pythonhosted.org/packages/ba/d5/861a7daada160fcf6b0393fb741eeb0d0910b039ad7f0cd56c39afdd4a20/pycryptodomex-3.22.0.tar.gz", hash = "sha256:a1da61bacc22f93a91cbe690e3eb2022a03ab4123690ab16c46abb693a9df63d", size = 4917584 }
|
2879 |
+
wheels = [
|
2880 |
+
{ url = "https://files.pythonhosted.org/packages/62/c2/8c97e649ccd3886eaf4918bd87791d3b52e80ba5b9c4678e2b631f2f8340/pycryptodomex-3.22.0-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:aef4590263b9f2f6283469e998574d0bd45c14fb262241c27055b82727426157", size = 2494197 },
|
2881 |
+
{ url = "https://files.pythonhosted.org/packages/f1/62/e947c35efebf95ba9bfe3fd76d766caa8d66d3f5d440fca05328c18b3352/pycryptodomex-3.22.0-cp37-abi3-macosx_10_9_x86_64.whl", hash = "sha256:5ac608a6dce9418d4f300fab7ba2f7d499a96b462f2b9b5c90d8d994cd36dcad", size = 1638999 },
|
2882 |
+
{ url = "https://files.pythonhosted.org/packages/51/af/f877f8ec1c4185e3ede3bf2beb286e5150099d2b3cba528c98d832372f38/pycryptodomex-3.22.0-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7a24f681365ec9757ccd69b85868bbd7216ba451d0f86f6ea0eed75eeb6975db", size = 2181008 },
|
2883 |
+
{ url = "https://files.pythonhosted.org/packages/6f/72/e7e748c682c889f30a0a7c3072a27a002b50a6cf5912ad1ce1269e327f40/pycryptodomex-3.22.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:259664c4803a1fa260d5afb322972813c5fe30ea8b43e54b03b7e3a27b30856b", size = 2267300 },
|
2884 |
+
{ url = "https://files.pythonhosted.org/packages/a9/ff/c45a97427aefbea07e8e6f2e08b10b4f2b287b99997bd22a4cef913e53a6/pycryptodomex-3.22.0-cp37-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7127d9de3c7ce20339e06bcd4f16f1a1a77f1471bcf04e3b704306dde101b719", size = 2306939 },
|
2885 |
+
{ url = "https://files.pythonhosted.org/packages/80/c7/cfbdd748a45b7fe8769a5494f130b092e9392e780ad204b5bc39c1a3a521/pycryptodomex-3.22.0-cp37-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:ee75067b35c93cc18b38af47b7c0664998d8815174cfc66dd00ea1e244eb27e6", size = 2180286 },
|
2886 |
+
{ url = "https://files.pythonhosted.org/packages/91/db/26f5d2af7cf809acfe1d1d7182a81fc0d0c13c26dd995b22c5b41be28bf9/pycryptodomex-3.22.0-cp37-abi3-musllinux_1_2_i686.whl", hash = "sha256:1a8b0c5ba061ace4bcd03496d42702c3927003db805b8ec619ea6506080b381d", size = 2340887 },
|
2887 |
+
{ url = "https://files.pythonhosted.org/packages/a1/4c/78307b989d4855f806fff16424f837400e22df3695725f6aa45553e3a13c/pycryptodomex-3.22.0-cp37-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:bfe4fe3233ef3e58028a3ad8f28473653b78c6d56e088ea04fe7550c63d4d16b", size = 2265831 },
|
2888 |
+
{ url = "https://files.pythonhosted.org/packages/fb/ad/cc69805083af164419a4413bc0ebc791e17103327da6979b14d5d3c7e7e5/pycryptodomex-3.22.0-cp37-abi3-win32.whl", hash = "sha256:2cac9ed5c343bb3d0075db6e797e6112514764d08d667c74cb89b931aac9dddd", size = 1766824 },
|
2889 |
+
{ url = "https://files.pythonhosted.org/packages/15/c8/79ab16e5b95a8988caee792236a776beceabcaa2518979d4e21b6ee20f57/pycryptodomex-3.22.0-cp37-abi3-win_amd64.whl", hash = "sha256:ff46212fda7ee86ec2f4a64016c994e8ad80f11ef748131753adb67e9b722ebd", size = 1797989 },
|
2890 |
+
]
|
2891 |
+
|
2892 |
[[package]]
|
2893 |
name = "pydantic"
|
2894 |
version = "2.11.4"
|
|
|
3126 |
{ url = "https://files.pythonhosted.org/packages/81/c4/34e93fe5f5429d7570ec1fa436f1986fb1f00c3e0f43a589fe2bbcd22c3f/pytz-2025.2-py2.py3-none-any.whl", hash = "sha256:5ddf76296dd8c44c26eb8f4b6f35488f3ccbf6fbbd7adee0b7262d43f0ec2f00", size = 509225 },
|
3127 |
]
|
3128 |
|
3129 |
+
[[package]]
|
3130 |
+
name = "pywin32"
|
3131 |
+
version = "310"
|
3132 |
+
source = { registry = "https://pypi.org/simple" }
|
3133 |
+
wheels = [
|
3134 |
+
{ url = "https://files.pythonhosted.org/packages/f7/b1/68aa2986129fb1011dabbe95f0136f44509afaf072b12b8f815905a39f33/pywin32-310-cp311-cp311-win32.whl", hash = "sha256:1e765f9564e83011a63321bb9d27ec456a0ed90d3732c4b2e312b855365ed8bd", size = 8784284 },
|
3135 |
+
{ url = "https://files.pythonhosted.org/packages/b3/bd/d1592635992dd8db5bb8ace0551bc3a769de1ac8850200cfa517e72739fb/pywin32-310-cp311-cp311-win_amd64.whl", hash = "sha256:126298077a9d7c95c53823934f000599f66ec9296b09167810eb24875f32689c", size = 9520748 },
|
3136 |
+
{ url = "https://files.pythonhosted.org/packages/90/b1/ac8b1ffce6603849eb45a91cf126c0fa5431f186c2e768bf56889c46f51c/pywin32-310-cp311-cp311-win_arm64.whl", hash = "sha256:19ec5fc9b1d51c4350be7bb00760ffce46e6c95eaf2f0b2f1150657b1a43c582", size = 8455941 },
|
3137 |
+
{ url = "https://files.pythonhosted.org/packages/6b/ec/4fdbe47932f671d6e348474ea35ed94227fb5df56a7c30cbbb42cd396ed0/pywin32-310-cp312-cp312-win32.whl", hash = "sha256:8a75a5cc3893e83a108c05d82198880704c44bbaee4d06e442e471d3c9ea4f3d", size = 8796239 },
|
3138 |
+
{ url = "https://files.pythonhosted.org/packages/e3/e5/b0627f8bb84e06991bea89ad8153a9e50ace40b2e1195d68e9dff6b03d0f/pywin32-310-cp312-cp312-win_amd64.whl", hash = "sha256:bf5c397c9a9a19a6f62f3fb821fbf36cac08f03770056711f765ec1503972060", size = 9503839 },
|
3139 |
+
{ url = "https://files.pythonhosted.org/packages/1f/32/9ccf53748df72301a89713936645a664ec001abd35ecc8578beda593d37d/pywin32-310-cp312-cp312-win_arm64.whl", hash = "sha256:2349cc906eae872d0663d4d6290d13b90621eaf78964bb1578632ff20e152966", size = 8459470 },
|
3140 |
+
{ url = "https://files.pythonhosted.org/packages/1c/09/9c1b978ffc4ae53999e89c19c77ba882d9fce476729f23ef55211ea1c034/pywin32-310-cp313-cp313-win32.whl", hash = "sha256:5d241a659c496ada3253cd01cfaa779b048e90ce4b2b38cd44168ad555ce74ab", size = 8794384 },
|
3141 |
+
{ url = "https://files.pythonhosted.org/packages/45/3c/b4640f740ffebadd5d34df35fecba0e1cfef8fde9f3e594df91c28ad9b50/pywin32-310-cp313-cp313-win_amd64.whl", hash = "sha256:667827eb3a90208ddbdcc9e860c81bde63a135710e21e4cb3348968e4bd5249e", size = 9503039 },
|
3142 |
+
{ url = "https://files.pythonhosted.org/packages/b4/f4/f785020090fb050e7fb6d34b780f2231f302609dc964672f72bfaeb59a28/pywin32-310-cp313-cp313-win_arm64.whl", hash = "sha256:e308f831de771482b7cf692a1f308f8fca701b2d8f9dde6cc440c7da17e47b33", size = 8458152 },
|
3143 |
+
]
|
3144 |
+
|
3145 |
[[package]]
|
3146 |
name = "pyyaml"
|
3147 |
version = "6.0.2"
|
|
|
3508 |
source = { registry = "https://pypi.org/simple" }
|
3509 |
sdist = { url = "https://files.pythonhosted.org/packages/9e/bd/3704a8c3e0942d711c1299ebf7b9091930adae6675d7c8f476a7ce48653c/sgmllib3k-1.0.0.tar.gz", hash = "sha256:7868fb1c8bfa764c1ac563d3cf369c381d1325d36124933a726f29fcdaa812e9", size = 5750 }
|
3510 |
|
3511 |
+
[[package]]
|
3512 |
+
name = "shadowcopy"
|
3513 |
+
version = "0.0.4"
|
3514 |
+
source = { registry = "https://pypi.org/simple" }
|
3515 |
+
dependencies = [
|
3516 |
+
{ name = "wmi", marker = "(platform_machine != 'aarch64' and sys_platform == 'linux') or (sys_platform != 'darwin' and sys_platform != 'linux')" },
|
3517 |
+
]
|
3518 |
+
sdist = { url = "https://files.pythonhosted.org/packages/12/44/c00420a3b7bcdf830529b933392b566c876a4944a24f31e126eb6fd28647/shadowcopy-0.0.4.tar.gz", hash = "sha256:ed89817dda065f893607a04c0b7d6b3b34c3507a4711f441111a4bcb1b1826c0", size = 4138 }
|
3519 |
+
wheels = [
|
3520 |
+
{ url = "https://files.pythonhosted.org/packages/ad/32/fdea8e7f7b2b8bae13ee6ab7df1a10d28a24dbeb03a62ff033563f95d77c/shadowcopy-0.0.4-py3-none-any.whl", hash = "sha256:fc51e59a639dc6a5a3a7a9b4e3ecadc71989e339f2d995d90aaa491acd4ba4eb", size = 4212 },
|
3521 |
+
]
|
3522 |
+
|
3523 |
[[package]]
|
3524 |
name = "shellingham"
|
3525 |
version = "1.5.4"
|
|
|
4049 |
]
|
4050 |
sdist = { url = "https://files.pythonhosted.org/packages/67/35/25e68fbc99e672127cc6fbb14b8ec1ba3dfef035bf1e4c90f78f24a80b7d/wikipedia-1.4.0.tar.gz", hash = "sha256:db0fad1829fdd441b1852306e9856398204dc0786d2996dd2e0c8bb8e26133b2", size = 27748 }
|
4051 |
|
4052 |
+
[[package]]
|
4053 |
+
name = "wmi"
|
4054 |
+
version = "1.5.1"
|
4055 |
+
source = { registry = "https://pypi.org/simple" }
|
4056 |
+
dependencies = [
|
4057 |
+
{ name = "pywin32", marker = "(platform_machine != 'aarch64' and sys_platform == 'linux') or (sys_platform != 'darwin' and sys_platform != 'linux')" },
|
4058 |
+
]
|
4059 |
+
sdist = { url = "https://files.pythonhosted.org/packages/d4/66/6364deb0a03415f96c66803d8c4379f808f2401da3bdb183348487b10510/WMI-1.5.1.tar.gz", hash = "sha256:b6a6be5711b1b6c8d55bda7a8befd75c48c12b770b9d227d31c1737dbf0d40a6", size = 26254 }
|
4060 |
+
wheels = [
|
4061 |
+
{ url = "https://files.pythonhosted.org/packages/ee/b9/a80d1ed4d115dac8e2ac08d16af046a77ab58e3d186e22395bf2add24090/WMI-1.5.1-py2.py3-none-any.whl", hash = "sha256:1d6b085e5c445141c475476000b661f60fff1aaa19f76bf82b7abb92e0ff4942", size = 28912 },
|
4062 |
+
]
|
4063 |
+
|
4064 |
[[package]]
|
4065 |
name = "wrapt"
|
4066 |
version = "1.17.2"
|