Beispiel #1
0
 def __init__(self, filename, _type, key=None):
     self.filename = filename
     self.type = _type
     self.key = key
     self.read = read.Read()
     self.write = write.Write()
     self.add = add.Add()
Beispiel #2
0
 def run_add(self):
     sys.stdout = self
     ## sys.stderr = self
     try:
         del (sys.modules["add"])
     except:
         ## Yeah, it's a real ugly solution...
         pass
     import add
     add.Add()
     sys.stdout = sys.__stdout__
Beispiel #3
0
 def add(self):
     import add
     self.f.destroy()
     add.Add(self.master)
Beispiel #4
0
 def add(self):
     dialog = add.Add()
     dialog.show()
     dialog.exec_()
Beispiel #5
0
import add
print(add.Add(100, 200))
Beispiel #6
0
import add
import div

print(add.Add(1, 2))
print(div.Div(1, 2))
Beispiel #7
0
 def add_to_gloss(self, query=""):
     add = Ad.Add(self, l1=query, l2="")
     for obj in add.track_FONT:
         obj.modify_font(FONT_obj)
     # TODO: connection
     add.connect('destroy', self._add_to_gloss_reflect)
Beispiel #8
0
def GetAdd():
    global ans, common
    ans, common = add.Add(ans, common)
Beispiel #9
0
    'coalesce': False,
    'max_instances': 30,
    'misfire_grace_time': 60 * 60  #100秒的任务超时容错
}
scheduler = BackgroundScheduler(executors=executors,
                                timezone='MST',
                                job_defaults=job_defaults)

app = Flask(__name__)

gp.init()
adb = auto_adb()
# 公用类
pf = publicFunction.PublicFuncation()
# 添加类
addClass = add.Add()
# 登陆等类
loginClass = login.Login()
# 设备入库类
devicesClass = devices.Devices()
# 检测设备
ddUtils = dDU.DetectionDevicesUtils()
"""
    检测设备是否连接
        返回一个字典数据(key: 设备号   value: d)
"""
phoneMap = adb.test_device_usb()
"""
    定时检测 设备
"""
Beispiel #10
0
 def add_to_exam(self, exam_name):
     self._status = "add"
     self._add_to_exam = add.Add(exam_name)