0

我正在尝试运行此代码来制作 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)
4

1 回答 1

1

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

于 2012-11-30T19:40:54.447 回答