-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathstart.py
31 lines (25 loc) · 994 Bytes
/
start.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
import sys
from src import Bot, Client, Collector, \
Predictor, PredictorLearnThread, Scribe, \
Trader, TraderThreadCleaner, GarbageCleanerThread
if __name__ == '__main__':
use_proxy = len(sys.argv) > 1 and sys.argv[1] == '-p'
pool = {
'client': Client(use_proxy),
'bot': Bot(use_proxy),
'collector': Collector(),
'predictor': Predictor(),
'scribe': Scribe(),
'trader': Trader(),
}
for _, entity in pool.items():
entity.set_pool(pool)
garbage_cleaning_thread = GarbageCleanerThread(pool['bot'])
garbage_cleaning_thread.setDaemon(True)
garbage_cleaning_thread.start()
predictor_learn_thread = PredictorLearnThread(pool['predictor'], pool['client'], pool['bot'])
predictor_learn_thread.setDaemon(True)
predictor_learn_thread.start()
trader_thread_cleaner = TraderThreadCleaner(pool['trader'], pool['bot'])
trader_thread_cleaner.setDaemon(True)
trader_thread_cleaner.start()