本文整理汇总了Python中Console.show_in_box方法的典型用法代码示例。如果您正苦于以下问题:Python Console.show_in_box方法的具体用法?Python Console.show_in_box怎么用?Python Console.show_in_box使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Console
的用法示例。
在下文中一共展示了Console.show_in_box方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: start
# 需要导入模块: import Console [as 别名]
# 或者: from Console import show_in_box [as 别名]
def start():
Console.show_in_box("QQ Documents Reader\n"
"Create By emengjzs\n"
"Use For iPhone QQ 2.2 Only\n"
"DO NOT USE FOR COMERCIAL PROPOSE", True)
print "QQ: " + QQ
dbc = DBConnector(QQ)
dbc.connect()
pc = Processor(dbc)
while True:
order = raw_input("::")
if order == "exit":
dbc.disconnect()
exit()
else:
pc.process(order)
示例2: show_message
# 需要导入模块: import Console [as 别名]
# 或者: from Console import show_in_box [as 别名]
def show_message(self):
Console.show_in_box("QQ: " + self.qq, True)
if self.Messages:
start_date = timehelper.get_time(self.Messages[0].time)
Console.show_in_box(timehelper.get_format_ftime(self.Messages[0].time))
for i in range(0, len(self.Messages)):
m = self.Messages[i]
date = timehelper.get_time(m.time)
if date[timehelper.Day] != start_date[timehelper.Day]:
start_date = date
Console.show_in_box(timehelper.get_format_ftime(m.time))
try:
print timehelper.get_format_stime(m.time) + " " + \
self.SIGN[m.flag] + \
m.content
except UnicodeEncodeError:
# print e
continue
else:
Console.print_temp("No any details.")