File size: 667 Bytes
318db6e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import subprocess
import json, httpx

# API的URL
url = "http://localhost:8002/fetish"

# 准备要发送的数据 生成A-D之间的十个随机答案
import random

answers = []
for _ in range(10):
    answers.append(random.choice(["A", "B", "C", "D"]))
data = {
    "answer": answers  # 替换为实际的答案列表
}

# 将数据转换为JSON字符串
data_json = json.dumps(data)

# 构建curl命令
curl_command = [
    "curl", "-X", "POST", "-H", "Content-Type: application/json", "-d", data_json, url
]

# 执行curl命令
process = subprocess.run(curl_command, capture_output=True, text=True)

# 打印返回的结果
print(process.stdout)
print(data_json)