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
#!/usr/bin/python
# -*- coding: GBK -*-
#
##@package
#
# @todo: ÇþµÀɾµµ²âÊԵijäÖµ·µÀû
#
# @author: Alee
# @date 2019-1-22 ÉÏÎç11:40:21
# @version 1.0
#
# @note: 
#
#---------------------------------------------------------------------
#ÐèÒª°²×°µÚÈý·½¿â
#waitress-1.1.0.tar.gz
#requests-2.18.4.tar.gz
#---------------------------------------------------------------------
import webapp
from bottle import run
from lib import mylog
import time
import os
import datetime
 
Def_Debug = True
 
# ²âÊÔ²½Öè 1. Ë«»÷DoubleBillTool.py µ¼ÈëÊý¾ÝBill.txt, ¿ÉÅä²âÊÔÕ˺Å
# 2. PHPÔö¼ÓÆÕͨGMÃüÁî £¬GMT_AllDoubleBill,GMT_QDFLDoubleBill
# 2. µÇ¼ÓгäÖµµÄÕ˺ţ¬¼´¿É»ñµÃµÚÒ»Ìì·µÀû£¬
# 3. ºóÐøÌ죬ÔÚÏßÇл»µØÍ¼»òÕߵǼ¼´¿É»ñµÃ·µÀûÓʼþ
#
#
#
 
#center.secondworld.net.cn
def main():
    time.sleep(1) 
    os.system("title DoubleBill-%s"%datetime.datetime.today())
    mylog.InitLog(r".\ServerLog", "DoubleBill.txt", False, Def_Debug)
    
    CenterPort = 53004  # ¶Ë¿ÚÔ­Í·ÌõSDKʹÓÃÒÑ·ÏÆú
    
    run(host='0.0.0.0', port=CenterPort, app=webapp.myapp, server='waitress')
    return
 
if __name__ == '__main__':
    main()