forked from hiitiger/JD-SHOPPER
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
27 lines (24 loc) · 788 Bytes
/
Copy pathmain.py
File metadata and controls
27 lines (24 loc) · 788 Bytes
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
import sys
from Config.settings import config
from Core.spider import Waiter
if __name__ == '__main__':
choiceList = """
===== 注意 =====
使用前请按要求填写config.ini中的信息
功能列表:
1.自动加购物车,缺货等待上架自动下单
2.自动定时加购物车下单(普通商品,非秒杀抢购)
"""
print(choiceList)
choice_function = ''
if choice_function == '':
choice_function = input('请选择:')
if choice_function == '1':
waiter = Waiter()
waiter.waitForSell()
elif choice_function == '2':
waiter = Waiter()
waiter.waitTimeForSell()
else:
print('没有此功能')
sys.exit(1)