Python gtalk 客户端代码不起作用



我正在尝试运行此代码来制作gtalk客户端,但它没有运行。 我是新手,我想我犯了一些愚蠢的错误,请帮助我。 另外请告诉我如何删除这些警告

#!/usr/bin/env python 
import xmpp 
import hashlib
user="username@gmail.com"
password="password"
server="gmail.com"
jid = xmpp.JID(user) 
connection = xmpp.Client(server,debug=[]) 
connection.connect() 
result = connection.auth(jid.getNode(), password,"LFY-client") 
connection.sendInitPresence() 
while connection.Process(1): 
    pass

The code is giving following error :

/usr/lib/python2.6/dist-packages/xmpp/auth.py:24: DeprecationWarning: the sha module is deprecated; use the hashlib module instead
  import sha,base64,random,dispatcher,re
/usr/lib/python2.6/dist-packages/xmpp/auth.py:26: DeprecationWarning: the md5 module is deprecated; use hashlib instead
  import md5
/usr/lib/python2.6/dist-packages/xmpp/transports.py:308: DeprecationWarning: socket.ssl() is deprecated.  Use ssl.wrap_socket() instead.
  tcpsock._sslObj    = socket.ssl(tcpsock._sock, None, None)

这些是警告而不是错误,它们不是由您的代码引起的,xmpp模块正在使用一些已弃用的模块,我建议您升级它。

最新更新