-
Notifications
You must be signed in to change notification settings - Fork 26
/
6_weekend_reservation.py
541 lines (456 loc) · 22.8 KB
/
6_weekend_reservation.py
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
"""
6、周末欢乐购
直接复用 日常预约商品的环境变量,找出 周末欢乐购 可预约的商品 和 日常预约的商品重合的商品 ID 进行预约。
即 日常预约环境变量设置 A、B、C 商品,欢乐购可预约 B、D 商品,则脚本会自动筛选重合的 B 商品预约,D 商品不预约。
店铺ID 和 缺货店铺相关配置沿用日常预约的。
通知:运行结果会调用青龙面板的通知渠道。
配置环境变量:KEN_IMAOTAI_ENV
-- 在旧版本青龙(例如 v2.13.8)中,使用 $ 作为分隔符时会出现解析环境变量失败,此时可以把 `$` 分隔符换为 `#` 作为分隔符。
-- 📣 怕出错?**建议直接使用 `#` 作为分隔符即可** (2024-10-15 更新支持)。
内容格式为:PHONE_NUMBER$USER_ID$DEVICE_ID$MT_VERSION$PRODUCT_ID_LIST$SHOP_ID^SHOP_MODE^PROVINCE^CITY$LAT$LNG$TOKEN$COOKIE
解释:手机号码$用户ID$设备ID$版本号$商品ID列表$店铺ID店铺缺货时自动采用的模式^省份^城市$纬度$经度$TOKEN$COOKIE
多个用户时使用 & 连接
说明:^SHOP_MODE^PROVINCE^CITY 为可选
常量。
- PHONE_NUMBER: 用户的手机号码。 --- 自己手机号码
- CODE: 短信验证码。 --- 运行 1_generate_code.py 获取
- DEVICE_ID: 设备的唯一标识符。 --- 运行 1_generate_code.py 获取
- MT_VERSION: 应用程序的版本号。 --- 运行 1_generate_code.py 获取
- USER_ID: 用户的唯一标识符。 --- 运行 2_login.py 获取
- TOKEN: 用于身份验证的令牌。 --- 运行 2_login.py 获取
- COOKIE: 用于会话管理的Cookie。 --- 运行 2_login.py 获取
- PRODUCT_ID_LIST: 商品ID列表,表示用户想要预约的商品。--- 运行 3_retrieve_shop_and_product_info.py 获取
- SHOP_ID: 店铺的唯一标识符。 --- 运行 3_retrieve_shop_and_product_info.py 获取
可设置为 AUTO,则根据 SHOP_MODE 的值来选择店铺 ID。
- SHOP_MODE:店铺缺货模式,可选值为NEAREST(距离最近)或INVENTORY(库存最多)。设置该值时,需要同时设置 PROVINCE 和 CITY。
非必填,但 SHOP_ID 设置 AUTO 时为必填,需要同时设置 SHOP_MODE、PROVINCE 和 CITY。
- PROVINCE: 用户所在的省份。 --- 与 3_retrieve_shop_and_product_info.py 填写的省份一致
非必填,但 SHOP_MODE 设置为 NEAREST 或 INVENTORY 时为必填。
- CITY: 用户所在的城市。 --- 与 3_retrieve_shop_and_product_info.py 填写的城市一致
非必填,但 SHOP_MODE 设置为 NEAREST 或 INVENTORY 时为必填。
- LAT: 用户所在位置的纬度。 --- 运行 3_retrieve_shop_and_product_info.py 获取
- LNG: 用户所在位置的经度。 --- 运行 3_retrieve_shop_and_product_info.py 获取
"""
import datetime
import time
import requests
import json
import logging
import base64
import os
import ast
import io
import math
import re
from Crypto.Cipher import AES
from Crypto.Util.Padding import pad
from notify import send
# 每周星期天 15:05 开始预约
'''
cron: 5 15 * * 0
new Env("6_周末欢乐购")
'''
# 创建 StringIO 对象
log_stream = io.StringIO()
# 配置 logging
logger = logging.getLogger()
logger.setLevel(logging.INFO)
# 创建控制台 Handler
console_handler = logging.StreamHandler()
console_handler.setFormatter(
logging.Formatter('%(asctime)s - %(levelname)s - %(message)s'))
# 创建 StringIO Handler
stream_handler = logging.StreamHandler(log_stream)
# stream_handler.setFormatter(logging.Formatter('%(asctime)s - %(levelname)s - %(message)s'))
# 将两个 Handler 添加到 logger
logger.addHandler(console_handler)
logger.addHandler(stream_handler)
# 当天零点的时间戳
timestamp_today = None
# 会话 ID
session_id = None
# 全部店铺信息
all_shops_info = None
# 调试模式
DEBUG = False
# 读取 KEN_IMAOTAI_ENV 环境变量
KEN_IMAOTAI_ENV = os.getenv('KEN_IMAOTAI_ENV', '')
# 加密 KEY
ENCRYPT_KEY = "qbhajinldepmucsonaaaccgypwuvcjaa"
# 加密 IV
ENCRYPT_IV = "2018534749963515"
# 解析 KEN_IMAOTAI_ENV 环境变量并保存到 user 列表
users = []
if KEN_IMAOTAI_ENV:
env_list = KEN_IMAOTAI_ENV.split('&')
for env in env_list:
try:
# 使用 re.split() 分割字符串,支持 '#' 和 '$'
split_values = re.split(r'[#$]', env)
PHONE_NUMBER, USER_ID, DEVICE_ID, MT_VERSION, PRODUCT_ID_LIST, SHOP_INFO, LAT, LNG, TOKEN, COOKIE = split_values
SHOP_MODE = ''
PROVINCE = ''
CITY = ''
if '^' in SHOP_INFO:
parts = SHOP_INFO.split('^')
if len(parts) > 1:
# 检测 parts 长度是否为 4,否则抛出异常
if len(parts) != 4:
raise Exception(
"🚫 店铺缺货模式值错误,请检查是否为 SHOP_ID^SHOP_MODE^PROVINCE^CITY"
)
SHOP_ID, SHOP_MODE, PROVINCE, CITY = parts
# 检测 SHOP_MODE 是否为 NEAREST 或 INVENTORY
if SHOP_MODE not in ['NEAREST', 'INVENTORY']:
raise Exception(
"🚫 店铺缺货模式值错误,请检查 SHOP_MODE 值是否为 NEAREST(<默认> 距离最近) 或 INVENTORY(库存最多)"
)
# 如果 SHOP_MODE 值合法,则需要配合检测 PROVINCE 和 CITY 是否为空(接口需要用到这些值)
if not PROVINCE or not CITY:
raise Exception(
"🚫 店铺缺货模式值为 NEAREST 或 INVENTORY 时,需要同时设置 PROVINCE 和 CITY"
)
else:
logging.warning(
"🚨🚨 建议根据环境变量格式,设置 SHOP_ID^SHOP_MODE^PROVINCE^CITY 值,否则无法在指定店铺缺货时自动预约其他店铺!🚨🚨"
)
# 如果 SHOP_INFO 没有 ^ 符号,则 SHOP_ID 为 SHOP_INFO
SHOP_ID = SHOP_INFO
# 如果 SHOP_ID 为 AUTO,检查 SHOP_MODE 是否为空
if SHOP_ID == 'AUTO' and not SHOP_MODE:
raise Exception(
"🚫 店铺缺货模式值错误,SHOP_ID 值为 AUTO 时,需设置 SHOP_MODE、PROVINCE 和 CITY 值 "
)
user = {
'PHONE_NUMBER': PHONE_NUMBER.strip(),
'USER_ID': USER_ID.strip(),
'DEVICE_ID': DEVICE_ID.strip(),
'MT_VERSION': MT_VERSION.strip(),
'PRODUCT_ID_LIST': ast.literal_eval(PRODUCT_ID_LIST.strip()),
'SHOP_ID': SHOP_ID.strip(),
'SHOP_MODE': SHOP_MODE.strip(),
'PROVINCE': PROVINCE.strip(),
'CITY': CITY.strip(),
'LAT': LAT.strip(),
'LNG': LNG.strip(),
'TOKEN': TOKEN.strip(),
'COOKIE': COOKIE.strip()
}
# 检查字段是否完整且有值,不检查 SHOP_MODE、PROVICE、CITY 字段(PROVICE 和 CITY 用于 SHOP_MODE 里,而 SHOP_MODE 可选)
required_fields = [
'PHONE_NUMBER', 'USER_ID', 'DEVICE_ID', 'MT_VERSION',
'PRODUCT_ID_LIST', 'SHOP_ID', 'LAT', 'LNG', 'TOKEN', 'COOKIE'
]
if all(user.get(field) for field in required_fields):
# 判断 PRODUCT_ID_LIST 长度是否大于 0
if len(user['PRODUCT_ID_LIST']) > 0:
users.append(user)
else:
raise Exception("🚫 预约商品列表 - PRODUCT_ID_LIST 值为空,请添加后重试")
else:
logging.info(f"🚫 用户信息不完整: {user}")
except Exception as e:
errText = f"🚫 KEN_IMAOTAI_ENV 环境变量格式错误: {e}"
send("i茅台预约日志:", errText)
raise Exception(errText)
logging.info("找到以下用户配置:")
# 输出用户信息
for index, user in enumerate(users):
if DEBUG:
logging.info(f"用户 {index + 1}: {user}")
continue
logging.info(f"用户 {index + 1}: 📞 {user['PHONE_NUMBER']}")
else:
errText = "🚫 KEN_IMAOTAI_ENV 环境变量未定义"
send("i茅台预约日志:", errText)
raise Exception(errText)
base_url_game = "https://h5.moutai519.com.cn/game"
# DEBUG 控制日志输出
def debug_log(message):
if DEBUG:
logging.info(message)
# 生成请求头
def generate_headers(device_id, mt_version, cookie, lat=None, lng=None):
headers = {
"MT-Device-ID": device_id,
"MT-APP-Version": mt_version,
"User-Agent": "iOS;16.3;Apple;?unrecognized?",
"Cookie": f"MT-Token-Wap={cookie};MT-Device-ID-Wap={device_id};"
}
if lat and lng:
headers["MT-Lat"] = lat
headers["MT-Lng"] = lng
return headers
# 加密
def aes_cbc_encrypt(data, key, iv):
cipher = AES.new(key.encode('utf-8'), AES.MODE_CBC, iv.encode('utf-8'))
padded_data = pad(data.encode('utf-8'), AES.block_size)
encrypted_data = cipher.encrypt(padded_data)
return base64.b64encode(encrypted_data).decode('utf-8')
# 预约商品
def reserve_product(itemId, shopId, sessionId, userId, token, deviceId,
mtVersion, lat, lng, shop_mode, province, city):
if shop_mode is None:
logger.info(f"⚡ 重新预约:店铺 ID:{shopId}, 商品 ID:{itemId}")
mt_k = f'{int(time.time() * 1000)}'
headers = {
'User-Agent': 'iOS;16.3;Apple;?unrecognized?',
'MT-Token': token,
'MT-Network-Type': 'WIFI',
'MT-User-Tag': '0',
'MT-K': mt_k,
'MT-Info': '028e7f96f6369cafe1d105579c5b9377',
'MT-APP-Version': mtVersion,
'Accept-Language': 'zh-Hans-CN;q=1',
'MT-Device-ID': deviceId,
'MT-Bundle-ID': 'com.moutai.mall',
'MT-Lng': lng,
'MT-Lat': lat,
'Content-Type': 'application/json',
'userId': str(userId)
}
requestBody = {
"itemInfoList": [{
"count": 1,
"itemId": str(itemId)
}],
"sessionId": sessionId,
"userId": str(userId),
"shopId": str(shopId)
}
actParam = aes_cbc_encrypt(json.dumps(requestBody), ENCRYPT_KEY,
ENCRYPT_IV)
requestBody['actParam'] = actParam
response = requests.post(
'https://app.moutai519.com.cn/xhr/front/mall/reservation/add',
headers=headers,
json=requestBody)
code = response.json().get('code', 0)
if code == 2000:
result = response.json().get('data', {}).get('successDesc', "未知")
logging.info(f"🛒 商品ID {itemId} ✅ 预约成功: {result}")
return result
else:
message = response.json().get("message", "未知原因")
error_msg = f'🚫 预约失败: 错误码 {code}, 错误信息: {message}'
logging.error(f"🛒 商品ID {itemId} {error_msg}")
# 如果 message 包含 "请选择另外的门店申购",则根据店铺缺货模式获取可预约的店铺 ID
if "请选择另外的门店申购" in message:
if shop_mode:
try:
logging.info(f"--- 🏁 根据店铺缺货模式 {shop_mode} 获取可预约的店铺 ID")
shop_id_new = get_shop_id_by_mode(lat, lng, shop_mode,
province, city, itemId)
if shop_id_new:
logging.info(
f"--- 🏁 获取可预约的店铺 ID 成功,店铺 ID: {shop_id_new},重新预约商品"
)
# 这里特地传 None,在尝试自动预约其他店铺失败时,不再递归调用
reserve_product(itemId, shop_id_new, sessionId, userId,
token, deviceId, mtVersion, lat, lng,
None, None, None)
else:
logging.info(
f"--- 🚫 获取可预约的店铺 ID 失败,请检查店铺缺货模式 SHOP_ID^SHOP_MODE^PROVINCE^CITY 值 是否正确"
)
except Exception as e:
logging.error(f"--- 🚫 获取可预约的店铺 ID 失败: {e}")
else:
logging.info(
f"🚫 店铺缺货模式未设置,无法自动预约其他店铺,请手动在APP上预约 或者 设置 SHOP_ID^SHOP_MODE^PROVINCE^CITY 值"
)
# 获取 Session ID 和商品信息,每次都会变化
def get_session_id_items():
global timestamp_today
# 当前时间戳
current_timestamp = int(time.time() * 1000)
# 发送请求
api_url = f"https://h5.moutai519.com.cn/xhr/front/mall/index/special/session/getByType/3?__timestamp={current_timestamp}&"
response = requests.get(api_url)
data = response.json()
if data["code"] != 2000:
raise Exception("🚫 获取 Session ID 和商品信息失败")
# 解析响应
sessionId = data["data"]["sessionId"]
itemList = [{
"itemCode": item["itemCode"],
"title": item["title"]
} for item in data["data"]["itemList"]]
return {"sessionId": sessionId, "itemList": itemList}
# i茅台~ 启动!
def start(user, items_list):
global session_id
# 筛选周末欢乐购可预约的商品和日常预约的商品重合的商品ID列表
weekend_product_id_list = []
logging.info('--------------------------')
logging.info(f"🧾 用户:{user['PHONE_NUMBER']},开始预约商品")
# 筛选重合的商品 ID
for item in items_list:
if item["itemCode"] in user["PRODUCT_ID_LIST"]:
weekend_product_id_list.append(item["itemCode"])
if not weekend_product_id_list:
logging.info(f"🚫 用户:{user['PHONE_NUMBER']},找不到与日常预约重合的商品 ID,将不执行欢乐购!")
return
else:
logging.info(f"⚡ 筛选与日常预约重合的商品 ID:{weekend_product_id_list}")
if user["SHOP_ID"] == "AUTO":
logging.info(f"🏁 店铺 ID 为 AUTO,根据店铺模式 {user['SHOP_MODE']} 获取店铺 ID")
for product_id in weekend_product_id_list:
shop_id = user["SHOP_ID"]
# 判断 SHOP_ID 是否为 AUTO,如果是,则根据 SHOP_MODE 获取店铺 ID
if user["SHOP_ID"] == "AUTO":
shop_id = get_shop_id_by_mode(user["LAT"], user["LNG"],
user["SHOP_MODE"], user["PROVINCE"],
user["CITY"], product_id)
logging.info(f"🚩 商品ID:{product_id},获取店铺 ID({shop_id})成功")
reserve_product(itemId=product_id,
shopId=shop_id,
sessionId=session_id,
userId=user["USER_ID"],
token=user["TOKEN"],
deviceId=user["DEVICE_ID"],
mtVersion=user["MT_VERSION"],
lat=user["LAT"],
lng=user["LNG"],
shop_mode=user["SHOP_MODE"],
province=user["PROVINCE"],
city=user["CITY"])
logging.info("🎁 所有商品预约完成")
# 获取售卖商店信息
def get_shop_info(province_name, city_name):
# 第一步:获取myserviceshops的URL
api_url = "https://static.moutai519.com.cn/mt-backend/xhr/front/mall/resource/get"
response = requests.get(api_url)
data = response.json()
if data["code"] != 2000:
raise Exception("🚫 获取资源信息失败")
myserviceshops_url = data["data"]["myserviceshops"]["url"]
# 第二步:下载并解析myserviceshops.json
response = requests.get(myserviceshops_url)
shops_data = response.json()
# 第三步:根据provinceName和cityName过滤数据
result = []
for _, shop_info in shops_data.items():
if shop_info["provinceName"] == province_name and shop_info[
"cityName"] == city_name:
result.append({
"lat": shop_info["lat"],
"lng": shop_info["lng"],
"name": shop_info["name"],
"shopId": shop_info["shopId"]
})
return result
# 获取指定商品可以预约的店铺信息
def get_shop_by_product_id(province_name, product_id):
global timestamp_today
global session_id
api_url = f"https://static.moutai519.com.cn/mt-backend/xhr/front/mall/shop/list/slim/v3/{session_id}/{province_name}/{product_id}/{timestamp_today}"
response = requests.get(api_url)
data = response.json()
if data["code"] != 2000:
raise Exception("🚫 获取指定商品可以预约的店铺信息失败")
# 解析响应,获取 product_id = itemId 的店铺 shopId、inventory
result = []
for shop in data["data"]["shops"]:
for item in shop["items"]:
if item["itemId"] == product_id:
result.append({
"shopId": shop["shopId"],
"inventory": item["inventory"]
})
return result
# 获取两个地点之间的距离
def haversine(lat1, lng1, lat2, lng2):
# 将经纬度转换为弧度
lat1, lng1, lat2, lng2 = map(math.radians, [lat1, lng1, lat2, lng2])
# Haversine 公式
dlat = lat2 - lat1
dlng = lng2 - lng1
a = math.sin(
dlat / 2)**2 + math.cos(lat1) * math.cos(lat2) * math.sin(dlng / 2)**2
c = 2 * math.atan2(math.sqrt(a), math.sqrt(1 - a))
# 地球半径(公里)
R = 6371.0
distance = R * c
# 保留三位小数
return round(distance, 3)
# 根据 SHOP_MODE 获取店铺ID
def get_shop_id_by_mode(lat, lng, shop_mode, province_name, city_name,
product_id):
# 判断入参是否为空
if not lat or not lng or not shop_mode or not province_name or not city_name or not product_id:
logging.warning("🚫 缺货模式 - 获取店铺ID失败,请检查入参")
return ""
global all_shops_info, DEBUG
# 判断 all_shops_info 是否为空,如果为空,则获取所有店铺信息
if all_shops_info is None:
all_shops_info = get_shop_info(province_name, city_name)
debug_log(f"--- 🏁 获取本城市({province_name}-{city_name})所有店铺信息 成功")
# 不同的商品 ID 获取到的数量不同,需要重新获取
shops_by_product_id = get_shop_by_product_id(province_name, product_id)
debug_log(f"--- 🏁 获取本省份({province_name})指定商品({product_id})可以预约的店铺信息 成功")
# 筛选 省份内所有能预约的店铺 在 用户选的城市店铺 中有哪些
filter_shops = []
for shop_province in shops_by_product_id:
for shop_city in all_shops_info:
if shop_province["shopId"] == shop_city["shopId"]:
# 把 inventory 库存数量 添加到 shop_city 中,复制 shop_city 不改变原来 all_shops_info 数据
shop_city_copy = shop_city.copy()
shop_city_copy["inventory"] = shop_province["inventory"]
filter_shops.append(shop_city_copy)
debug_log(f"--- 🏁 --- 店铺信息: {shop_city_copy}")
break
# 根据 SHOP_MODE 是 NEAREST 或 INVENTORY,获取店铺ID
if shop_mode == "NEAREST":
debug_log("--- 🏁 店铺缺货模式:NEAREST(距离最近)")
# 计算用户位置到店铺的距离,并且按照距离近到远排序,把距离添加到 filter_shops 中
for shop in filter_shops:
distance = haversine(float(lat), float(lng), float(shop["lat"]),
float(shop["lng"]))
shop["distance"] = distance
filter_shops.sort(key=lambda x: x["distance"])
if DEBUG:
logging.info(f"--- 🏁 用户位置到各个店铺的距离: ")
for shop in filter_shops:
logging.info(
f"--- 🏁 --- 店铺名称: {shop.get('name')}, 店铺ID:{shop.get('shopId')},距离: {shop.get('distance')} 公里"
)
debug_log(
f"--- 🏁 找到最近的店铺:{filter_shops[0].get('name')}, 店铺ID:{filter_shops[0].get('shopId')},距离:{filter_shops[0].get('distance')} 公里"
)
elif shop_mode == "INVENTORY":
debug_log("--- 🏁 店铺缺货模式:INVENTORY(库存最多)")
filter_shops.sort(key=lambda x: x["inventory"], reverse=True)
debug_log(
f"--- 🏁 找到库存最多的店铺:{filter_shops[0].get('name')}, 店铺ID:{filter_shops[0].get('shopId')},库存:{filter_shops[0].get('inventory')}"
)
# 返回店铺ID,如果 filter_shops 为空,则返回异常
if len(filter_shops) == 0:
raise Exception("--- 🚫 没有找到可以预约的店铺")
return filter_shops[0]["shopId"]
if __name__ == "__main__":
if not DEBUG:
# 判断当前时间是否是星期天的 15:00 到 16:00 期间
now = datetime.datetime.now()
if now.weekday() != 6 or now.hour < 15 or now.hour >= 16:
err_msg = "🚫 当前时间不在星期天的 15:00 到 16:00 期间,不执行预约"
logger.warning(err_msg)
send("i茅台周末欢乐购日志:", err_msg)
exit()
# 生成时间戳
timestamp_today = str(
int(time.mktime(datetime.date.today().timetuple())) * 1000)
result = get_session_id_items()
session_id = result["sessionId"]
items_list = result["itemList"]
items_list_str = ""
for item in items_list:
items_list_str += f"商品({item['itemCode']})-{item['title']}、"
logging.info('--------------------------')
logging.info(f"💬 当前 session:{session_id}。本场次可预约商品列表:{items_list_str}")
for user in users:
start(user, items_list)
logging.info('--------------------------')
logging.info(" ✅ 所有用户预约完成")
log_contents = log_stream.getvalue()
send("i茅台周末欢乐购日志:", log_contents)