当前位置: 首页>>代码示例>>Python>>正文


Python Console.show_in_box方法代码示例

本文整理汇总了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)
开发者ID:emengjzs,项目名称:emengjzs,代码行数:20,代码来源:main.py

示例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.")
开发者ID:emengjzs,项目名称:emengjzs,代码行数:23,代码来源:main.py


注:本文中的Console.show_in_box方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。