-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathconfig.py
43 lines (30 loc) · 1.05 KB
/
config.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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# debug mode
DEBUG = False
PRINT = 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"
ACTIVE_URL = "http://push.mam.sdo.com:8000/active.php"
# starts with Million/100
USER_AGENT = "Million/102 (aries; aries; 4.1.1) Xiaomi/aries/aries:4.1.1/JRO03L/3.12.13:user/release-keys"
# AESkey,god knows where it from
AESkey = "011218525486l6u1"
RSAkey = """MFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBAM5U06JAbYWdRBrnMdE2bEuDmWgUav7xNKm7i8s1Uy/\nfvpvfxLeoWowLGIBKz0kDLIvhuLV8Lv4XV0+aXdl2j4kCAwEAAQ==""".decode("base64")
#PUSH SERVER need this key
DES_KEY = "Fwe3;$84@kl3221554*G(|d@"
tasoo_uid = None
tasoo_pwd = None
allow_offline = []
try:
from local_config import *
except ImportError:
pass