I found in a related question a minimal example to send a message via xmpp(py); see below. But when I execute the script I get the following error:

   client = xmpp.Client('gmail.com')
AttributeError: 'module' object has no attribute 'Client'

I'm working with Eclipse and PyDev, and xmpppy should definitely be installed. The Interpreter includes /usr/local/lib/python2.7/dist-packages/ and when looking there I find

 /usr/local/lib/python2.7/dist-packages/xmpppy-0.5.0rc1-py2.7.egg
 /usr/local/lib/python2.7/dist-packages/xmpppy-0.5.0rc1-py2.7.egg/xmpp

help('modules') also shows me the xmpp module. When using the autocomplete function (CTRL + SPACE) in Eclipse/PyDev I can actually 'see' the client. Still, I get the AttributeError. I guess I'm missing something really stupid here.

Thanks,

Christian

import xmpp

username = 'username'
passwd = 'password'
to='name@example.com'
msg='hello :)'

client = xmpp.Client('gmail.com')
client.connect(server=('talk.google.com',5223))
client.auth(username, passwd, 'botty')
client.sendInitPresence()
message = xmpp.Message(to, msg)
message.setAttr('type', 'chat')
client.send(message)
link|improve this question

47% accept rate
Thanks for pointing this out! – Christian Aug 11 '11 at 11:11
feedback

1 Answer

up vote 1 down vote accepted

You've named a script xmpp.py. You're accidentally importing it instead of the real xmpp module.

Rename the script and everything should work fine.

link|improve this answer
I knew it was something like that :). Sorry, for my stupidity and thanks a lot for your answer! – Christian Aug 11 '11 at 11:08
It's happened to me, too :). – agf Aug 11 '11 at 11:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.