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


Python Client.sendMsg方法代码示例

本文整理汇总了Python中Client.sendMsg方法的典型用法代码示例。如果您正苦于以下问题:Python Client.sendMsg方法的具体用法?Python Client.sendMsg怎么用?Python Client.sendMsg使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Client的用法示例。


在下文中一共展示了Client.sendMsg方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: run

# 需要导入模块: import Client [as 别名]
# 或者: from Client import sendMsg [as 别名]
 def run(self):
     """Main"""
     global SON
     global TLP
     while not self._stopevent.isSet():
         data = input(">")
         if data == "quit":
             TLP.stop()
             self.stop()
         elif data == "Tais toi!":
             SON = False
         elif data == "Parle!":
             SON = True
         elif re.search("je.*envoie.*fichier", data):
             regex = re.search(r"[A-Za-z]*.\.[A-Za-z]*", data)
             fileName = regex.group(0)
             data2, infos = FileManager.sendFichier(0, fileName)
             if infos[1] == 0:
                 Client.sendFile(data2, fileName)
             else:
                 choix = input(data2)
                 data2, infos = FileManager.sendFichier(1, choix, infos)
         elif len(data):
             Client.sendMsg("T", str(data))
         else:
             continue
开发者ID:LorkScorguar,项目名称:Luchiana,代码行数:28,代码来源:LuchianaClient.py

示例2: connection

# 需要导入模块: import Client [as 别名]
# 或者: from Client import sendMsg [as 别名]
def connection():
    Client.connect()
    identify=0
    essai=0
    while identify==0 and essai < 3:
        pseudo=raw_input("Entrer votre pseudonyme: ")
        password=getpass.getpass("Entrer le mot de passe: ")
        Client.sendMsg("L",pseudo+";,;"+password)
        rep=Client.receiveMsg()
        if(rep[1][9:]=="1"):
            identify=1
            break
        else:
            if(essai<2):
                print("Vous avez fais une erreur\nVeuillez recommencer")
            if(essai==2):
                print("Trop d'erreurs, au revoir")
                quit()
            essai=essai+1
    return identify
开发者ID:LorkScorguar,项目名称:Luchiana,代码行数:22,代码来源:LuchianaClient.py


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