本文整理匯總了Python中db_transfer.DbTransfer方法的典型用法代碼示例。如果您正苦於以下問題:Python db_transfer.DbTransfer方法的具體用法?Python db_transfer.DbTransfer怎麽用?Python db_transfer.DbTransfer使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類db_transfer
的用法示例。
在下文中一共展示了db_transfer.DbTransfer方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: main
# 需要導入模塊: import db_transfer [as 別名]
# 或者: from db_transfer import DbTransfer [as 別名]
def main():
shell.check_python()
if False:
db_transfer.DbTransfer.thread_db()
else:
if get_config().API_INTERFACE == 'mudbjson':
thread = MainThread(db_transfer.MuJsonTransfer)
elif get_config().API_INTERFACE == 'sspanelv2':
thread = MainThread(db_transfer.DbTransfer)
else:
thread = MainThread(db_transfer.Dbv3Transfer)
thread.start()
try:
while thread.is_alive():
thread.join(10.0)
except (KeyboardInterrupt, IOError, OSError) as e:
import traceback
traceback.print_exc()
thread.stop()
示例2: main
# 需要導入模塊: import db_transfer [as 別名]
# 或者: from db_transfer import DbTransfer [as 別名]
def main():
shell.check_python()
if False:
db_transfer.DbTransfer.thread_db()
else:
if get_config().API_INTERFACE == 'mudbjson':
thread = MainThread(db_transfer.MuJsonTransfer)
elif get_config().API_INTERFACE == 'sspanelv2':
thread = MainThread(db_transfer.DbTransfer)
else:
thread = MainThread(db_transfer.Dbv3Transfer)
thread.start()
try:
while thread.is_alive():
time.sleep(10)
except (KeyboardInterrupt, IOError, OSError) as e:
import traceback
traceback.print_exc()
thread.stop()
示例3: main
# 需要導入模塊: import db_transfer [as 別名]
# 或者: from db_transfer import DbTransfer [as 別名]
def main():
logging.basicConfig(level=logging.INFO,
format='%(levelname)-s: %(message)s')
shell.check_python()
if get_config().API_INTERFACE == 'modwebapi':
threadMain = MainThread(web_transfer.WebTransfer)
else:
threadMain = MainThread(db_transfer.DbTransfer)
threadMain.start()
threadSpeedtest = MainThread(speedtest_thread.Speedtest)
threadSpeedtest.start()
threadAutoexec = MainThread(auto_thread.AutoExec)
threadAutoexec.start()
threadAutoblock = MainThread(auto_block.AutoBlock)
threadAutoblock.start()
try:
while threadMain.is_alive():
threadMain.join(10.0)
except (KeyboardInterrupt, IOError, OSError) as e:
import traceback
traceback.print_exc()
threadMain.stop()
if threadSpeedtest.is_alive():
threadSpeedtest.stop()
if threadAutoexec.is_alive():
threadAutoexec.stop()
if threadAutoblock.is_alive():
threadAutoblock.stop()