forked from binux/libMA
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.py
More file actions
31 lines (22 loc) · 699 Bytes
/
config.py
File metadata and controls
31 lines (22 loc) · 699 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
27
28
29
30
31
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# debug mode
DEBUG = False
# deviceToken should be a 32 length string,i dont't want to know where it from
deviceToken = "209504d1c903cdb5d0f4b2725b7803db728948"
# loginId,your account,to Chinese Users,it shoule be your telephone number
loginId = ""
# password
password = ""
# don't touch this,don't forget to add http://
HTTP_PROXY = ""
# for chinese users
BASE_URL = "http://game1-CBT.ma.sdo.com:10001"
# starts with Million/100
USER_AGENT = "Million/100 (ibbot; ibot; 9.9) ib/ibbot/ibbot:9.9/IMM76L/ibbot/test-keys"
# AESkey,god knows where it from
AESkey = "rBwj1MIAivVN222b"
try:
from local_config import *
except ImportError:
pass