• [Python]实现XMPP协议即时通讯发送消息功能


    #-*- coding: utf-8 -*-
    __author__ = 'tsbc'
    import xmpp
    import time
    #注意帐号信息,必须加@域名格式
    from_user = 'chenjiangpeng@xtpt.e-u.cn'
    password = 'a1b2c3d4'
    #可以添加多个接收人
    to_user = ['chenjiangpeng@xtpt.e-u.cn']
    msg = "您好!这是条测试信息!"
    def to_msg():
    """
    基于xmpp协议的即时通讯消息发送,需求安装xmpp库
    使用openfire搭建的即时通讯都可以使用
    google talk也可以使用
    """
    client = xmpp.Client('xtpt.e-u.cn')
    client.connect(server = ('xtpt.e-u.cn', 5223))
    client.auth(from_user, password, 'botty')
    for i in to_user:
    client.sendInitPresence()
    message = xmpp.Message(i, msg, typ = 'chat')
    client.send(message)
    time.sleep(0.2)
    if __name__=='__main__':
    to_msg()
  • 相关阅读:
    双向(端)链表、栈、队列
    WPF 3D基础(1)
    静态查找
    栈和队列 迷宫求解
    异步编程Demo
    WPF 3D基础(2)
    串操作
    链栈和链队
    Linux恢复数据
    word文件修复窍门
  • 原文地址:https://www.cnblogs.com/tsbc/p/4175199.html
Copyright © 2020-2023  润新知