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


Python Message.to方法代码示例

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


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

示例1: outnocb

# 需要导入模块: from message import Message [as 别名]
# 或者: from message.Message import to [as 别名]
 def outnocb(self, printto, txt, how=None, event=None, html=False, isrelayed=False, *args, **kwargs):
     """ output txt to bot. """
     if printto and printto in self.state['joinedchannels']: outtype = 'groupchat'
     else: outtype = (event and event.type) or "chat"
     target = printto
     txt = self.normalize(txt)
     #txt = stripcolor(txt)
     repl = Message(event)
     repl.to = target
     repl.type = outtype
     repl.txt = txt
     if html: repl.html = txt
     logging.debug("%s - reply is %s" % (self.cfg.name, repl.dump()))
     if not repl.type: repl.type = 'normal'
     logging.debug("%s - sxmpp - out - %s - %s" % (self.cfg.name, printto, unicode(txt)))
     self.send(repl)
开发者ID:NURDspace,项目名称:jsonbot,代码行数:18,代码来源:bot.py

示例2: receive

# 需要导入模块: from message import Message [as 别名]
# 或者: from message.Message import to [as 别名]
    def receive(self, message):
        url = self.request.path
        to = url.split('/')[-1]
        address = to.split('@')[0]

        unique_id = str(uuid.uuid4())

        logging.info("================================")
        logging.info("From: " + message.sender)
        logging.info("To: " + to)
        logging.info("Address: " + address)
        logging.info("Subject: " + message.subject)
        logging.info("Date: " + message.original.get('Date'))
        logging.info("ID: " + unique_id)

        plaintext_bodies = message.bodies('text/plain')
        plaintext_body = ''
        if plaintext_bodies:
            for content_type, encoded_body in plaintext_bodies:
                logging.info("Content_type: " + content_type)
                plaintext_body = encoded_body.payload
                logging.info("Body: " + plaintext_body)

        html_bodies = message.bodies('text/html')
        html_body = ''
        if html_bodies:
            for content_type, encoded_body in html_bodies:
                html_body = encoded_body.decode()

        stored_message = Message()
        stored_message.uuid = unique_id
        stored_message.sender = message.sender
        stored_message.to = to
        stored_message.address = address
        stored_message.subject = message.subject
        stored_message.plain_text = plaintext_body
        stored_message.html = html_body
        stored_message.put()

        logging.info("================================")
开发者ID:hugs,项目名称:message-checker,代码行数:42,代码来源:handle_incoming_email.py


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