github-actions[bot] commited on
Commit
becf3a8
·
1 Parent(s): 2c4f39b

Update from GitHub Actions

Browse files
Files changed (8) hide show
  1. .cnb.yml +10 -0
  2. .python-version +1 -0
  3. Dockerfile +18 -0
  4. main.py +138 -0
  5. pyproject.toml +27 -0
  6. requirements.txt +54 -0
  7. test.py +153 -0
  8. uv.lock +328 -0
.cnb.yml ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ master:
2
+ push:
3
+ - docker:
4
+ image: node:18
5
+ imports: https://cnb.cool/godgodgame/oci-private-key/-/blob/main/envs.yml
6
+ stages:
7
+ - name: 环境检查
8
+ script: echo $GITHUB_TOKEN_GK && echo $GITHUB_TOKEN && node -v && npm -v
9
+ - name: 将master分支同步更新到github的main分支
10
+ script: git push https://$GITHUB_TOKEN_GK:[email protected]/zhezzma/scraper-proxy.git HEAD:main
.python-version ADDED
@@ -0,0 +1 @@
 
 
1
+ 3.13
Dockerfile ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.13-slim
2
+
3
+ WORKDIR /app
4
+
5
+ # 复制依赖文件
6
+ COPY requirements.txt .
7
+
8
+ # 安装依赖
9
+ RUN pip install --no-cache-dir -r requirements.txt
10
+
11
+ # 复制项目文件
12
+ COPY . .
13
+
14
+ # 暴露端口
15
+ EXPOSE 7860
16
+
17
+ # 启动命令
18
+ CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
main.py ADDED
@@ -0,0 +1,138 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import cloudscraper
2
+ from fastapi import FastAPI, HTTPException, Request, Response
3
+ from fastapi.middleware.cors import CORSMiddleware
4
+ from fastapi.responses import StreamingResponse
5
+ from typing import Optional
6
+ import uvicorn
7
+ import asyncio
8
+
9
+ app = FastAPI(
10
+ title="ScraperCookie",
11
+ description="一个使用CloudScraper进行请求转发的代理,支持流式响应",
12
+ version="0.1.0"
13
+ )
14
+
15
+ # 添加CORS中间件
16
+ app.add_middleware(
17
+ CORSMiddleware,
18
+ allow_origins=["*"],
19
+ allow_credentials=True,
20
+ allow_methods=["*"],
21
+ allow_headers=["*"],
22
+ )
23
+
24
+ async def stream_generator(response):
25
+ """生成流式响应的生成器函数"""
26
+ for chunk in response.iter_content(chunk_size=8192):
27
+ if chunk:
28
+ yield chunk
29
+ await asyncio.sleep(0.001) # 让出控制权,保持异步特性
30
+
31
+ @app.api_route("/{path:path}", methods=["GET", "POST", "PUT", "DELETE", "OPTIONS", "HEAD", "PATCH"])
32
+ async def proxy(request: Request, path: str, target_url: Optional[str] = None):
33
+ """
34
+ 通用代理端点,转发所有请求到目标URL,支持流式响应
35
+ """
36
+ try:
37
+ # 获取请求方法
38
+ method = request.method
39
+
40
+ # 获取目标URL
41
+ if not target_url:
42
+ target_url = request.query_params.get("url")
43
+ if not target_url:
44
+ raise HTTPException(status_code=400, detail="必须提供目标URL")
45
+
46
+ # 获取原始请求头
47
+ headers = dict(request.headers)
48
+ # 移除可能导致问题的头
49
+ headers.pop("host", None)
50
+ headers.pop("content-length", None)
51
+
52
+ # 检查是否请求流式响应
53
+ stream_request = "stream" in request.query_params and request.query_params["stream"].lower() in ["true", "1", "yes"]
54
+
55
+ # 创建cloudscraper实例
56
+ scraper = cloudscraper.create_scraper()
57
+
58
+ # 获取请求体
59
+ body = await request.body()
60
+
61
+ # 获取查询参数
62
+ params = dict(request.query_params)
63
+ # 从查询参数中移除url和stream参数
64
+ params.pop("url", None)
65
+ params.pop("stream", None)
66
+
67
+ # 构建请求参数
68
+ request_kwargs = {
69
+ "url": target_url,
70
+ "headers": headers,
71
+ "params": params,
72
+ "stream": stream_request # 设置stream参数
73
+ }
74
+
75
+ # 如果有请求体,添加到请求参数中
76
+ if body:
77
+ request_kwargs["data"] = body
78
+
79
+ # 发送请求
80
+ if method == "GET":
81
+ response = scraper.get(**request_kwargs)
82
+ elif method == "POST":
83
+ response = scraper.post(**request_kwargs)
84
+ elif method == "PUT":
85
+ response = scraper.put(**request_kwargs)
86
+ elif method == "DELETE":
87
+ response = scraper.delete(**request_kwargs)
88
+ elif method == "HEAD":
89
+ response = scraper.head(**request_kwargs)
90
+ elif method == "OPTIONS":
91
+ response = scraper.options(**request_kwargs)
92
+ elif method == "PATCH":
93
+ response = scraper.patch(**request_kwargs)
94
+ else:
95
+ raise HTTPException(status_code=405, detail=f"不支持的方法: {method}")
96
+
97
+ # 处理流式响应
98
+ if stream_request:
99
+ # 创建响应头字典
100
+ headers_dict = {}
101
+ for header_name, header_value in response.headers.items():
102
+ if header_name.lower() not in ('content-encoding', 'transfer-encoding', 'content-length'):
103
+ headers_dict[header_name] = header_value
104
+
105
+ # 返回流式响应
106
+ return StreamingResponse(
107
+ stream_generator(response),
108
+ status_code=response.status_code,
109
+ headers=headers_dict,
110
+ media_type=response.headers.get("content-type", "application/octet-stream")
111
+ )
112
+ else:
113
+ # 创建普通响应
114
+ proxy_response = Response(
115
+ content=response.content,
116
+ status_code=response.status_code,
117
+ )
118
+
119
+ # 转发响应头
120
+ for header_name, header_value in response.headers.items():
121
+ if header_name.lower() not in ('content-encoding', 'transfer-encoding', 'content-length'):
122
+ proxy_response.headers[header_name] = header_value
123
+
124
+ # 转发cookies
125
+ for cookie_name, cookie_value in response.cookies.items():
126
+ proxy_response.set_cookie(key=cookie_name, value=cookie_value)
127
+
128
+ return proxy_response
129
+
130
+ except Exception as e:
131
+ raise HTTPException(status_code=500, detail=f"代理请求失败: {str(e)}")
132
+
133
+ @app.get("/")
134
+ async def root():
135
+ return {"message": "欢迎使用ScraperProxy API,访问 /docs 查看API文档"}
136
+
137
+ if __name__ == "__main__":
138
+ uvicorn.run("main:app", host="0.0.0.0", port=7860, reload=True)
pyproject.toml ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [project]
2
+ name = "scrapercookie"
3
+ version = "0.1.0"
4
+ description = "Add your description here"
5
+ readme = "README.md"
6
+ requires-python = ">=3.13"
7
+ dependencies = [
8
+ "chardet>=5.2.0",
9
+ "cloudscraper>=1.2.71",
10
+ "fastapi>=0.115.10",
11
+ "pydantic>=2.10.6",
12
+ "typing-extensions>=4.12.2",
13
+ "uvicorn>=0.34.0",
14
+ ]
15
+
16
+ [tool.uv]
17
+ index-url = "https://mirrors.aliyun.com/pypi/simple/"
18
+
19
+ [dependency-groups]
20
+ dev = [
21
+ "poethepoet>=0.32.1",
22
+ ]
23
+ [tool.poe.tasks]
24
+ start = "uv run main.py"
25
+ dev = "uvicorn main:app --reload --port 7860"
26
+ test = "uv run test.py"
27
+ freeze = { shell = "uv pip compile pyproject.toml -o requirements.txt" }
requirements.txt ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # This file was autogenerated by uv via the following command:
2
+ # uv pip compile pyproject.toml -o requirements.txt
3
+ annotated-types==0.7.0
4
+ # via pydantic
5
+ anyio==4.8.0
6
+ # via starlette
7
+ certifi==2025.1.31
8
+ # via requests
9
+ chardet==5.2.0
10
+ # via scrapercookie (pyproject.toml)
11
+ charset-normalizer==3.4.1
12
+ # via requests
13
+ click==8.1.8
14
+ # via uvicorn
15
+ cloudscraper==1.2.71
16
+ # via scrapercookie (pyproject.toml)
17
+ colorama==0.4.6
18
+ # via click
19
+ fastapi==0.115.10
20
+ # via scrapercookie (pyproject.toml)
21
+ h11==0.14.0
22
+ # via uvicorn
23
+ idna==3.10
24
+ # via
25
+ # anyio
26
+ # requests
27
+ pydantic==2.10.6
28
+ # via
29
+ # scrapercookie (pyproject.toml)
30
+ # fastapi
31
+ pydantic-core==2.27.2
32
+ # via pydantic
33
+ pyparsing==3.2.1
34
+ # via cloudscraper
35
+ requests==2.32.3
36
+ # via
37
+ # cloudscraper
38
+ # requests-toolbelt
39
+ requests-toolbelt==1.0.0
40
+ # via cloudscraper
41
+ sniffio==1.3.1
42
+ # via anyio
43
+ starlette==0.46.0
44
+ # via fastapi
45
+ typing-extensions==4.12.2
46
+ # via
47
+ # scrapercookie (pyproject.toml)
48
+ # fastapi
49
+ # pydantic
50
+ # pydantic-core
51
+ urllib3==2.3.0
52
+ # via requests
53
+ uvicorn==0.34.0
54
+ # via scrapercookie (pyproject.toml)
test.py ADDED
@@ -0,0 +1,153 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import cloudscraper
2
+ import json
3
+ import time
4
+ import requests
5
+
6
+
7
+ # Define the URL
8
+ url = "https://grok.com/rest/app-chat/conversations/new"
9
+
10
+ # Define headers
11
+ headers = {
12
+ "sec-fetch-dest": "document",
13
+ }
14
+
15
+ # Define the request body
16
+ payload = {
17
+ "temporary": False,
18
+ "modelName": "grok-3",
19
+ "message": "你好",
20
+ "fileAttachments": [],
21
+ "imageAttachments": [],
22
+ "disableSearch": False,
23
+ "enableImageGeneration": True,
24
+ "returnImageBytes": False,
25
+ "returnRawGrokInXaiRequest": False,
26
+ "enableImageStreaming": True,
27
+ "imageGenerationCount": 2,
28
+ "forceConcise": False,
29
+ "toolOverrides": {},
30
+ "enableSideBySide": True,
31
+ "isPreset": False,
32
+ "sendFinalMetadata": True,
33
+ "customInstructions": "",
34
+ "deepsearchPreset": "",
35
+ "isReasoning": False
36
+ }
37
+
38
+ # Set cookies
39
+ cookies = {
40
+ "sso": "eyJhbGciOiJIUzI1NiJ9.eyJzZXNzaW9uX2lkIjoiYzFmMTk3MDYtYjhmYS00MmNkLTlkNjQtNTJhMDNmNzI3ZDAxIn0.U3uFCk5iaQmVKN5WLxTBjJGJwh4IO98ms8NjVVQ5qNI",
41
+ "sso-rw": "eyJhbGciOiJIUzI1NiJ9.eyJzZXNzaW9uX2lkIjoiYzFmMTk3MDYtYjhmYS00MmNkLTlkNjQtNTJhMDNmNzI3ZDAxIn0.U3uFCk5iaQmVKN5WLxTBjJGJwh4IO98ms8NjVVQ5qNI",
42
+ "_ga": "GA1.1.881743868.1740789941",
43
+ "cf_clearance": "ZC5p_3dWZA_Jzcg0zTLR4Fthq5N.wY_4uDEG9kmWoH0-1740844977-1.2.1.1-NxpwDkJZuGIseDyLhEWO5zoDBF5ZExxOilf1KZWu.MdhVFKA_FS0u.evjwJYS4Q4WUaBHQ2oFHvLrkRWNgm186RoDdvBQIJFdciUXy2Hxp5jHZw3aVWryjV4rc0WZ21T0CCd7sqM6aqqCHub6gI0iDoxMJyUbAOrtR0LbWi_P09CmK3lt6aFTHjQo12xUA47zTXACUi3uRR.5VJUvgTzXwrksWnIIT2g.03QJpH1mif2mf8waEY4Um8Sf3CCZXR8Lbxtl.E5NSjmuFP5XPIem71PhqMfE9Zqq9NCHVg1hVo0vcCnVu_7gM2ghHxVFbO5ZokiB5fr3Re8pR59yO5_vpuQoz74urjxE1p8Jl_G8ZWd7POXaddF8x_d0jJQKKk60v_sgUEDRzjLFFi2M8GXFCDTpM91AeNaGBBOgfzHyfA",
44
+ "_ga_8FEWB057YH": "GS1.1.1740844979.5.1.1740844994.0.0.0"
45
+ }
46
+
47
+ # Create a cloudscraper session
48
+ scraper = cloudscraper.create_scraper()
49
+ # Update the scraper's cookies
50
+ for key, value in cookies.items():
51
+ scraper.cookies.set(key, value)
52
+
53
+ try:
54
+ # Send the POST request with stream=True to handle streaming response
55
+ with scraper.post(
56
+ url=url,
57
+ headers=headers,
58
+ json=payload,
59
+ stream=True
60
+ ) as response:
61
+
62
+ # Check if the request was successful
63
+ response.raise_for_status()
64
+ print(f"Status Code: {response.status_code}")
65
+
66
+ # Process the streaming response
67
+ print("Streaming Response:")
68
+
69
+ # Option 1: Process line by line (if the stream is line-delimited)
70
+ for line in response.iter_lines():
71
+ if line:
72
+ decoded_line = line.decode('utf-8')
73
+ print(f"Received: {decoded_line}")
74
+
75
+ # Attempt to parse as JSON if applicable
76
+ try:
77
+ json_data = json.loads(decoded_line)
78
+ # Process the JSON data as needed
79
+ print(f"Parsed JSON: {json.dumps(json_data, indent=2, ensure_ascii=False)}")
80
+ except json.JSONDecodeError:
81
+ # Not valid JSON, just print the raw line
82
+ pass
83
+
84
+ # Optional: Add a small delay to make the output more readable
85
+ time.sleep(0.1)
86
+
87
+ # Option 2 (Alternative): Process chunks of data
88
+ # Uncomment this section and comment out Option 1 if needed
89
+ """
90
+ for chunk in response.iter_content(chunk_size=1024):
91
+ if chunk:
92
+ print(f"Received chunk: {chunk.decode('utf-8')}")
93
+ time.sleep(0.1)
94
+ """
95
+
96
+ except Exception as e:
97
+ print(f"An error occurred: {e}")
98
+
99
+
100
+ # session = requests.Session()
101
+ # # Add cookies to the session
102
+ # session.cookies.update(cookies)
103
+
104
+ # try:
105
+ # # Send the POST request with stream=True to handle streaming response
106
+ # response = session.post(
107
+ # url=url,
108
+ # headers=headers,
109
+ # json=payload,
110
+ # stream=True
111
+ # )
112
+
113
+ # # Check if the request was successful
114
+ # response.raise_for_status()
115
+ # print(f"Status Code: {response.status_code}")
116
+
117
+ # # Process the streaming response
118
+ # print("Streaming Response:")
119
+
120
+ # # Process line by line (for line-delimited responses)
121
+ # for line in response.iter_lines():
122
+ # if line:
123
+ # decoded_line = line.decode('utf-8')
124
+ # print(f"Received: {decoded_line}")
125
+
126
+ # # Attempt to parse as JSON if applicable
127
+ # try:
128
+ # json_data = json.loads(decoded_line)
129
+ # # Process the JSON data as needed
130
+ # print(f"Parsed JSON: {json.dumps(json_data, indent=2, ensure_ascii=False)}")
131
+ # except json.JSONDecodeError:
132
+ # # Not valid JSON, just print the raw line
133
+ # pass
134
+
135
+ # # Optional: Add a small delay to make the output more readable
136
+ # time.sleep(0.1)
137
+
138
+ # # Alternative: Process chunks of data
139
+ # # Uncomment this section and comment out the above loop if needed
140
+ # """
141
+ # for chunk in response.iter_content(chunk_size=1024):
142
+ # if chunk:
143
+ # print(f"Received chunk: {chunk.decode('utf-8')}")
144
+ # time.sleep(0.1)
145
+ # """
146
+
147
+ # except requests.exceptions.RequestException as e:
148
+ # print(f"Request error: {e}")
149
+ # except Exception as e:
150
+ # print(f"An error occurred: {e}")
151
+ # finally:
152
+ # # Close the session when done
153
+ # session.close()
uv.lock ADDED
@@ -0,0 +1,328 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ version = 1
2
+ requires-python = ">=3.13"
3
+
4
+ [[package]]
5
+ name = "annotated-types"
6
+ version = "0.7.0"
7
+ source = { registry = "https://mirrors.aliyun.com/pypi/simple/" }
8
+ sdist = { url = "https://mirrors.aliyun.com/pypi/packages/ee/67/531ea369ba64dcff5ec9c3402f9f51bf748cec26dde048a2f973a4eea7f5/annotated_types-0.7.0.tar.gz", hash = "sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89" }
9
+ wheels = [
10
+ { url = "https://mirrors.aliyun.com/pypi/packages/78/b6/6307fbef88d9b5ee7421e68d78a9f162e0da4900bc5f5793f6d3d0e34fb8/annotated_types-0.7.0-py3-none-any.whl", hash = "sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53" },
11
+ ]
12
+
13
+ [[package]]
14
+ name = "anyio"
15
+ version = "4.8.0"
16
+ source = { registry = "https://mirrors.aliyun.com/pypi/simple/" }
17
+ dependencies = [
18
+ { name = "idna" },
19
+ { name = "sniffio" },
20
+ ]
21
+ sdist = { url = "https://mirrors.aliyun.com/pypi/packages/a3/73/199a98fc2dae33535d6b8e8e6ec01f8c1d76c9adb096c6b7d64823038cde/anyio-4.8.0.tar.gz", hash = "sha256:1d9fe889df5212298c0c0723fa20479d1b94883a2df44bd3897aa91083316f7a" }
22
+ wheels = [
23
+ { url = "https://mirrors.aliyun.com/pypi/packages/46/eb/e7f063ad1fec6b3178a3cd82d1a3c4de82cccf283fc42746168188e1cdd5/anyio-4.8.0-py3-none-any.whl", hash = "sha256:b5011f270ab5eb0abf13385f851315585cc37ef330dd88e27ec3d34d651fd47a" },
24
+ ]
25
+
26
+ [[package]]
27
+ name = "certifi"
28
+ version = "2025.1.31"
29
+ source = { registry = "https://mirrors.aliyun.com/pypi/simple/" }
30
+ sdist = { url = "https://mirrors.aliyun.com/pypi/packages/1c/ab/c9f1e32b7b1bf505bf26f0ef697775960db7932abeb7b516de930ba2705f/certifi-2025.1.31.tar.gz", hash = "sha256:3d5da6925056f6f18f119200434a4780a94263f10d1c21d032a6f6b2baa20651" }
31
+ wheels = [
32
+ { url = "https://mirrors.aliyun.com/pypi/packages/38/fc/bce832fd4fd99766c04d1ee0eead6b0ec6486fb100ae5e74c1d91292b982/certifi-2025.1.31-py3-none-any.whl", hash = "sha256:ca78db4565a652026a4db2bcdf68f2fb589ea80d0be70e03929ed730746b84fe" },
33
+ ]
34
+
35
+ [[package]]
36
+ name = "chardet"
37
+ version = "5.2.0"
38
+ source = { registry = "https://mirrors.aliyun.com/pypi/simple/" }
39
+ sdist = { url = "https://mirrors.aliyun.com/pypi/packages/f3/0d/f7b6ab21ec75897ed80c17d79b15951a719226b9fababf1e40ea74d69079/chardet-5.2.0.tar.gz", hash = "sha256:1b3b6ff479a8c414bc3fa2c0852995695c4a026dcd6d0633b2dd092ca39c1cf7" }
40
+ wheels = [
41
+ { url = "https://mirrors.aliyun.com/pypi/packages/38/6f/f5fbc992a329ee4e0f288c1fe0e2ad9485ed064cac731ed2fe47dcc38cbf/chardet-5.2.0-py3-none-any.whl", hash = "sha256:e1cf59446890a00105fe7b7912492ea04b6e6f06d4b742b2c788469e34c82970" },
42
+ ]
43
+
44
+ [[package]]
45
+ name = "charset-normalizer"
46
+ version = "3.4.1"
47
+ source = { registry = "https://mirrors.aliyun.com/pypi/simple/" }
48
+ sdist = { url = "https://mirrors.aliyun.com/pypi/packages/16/b0/572805e227f01586461c80e0fd25d65a2115599cc9dad142fee4b747c357/charset_normalizer-3.4.1.tar.gz", hash = "sha256:44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3" }
49
+ wheels = [
50
+ { url = "https://mirrors.aliyun.com/pypi/packages/38/94/ce8e6f63d18049672c76d07d119304e1e2d7c6098f0841b51c666e9f44a0/charset_normalizer-3.4.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:aabfa34badd18f1da5ec1bc2715cadc8dca465868a4e73a0173466b688f29dda" },
51
+ { url = "https://mirrors.aliyun.com/pypi/packages/24/2e/dfdd9770664aae179a96561cc6952ff08f9a8cd09a908f259a9dfa063568/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22e14b5d70560b8dd51ec22863f370d1e595ac3d024cb8ad7d308b4cd95f8313" },
52
+ { url = "https://mirrors.aliyun.com/pypi/packages/24/4e/f646b9093cff8fc86f2d60af2de4dc17c759de9d554f130b140ea4738ca6/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8436c508b408b82d87dc5f62496973a1805cd46727c34440b0d29d8a2f50a6c9" },
53
+ { url = "https://mirrors.aliyun.com/pypi/packages/5e/67/2937f8d548c3ef6e2f9aab0f6e21001056f692d43282b165e7c56023e6dd/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2d074908e1aecee37a7635990b2c6d504cd4766c7bc9fc86d63f9c09af3fa11b" },
54
+ { url = "https://mirrors.aliyun.com/pypi/packages/52/ed/b7f4f07de100bdb95c1756d3a4d17b90c1a3c53715c1a476f8738058e0fa/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:955f8851919303c92343d2f66165294848d57e9bba6cf6e3625485a70a038d11" },
55
+ { url = "https://mirrors.aliyun.com/pypi/packages/96/2c/d49710a6dbcd3776265f4c923bb73ebe83933dfbaa841c5da850fe0fd20b/charset_normalizer-3.4.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:44ecbf16649486d4aebafeaa7ec4c9fed8b88101f4dd612dcaf65d5e815f837f" },
56
+ { url = "https://mirrors.aliyun.com/pypi/packages/b4/41/35ff1f9a6bd380303dea55e44c4933b4cc3c4850988927d4082ada230273/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0924e81d3d5e70f8126529951dac65c1010cdf117bb75eb02dd12339b57749dd" },
57
+ { url = "https://mirrors.aliyun.com/pypi/packages/fb/43/c6a0b685fe6910d08ba971f62cd9c3e862a85770395ba5d9cad4fede33ab/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:2967f74ad52c3b98de4c3b32e1a44e32975e008a9cd2a8cc8966d6a5218c5cb2" },
58
+ { url = "https://mirrors.aliyun.com/pypi/packages/4c/ff/a9a504662452e2d2878512115638966e75633519ec11f25fca3d2049a94a/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:c75cb2a3e389853835e84a2d8fb2b81a10645b503eca9bcb98df6b5a43eb8886" },
59
+ { url = "https://mirrors.aliyun.com/pypi/packages/6c/71/189996b6d9a4b932564701628af5cee6716733e9165af1d5e1b285c530ed/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:09b26ae6b1abf0d27570633b2b078a2a20419c99d66fb2823173d73f188ce601" },
60
+ { url = "https://mirrors.aliyun.com/pypi/packages/e4/93/946a86ce20790e11312c87c75ba68d5f6ad2208cfb52b2d6a2c32840d922/charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fa88b843d6e211393a37219e6a1c1df99d35e8fd90446f1118f4216e307e48cd" },
61
+ { url = "https://mirrors.aliyun.com/pypi/packages/cd/e5/131d2fb1b0dddafc37be4f3a2fa79aa4c037368be9423061dccadfd90091/charset_normalizer-3.4.1-cp313-cp313-win32.whl", hash = "sha256:eb8178fe3dba6450a3e024e95ac49ed3400e506fd4e9e5c32d30adda88cbd407" },
62
+ { url = "https://mirrors.aliyun.com/pypi/packages/27/f2/4f9a69cc7712b9b5ad8fdb87039fd89abba997ad5cbe690d1835d40405b0/charset_normalizer-3.4.1-cp313-cp313-win_amd64.whl", hash = "sha256:b1ac5992a838106edb89654e0aebfc24f5848ae2547d22c2c3f66454daa11971" },
63
+ { url = "https://mirrors.aliyun.com/pypi/packages/0e/f6/65ecc6878a89bb1c23a086ea335ad4bf21a588990c3f535a227b9eea9108/charset_normalizer-3.4.1-py3-none-any.whl", hash = "sha256:d98b1668f06378c6dbefec3b92299716b931cd4e6061f3c875a71ced1780ab85" },
64
+ ]
65
+
66
+ [[package]]
67
+ name = "click"
68
+ version = "8.1.8"
69
+ source = { registry = "https://mirrors.aliyun.com/pypi/simple/" }
70
+ dependencies = [
71
+ { name = "colorama", marker = "sys_platform == 'win32'" },
72
+ ]
73
+ sdist = { url = "https://mirrors.aliyun.com/pypi/packages/b9/2e/0090cbf739cee7d23781ad4b89a9894a41538e4fcf4c31dcdd705b78eb8b/click-8.1.8.tar.gz", hash = "sha256:ed53c9d8990d83c2a27deae68e4ee337473f6330c040a31d4225c9574d16096a" }
74
+ wheels = [
75
+ { url = "https://mirrors.aliyun.com/pypi/packages/7e/d4/7ebdbd03970677812aac39c869717059dbb71a4cfc033ca6e5221787892c/click-8.1.8-py3-none-any.whl", hash = "sha256:63c132bbbed01578a06712a2d1f497bb62d9c1c0d329b7903a866228027263b2" },
76
+ ]
77
+
78
+ [[package]]
79
+ name = "cloudscraper"
80
+ version = "1.2.71"
81
+ source = { registry = "https://mirrors.aliyun.com/pypi/simple/" }
82
+ dependencies = [
83
+ { name = "pyparsing" },
84
+ { name = "requests" },
85
+ { name = "requests-toolbelt" },
86
+ ]
87
+ sdist = { url = "https://mirrors.aliyun.com/pypi/packages/ac/25/6d0481860583f44953bd791de0b7c4f6d7ead7223f8a17e776247b34a5b4/cloudscraper-1.2.71.tar.gz", hash = "sha256:429c6e8aa6916d5bad5c8a5eac50f3ea53c9ac22616f6cb21b18dcc71517d0d3" }
88
+ wheels = [
89
+ { url = "https://mirrors.aliyun.com/pypi/packages/81/97/fc88803a451029688dffd7eb446dc1b529657577aec13aceff1cc9628c5d/cloudscraper-1.2.71-py2.py3-none-any.whl", hash = "sha256:76f50ca529ed2279e220837befdec892626f9511708e200d48d5bb76ded679b0" },
90
+ ]
91
+
92
+ [[package]]
93
+ name = "colorama"
94
+ version = "0.4.6"
95
+ source = { registry = "https://mirrors.aliyun.com/pypi/simple/" }
96
+ sdist = { url = "https://mirrors.aliyun.com/pypi/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44" }
97
+ wheels = [
98
+ { url = "https://mirrors.aliyun.com/pypi/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6" },
99
+ ]
100
+
101
+ [[package]]
102
+ name = "fastapi"
103
+ version = "0.115.10"
104
+ source = { registry = "https://mirrors.aliyun.com/pypi/simple/" }
105
+ dependencies = [
106
+ { name = "pydantic" },
107
+ { name = "starlette" },
108
+ { name = "typing-extensions" },
109
+ ]
110
+ sdist = { url = "https://mirrors.aliyun.com/pypi/packages/00/48/96e3cf457a5a64c23abe8453358b68ebc6755ac1b2bc4c8874c3cc94cd56/fastapi-0.115.10.tar.gz", hash = "sha256:920cdc95c1c6ca073656deae80ad254512d131031c2d7759c87ae469572911ee" }
111
+ wheels = [
112
+ { url = "https://mirrors.aliyun.com/pypi/packages/97/8c/b49611a3daf01c3980d1da920a63ff4dc12d607d0edcb8a86ba331a7c686/fastapi-0.115.10-py3-none-any.whl", hash = "sha256:47346c5437e933e68909a835cf63890a9bd52fb6091b2499b996c08a01ca43a5" },
113
+ ]
114
+
115
+ [[package]]
116
+ name = "h11"
117
+ version = "0.14.0"
118
+ source = { registry = "https://mirrors.aliyun.com/pypi/simple/" }
119
+ sdist = { url = "https://mirrors.aliyun.com/pypi/packages/f5/38/3af3d3633a34a3316095b39c8e8fb4853a28a536e55d347bd8d8e9a14b03/h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d" }
120
+ wheels = [
121
+ { url = "https://mirrors.aliyun.com/pypi/packages/95/04/ff642e65ad6b90db43e668d70ffb6736436c7ce41fcc549f4e9472234127/h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761" },
122
+ ]
123
+
124
+ [[package]]
125
+ name = "idna"
126
+ version = "3.10"
127
+ source = { registry = "https://mirrors.aliyun.com/pypi/simple/" }
128
+ sdist = { url = "https://mirrors.aliyun.com/pypi/packages/f1/70/7703c29685631f5a7590aa73f1f1d3fa9a380e654b86af429e0934a32f7d/idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9" }
129
+ wheels = [
130
+ { url = "https://mirrors.aliyun.com/pypi/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3" },
131
+ ]
132
+
133
+ [[package]]
134
+ name = "pastel"
135
+ version = "0.2.1"
136
+ source = { registry = "https://mirrors.aliyun.com/pypi/simple/" }
137
+ sdist = { url = "https://mirrors.aliyun.com/pypi/packages/76/f1/4594f5e0fcddb6953e5b8fe00da8c317b8b41b547e2b3ae2da7512943c62/pastel-0.2.1.tar.gz", hash = "sha256:e6581ac04e973cac858828c6202c1e1e81fee1dc7de7683f3e1ffe0bfd8a573d" }
138
+ wheels = [
139
+ { url = "https://mirrors.aliyun.com/pypi/packages/aa/18/a8444036c6dd65ba3624c63b734d3ba95ba63ace513078e1580590075d21/pastel-0.2.1-py2.py3-none-any.whl", hash = "sha256:4349225fcdf6c2bb34d483e523475de5bb04a5c10ef711263452cb37d7dd4364" },
140
+ ]
141
+
142
+ [[package]]
143
+ name = "poethepoet"
144
+ version = "0.32.2"
145
+ source = { registry = "https://mirrors.aliyun.com/pypi/simple/" }
146
+ dependencies = [
147
+ { name = "pastel" },
148
+ { name = "pyyaml" },
149
+ ]
150
+ sdist = { url = "https://mirrors.aliyun.com/pypi/packages/ee/c6/4bc7e21166726fc96f82f58b31fd032fdf8864d3aa17e2622578cb96c24d/poethepoet-0.32.2.tar.gz", hash = "sha256:1d68871dac1b191e27bd68fea57d0e01e9afbba3fcd01dbe6f6bc3fcb071fe4c" }
151
+ wheels = [
152
+ { url = "https://mirrors.aliyun.com/pypi/packages/b1/1f/4e7a9b6b33a085172a826d1f9d0a19a2e77982298acea13d40442f14ef28/poethepoet-0.32.2-py3-none-any.whl", hash = "sha256:97e165de8e00b07d33fd8d72896fad8b20ccafcd327b1118bb6a3da26af38d33" },
153
+ ]
154
+
155
+ [[package]]
156
+ name = "pydantic"
157
+ version = "2.10.6"
158
+ source = { registry = "https://mirrors.aliyun.com/pypi/simple/" }
159
+ dependencies = [
160
+ { name = "annotated-types" },
161
+ { name = "pydantic-core" },
162
+ { name = "typing-extensions" },
163
+ ]
164
+ sdist = { url = "https://mirrors.aliyun.com/pypi/packages/b7/ae/d5220c5c52b158b1de7ca89fc5edb72f304a70a4c540c84c8844bf4008de/pydantic-2.10.6.tar.gz", hash = "sha256:ca5daa827cce33de7a42be142548b0096bf05a7e7b365aebfa5f8eeec7128236" }
165
+ wheels = [
166
+ { url = "https://mirrors.aliyun.com/pypi/packages/f4/3c/8cc1cc84deffa6e25d2d0c688ebb80635dfdbf1dbea3e30c541c8cf4d860/pydantic-2.10.6-py3-none-any.whl", hash = "sha256:427d664bf0b8a2b34ff5dd0f5a18df00591adcee7198fbd71981054cef37b584" },
167
+ ]
168
+
169
+ [[package]]
170
+ name = "pydantic-core"
171
+ version = "2.27.2"
172
+ source = { registry = "https://mirrors.aliyun.com/pypi/simple/" }
173
+ dependencies = [
174
+ { name = "typing-extensions" },
175
+ ]
176
+ sdist = { url = "https://mirrors.aliyun.com/pypi/packages/fc/01/f3e5ac5e7c25833db5eb555f7b7ab24cd6f8c322d3a3ad2d67a952dc0abc/pydantic_core-2.27.2.tar.gz", hash = "sha256:eb026e5a4c1fee05726072337ff51d1efb6f59090b7da90d30ea58625b1ffb39" }
177
+ wheels = [
178
+ { url = "https://mirrors.aliyun.com/pypi/packages/41/b1/9bc383f48f8002f99104e3acff6cba1231b29ef76cfa45d1506a5cad1f84/pydantic_core-2.27.2-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:7d14bd329640e63852364c306f4d23eb744e0f8193148d4044dd3dacdaacbd8b" },
179
+ { url = "https://mirrors.aliyun.com/pypi/packages/10/6c/e62b8657b834f3eb2961b49ec8e301eb99946245e70bf42c8817350cbefc/pydantic_core-2.27.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:82f91663004eb8ed30ff478d77c4d1179b3563df6cdb15c0817cd1cdaf34d154" },
180
+ { url = "https://mirrors.aliyun.com/pypi/packages/ba/15/52cfe49c8c986e081b863b102d6b859d9defc63446b642ccbbb3742bf371/pydantic_core-2.27.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:71b24c7d61131bb83df10cc7e687433609963a944ccf45190cfc21e0887b08c9" },
181
+ { url = "https://mirrors.aliyun.com/pypi/packages/b1/1c/b6f402cfc18ec0024120602bdbcebc7bdd5b856528c013bd4d13865ca473/pydantic_core-2.27.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fa8e459d4954f608fa26116118bb67f56b93b209c39b008277ace29937453dc9" },
182
+ { url = "https://mirrors.aliyun.com/pypi/packages/bd/7b/8cb75b66ac37bc2975a3b7de99f3c6f355fcc4d89820b61dffa8f1e81677/pydantic_core-2.27.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ce8918cbebc8da707ba805b7fd0b382816858728ae7fe19a942080c24e5b7cd1" },
183
+ { url = "https://mirrors.aliyun.com/pypi/packages/c8/f1/786d8fe78970a06f61df22cba58e365ce304bf9b9f46cc71c8c424e0c334/pydantic_core-2.27.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:eda3f5c2a021bbc5d976107bb302e0131351c2ba54343f8a496dc8783d3d3a6a" },
184
+ { url = "https://mirrors.aliyun.com/pypi/packages/a6/74/d12b2cd841d8724dc8ffb13fc5cef86566a53ed358103150209ecd5d1999/pydantic_core-2.27.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bd8086fa684c4775c27f03f062cbb9eaa6e17f064307e86b21b9e0abc9c0f02e" },
185
+ { url = "https://mirrors.aliyun.com/pypi/packages/a0/6e/940bcd631bc4d9a06c9539b51f070b66e8f370ed0933f392db6ff350d873/pydantic_core-2.27.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8d9b3388db186ba0c099a6d20f0604a44eabdeef1777ddd94786cdae158729e4" },
186
+ { url = "https://mirrors.aliyun.com/pypi/packages/50/cc/a46b34f1708d82498c227d5d80ce615b2dd502ddcfd8376fc14a36655af1/pydantic_core-2.27.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:7a66efda2387de898c8f38c0cf7f14fca0b51a8ef0b24bfea5849f1b3c95af27" },
187
+ { url = "https://mirrors.aliyun.com/pypi/packages/ca/2d/c365cfa930ed23bc58c41463bae347d1005537dc8db79e998af8ba28d35e/pydantic_core-2.27.2-cp313-cp313-musllinux_1_1_armv7l.whl", hash = "sha256:18a101c168e4e092ab40dbc2503bdc0f62010e95d292b27827871dc85450d7ee" },
188
+ { url = "https://mirrors.aliyun.com/pypi/packages/f4/d7/eb64d015c350b7cdb371145b54d96c919d4db516817f31cd1c650cae3b21/pydantic_core-2.27.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ba5dd002f88b78a4215ed2f8ddbdf85e8513382820ba15ad5ad8955ce0ca19a1" },
189
+ { url = "https://mirrors.aliyun.com/pypi/packages/a4/99/bddde3ddde76c03b65dfd5a66ab436c4e58ffc42927d4ff1198ffbf96f5f/pydantic_core-2.27.2-cp313-cp313-win32.whl", hash = "sha256:1ebaf1d0481914d004a573394f4be3a7616334be70261007e47c2a6fe7e50130" },
190
+ { url = "https://mirrors.aliyun.com/pypi/packages/71/47/82b5e846e01b26ac6f1893d3c5f9f3a2eb6ba79be26eef0b759b4fe72946/pydantic_core-2.27.2-cp313-cp313-win_amd64.whl", hash = "sha256:953101387ecf2f5652883208769a79e48db18c6df442568a0b5ccd8c2723abee" },
191
+ { url = "https://mirrors.aliyun.com/pypi/packages/51/b2/b2b50d5ecf21acf870190ae5d093602d95f66c9c31f9d5de6062eb329ad1/pydantic_core-2.27.2-cp313-cp313-win_arm64.whl", hash = "sha256:ac4dbfd1691affb8f48c2c13241a2e3b60ff23247cbcf981759c768b6633cf8b" },
192
+ ]
193
+
194
+ [[package]]
195
+ name = "pyparsing"
196
+ version = "3.2.1"
197
+ source = { registry = "https://mirrors.aliyun.com/pypi/simple/" }
198
+ sdist = { url = "https://mirrors.aliyun.com/pypi/packages/8b/1a/3544f4f299a47911c2ab3710f534e52fea62a633c96806995da5d25be4b2/pyparsing-3.2.1.tar.gz", hash = "sha256:61980854fd66de3a90028d679a954d5f2623e83144b5afe5ee86f43d762e5f0a" }
199
+ wheels = [
200
+ { url = "https://mirrors.aliyun.com/pypi/packages/1c/a7/c8a2d361bf89c0d9577c934ebb7421b25dc84bf3a8e3ac0a40aed9acc547/pyparsing-3.2.1-py3-none-any.whl", hash = "sha256:506ff4f4386c4cec0590ec19e6302d3aedb992fdc02c761e90416f158dacf8e1" },
201
+ ]
202
+
203
+ [[package]]
204
+ name = "pyyaml"
205
+ version = "6.0.2"
206
+ source = { registry = "https://mirrors.aliyun.com/pypi/simple/" }
207
+ sdist = { url = "https://mirrors.aliyun.com/pypi/packages/54/ed/79a089b6be93607fa5cdaedf301d7dfb23af5f25c398d5ead2525b063e17/pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e" }
208
+ wheels = [
209
+ { url = "https://mirrors.aliyun.com/pypi/packages/ef/e3/3af305b830494fa85d95f6d95ef7fa73f2ee1cc8ef5b495c7c3269fb835f/PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba" },
210
+ { url = "https://mirrors.aliyun.com/pypi/packages/45/9f/3b1c20a0b7a3200524eb0076cc027a970d320bd3a6592873c85c92a08731/PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1" },
211
+ { url = "https://mirrors.aliyun.com/pypi/packages/7c/9a/337322f27005c33bcb656c655fa78325b730324c78620e8328ae28b64d0c/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133" },
212
+ { url = "https://mirrors.aliyun.com/pypi/packages/a3/69/864fbe19e6c18ea3cc196cbe5d392175b4cf3d5d0ac1403ec3f2d237ebb5/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484" },
213
+ { url = "https://mirrors.aliyun.com/pypi/packages/04/24/b7721e4845c2f162d26f50521b825fb061bc0a5afcf9a386840f23ea19fa/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5" },
214
+ { url = "https://mirrors.aliyun.com/pypi/packages/2b/b2/e3234f59ba06559c6ff63c4e10baea10e5e7df868092bf9ab40e5b9c56b6/PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc" },
215
+ { url = "https://mirrors.aliyun.com/pypi/packages/fe/0f/25911a9f080464c59fab9027482f822b86bf0608957a5fcc6eaac85aa515/PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652" },
216
+ { url = "https://mirrors.aliyun.com/pypi/packages/14/0d/e2c3b43bbce3cf6bd97c840b46088a3031085179e596d4929729d8d68270/PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183" },
217
+ { url = "https://mirrors.aliyun.com/pypi/packages/fa/de/02b54f42487e3d3c6efb3f89428677074ca7bf43aae402517bc7cca949f3/PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563" },
218
+ ]
219
+
220
+ [[package]]
221
+ name = "requests"
222
+ version = "2.32.3"
223
+ source = { registry = "https://mirrors.aliyun.com/pypi/simple/" }
224
+ dependencies = [
225
+ { name = "certifi" },
226
+ { name = "charset-normalizer" },
227
+ { name = "idna" },
228
+ { name = "urllib3" },
229
+ ]
230
+ sdist = { url = "https://mirrors.aliyun.com/pypi/packages/63/70/2bf7780ad2d390a8d301ad0b550f1581eadbd9a20f896afe06353c2a2913/requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760" }
231
+ wheels = [
232
+ { url = "https://mirrors.aliyun.com/pypi/packages/f9/9b/335f9764261e915ed497fcdeb11df5dfd6f7bf257d4a6a2a686d80da4d54/requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6" },
233
+ ]
234
+
235
+ [[package]]
236
+ name = "requests-toolbelt"
237
+ version = "1.0.0"
238
+ source = { registry = "https://mirrors.aliyun.com/pypi/simple/" }
239
+ dependencies = [
240
+ { name = "requests" },
241
+ ]
242
+ sdist = { url = "https://mirrors.aliyun.com/pypi/packages/f3/61/d7545dafb7ac2230c70d38d31cbfe4cc64f7144dc41f6e4e4b78ecd9f5bb/requests-toolbelt-1.0.0.tar.gz", hash = "sha256:7681a0a3d047012b5bdc0ee37d7f8f07ebe76ab08caeccfc3921ce23c88d5bc6" }
243
+ wheels = [
244
+ { url = "https://mirrors.aliyun.com/pypi/packages/3f/51/d4db610ef29373b879047326cbf6fa98b6c1969d6f6dc423279de2b1be2c/requests_toolbelt-1.0.0-py2.py3-none-any.whl", hash = "sha256:cccfdd665f0a24fcf4726e690f65639d272bb0637b9b92dfd91a5568ccf6bd06" },
245
+ ]
246
+
247
+ [[package]]
248
+ name = "scrapercookie"
249
+ version = "0.1.0"
250
+ source = { virtual = "." }
251
+ dependencies = [
252
+ { name = "chardet" },
253
+ { name = "cloudscraper" },
254
+ { name = "fastapi" },
255
+ { name = "pydantic" },
256
+ { name = "typing-extensions" },
257
+ { name = "uvicorn" },
258
+ ]
259
+
260
+ [package.dev-dependencies]
261
+ dev = [
262
+ { name = "poethepoet" },
263
+ ]
264
+
265
+ [package.metadata]
266
+ requires-dist = [
267
+ { name = "chardet", specifier = ">=5.2.0" },
268
+ { name = "cloudscraper", specifier = ">=1.2.71" },
269
+ { name = "fastapi", specifier = ">=0.115.10" },
270
+ { name = "pydantic", specifier = ">=2.10.6" },
271
+ { name = "typing-extensions", specifier = ">=4.12.2" },
272
+ { name = "uvicorn", specifier = ">=0.34.0" },
273
+ ]
274
+
275
+ [package.metadata.requires-dev]
276
+ dev = [{ name = "poethepoet", specifier = ">=0.32.1" }]
277
+
278
+ [[package]]
279
+ name = "sniffio"
280
+ version = "1.3.1"
281
+ source = { registry = "https://mirrors.aliyun.com/pypi/simple/" }
282
+ sdist = { url = "https://mirrors.aliyun.com/pypi/packages/a2/87/a6771e1546d97e7e041b6ae58d80074f81b7d5121207425c964ddf5cfdbd/sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc" }
283
+ wheels = [
284
+ { url = "https://mirrors.aliyun.com/pypi/packages/e9/44/75a9c9421471a6c4805dbf2356f7c181a29c1879239abab1ea2cc8f38b40/sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2" },
285
+ ]
286
+
287
+ [[package]]
288
+ name = "starlette"
289
+ version = "0.46.0"
290
+ source = { registry = "https://mirrors.aliyun.com/pypi/simple/" }
291
+ dependencies = [
292
+ { name = "anyio" },
293
+ ]
294
+ sdist = { url = "https://mirrors.aliyun.com/pypi/packages/44/b6/fb9a32e3c5d59b1e383c357534c63c2d3caa6f25bf3c59dd89d296ecbaec/starlette-0.46.0.tar.gz", hash = "sha256:b359e4567456b28d473d0193f34c0de0ed49710d75ef183a74a5ce0499324f50" }
295
+ wheels = [
296
+ { url = "https://mirrors.aliyun.com/pypi/packages/41/94/8af675a62e3c91c2dee47cf92e602cfac86e8767b1a1ac3caf1b327c2ab0/starlette-0.46.0-py3-none-any.whl", hash = "sha256:913f0798bd90ba90a9156383bcf1350a17d6259451d0d8ee27fc0cf2db609038" },
297
+ ]
298
+
299
+ [[package]]
300
+ name = "typing-extensions"
301
+ version = "4.12.2"
302
+ source = { registry = "https://mirrors.aliyun.com/pypi/simple/" }
303
+ sdist = { url = "https://mirrors.aliyun.com/pypi/packages/df/db/f35a00659bc03fec321ba8bce9420de607a1d37f8342eee1863174c69557/typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8" }
304
+ wheels = [
305
+ { url = "https://mirrors.aliyun.com/pypi/packages/26/9f/ad63fc0248c5379346306f8668cda6e2e2e9c95e01216d2b8ffd9ff037d0/typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d" },
306
+ ]
307
+
308
+ [[package]]
309
+ name = "urllib3"
310
+ version = "2.3.0"
311
+ source = { registry = "https://mirrors.aliyun.com/pypi/simple/" }
312
+ sdist = { url = "https://mirrors.aliyun.com/pypi/packages/aa/63/e53da845320b757bf29ef6a9062f5c669fe997973f966045cb019c3f4b66/urllib3-2.3.0.tar.gz", hash = "sha256:f8c5449b3cf0861679ce7e0503c7b44b5ec981bec0d1d3795a07f1ba96f0204d" }
313
+ wheels = [
314
+ { url = "https://mirrors.aliyun.com/pypi/packages/c8/19/4ec628951a74043532ca2cf5d97b7b14863931476d117c471e8e2b1eb39f/urllib3-2.3.0-py3-none-any.whl", hash = "sha256:1cee9ad369867bfdbbb48b7dd50374c0967a0bb7710050facf0dd6911440e3df" },
315
+ ]
316
+
317
+ [[package]]
318
+ name = "uvicorn"
319
+ version = "0.34.0"
320
+ source = { registry = "https://mirrors.aliyun.com/pypi/simple/" }
321
+ dependencies = [
322
+ { name = "click" },
323
+ { name = "h11" },
324
+ ]
325
+ sdist = { url = "https://mirrors.aliyun.com/pypi/packages/4b/4d/938bd85e5bf2edeec766267a5015ad969730bb91e31b44021dfe8b22df6c/uvicorn-0.34.0.tar.gz", hash = "sha256:404051050cd7e905de2c9a7e61790943440b3416f49cb409f965d9dcd0fa73e9" }
326
+ wheels = [
327
+ { url = "https://mirrors.aliyun.com/pypi/packages/61/14/33a3a1352cfa71812a3a21e8c9bfb83f60b0011f5e36f2b1399d51928209/uvicorn-0.34.0-py3-none-any.whl", hash = "sha256:023dc038422502fa28a09c7a30bf2b6991512da7dcdb8fd35fe57cfc154126f4" },
328
+ ]