Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
949 views

xmpppy and Facebook Chat Integration

I'm trying to create a very simple script that uses python's xmpppy to send a message over facebook chat. import xmpp FACEBOOK_ID = "username@chat.facebook.com" PASS = "password" SERVER = ...
3
votes
3answers
871 views

Determine if an XMPP user is online or not

I'm using the xmpppy library to write an XMPP client that can chat with users. It has its own XMPP user account and needs to know if a given user is online. However, the documentation is a bit sparse ...
2
votes
2answers
106 views

In Python, how to catch the exception you've just raised?

I've got this piece of code: jabberid = xmpp.protocol.JID(jid = jid) self.client = xmpp.Client(server = jabberid.getDomain(), debug = []) if not ...
2
votes
1answer
277 views

Retrieve gtalk nickname in python xmpp

In python xmpp module, I'm able to retrieve the nickname of any contacts as follows: self.connection.auth(userJid.getNode(), self.password) self.roster = self.connection.getRoster() name = ...
2
votes
3answers
853 views

Jabber bot - how to get the availability of contacts?

I need to set up a jabber bot, using python, that will send messages based on the online/offline availability of several contacts. I've been looking into pyxmpp and xmpppy, but couldn't find any way ...
2
votes
2answers
527 views

How do I disconnect my XMPPPY client object

Connecting to an XMPP server with XMPPPY is simple. from xmpp.client import Client as XMPPClient self.xmppClient = XMPPClient("jabber.foo.com") if not self.xmppClient.connect(server="localhost"): ...
2
votes
2answers
792 views

How to create MUC and send messages to existing MUC using Python and XMPP

I was wondering if anyone here can provide some code samples on the following scenarios. I'm particularly interested in using xmpppy to do this as I'm already using the library for my app, but other ...
2
votes
1answer
381 views

Sending XHTML over Jabber using xmpppy

I'm trying to send XHTML (a hyperlink) over Jabber (to Google Talk) using xmpppy, but can't find a good working example... I tried with this: ...
1
vote
0answers
136 views

Unable to connect to Facebook Chat Via Python, using xmpppy library

I am trying to write a script in python to connect to facebook chat. I am just not able to. Here is the code import xmpp FACEBOOK_ID = "username1@chat.facebook.com" PASS = "password" ...
1
vote
1answer
91 views

Sending message via Python + xmpppy: AttributeError in minimal example

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') ...
1
vote
3answers
699 views

Facebook Chat Bot using Google App Engine

I digged much into internet, but being newbie, couldn't do much. I have summed up the following : Facebook Chat can be used via two Authentication (via Facebook Chat API official documentation) : 1> ...
1
vote
1answer
716 views

Python xmpppy client not sending message to appengine xmpp client

Hey Guys, I seem to be having trouble using the xmpppy client when sending messages to the app engine's xmpp client. I am not getting any errors. The messages just aren't arriving there. Sending ...
1
vote
2answers
336 views

Where is the full JID value when using xmpppy?

Where do I find the full JID value after connecting and authenticating against a Jabber server when using the xmpppy library? I need the full JID for a subsequent Iq call to the server. Specifying ...
0
votes
1answer
119 views

A script im robot with xmpppy of python, how to detect network failure?

I am using xmpppy libary to write a XMPP IM robot. I want to act on disconnects, but I don't know how to detect disconnects. This could happen if your Jabber server crashes or if you have lost your ...
0
votes
0answers
81 views

Accesing group chatts thrue Facbooks jabber interface

Hi I'm working on a small toot that will read everything posted in one big group chat at facebook. I manage to log in and to receive messages from other users. But i did not see anything from any of ...
0
votes
2answers
57 views

Sending special characters in XMPP

So I'm trying to send a string like this <message to="me"><body>\<foobar\></body></message> The brackets seem to stop the transmission of the message, is there any ...
0
votes
1answer
177 views

XMPPPY with Openfire

I'm trying to simply connect XMPPPY to Openfire, send a message, then close. The problem is that I keep getting (Python 2.6) import xmpp pwd = "password" ...
0
votes
1answer
141 views

How can i get a list of all MUC 's in XMPP server using python xmpppy?

I need to get a list of MUC's in a XMPP server (OpenFire). I have read about XEP 0030 and service discovery, but can not find documentation or examples about implementing it with xmpppy.
0
votes
0answers
182 views

PyQt4 - “See the log file for details” error

I have made an application using Python and recently i found that i can use py2exe to make executables for windows. The problem is that a library i am using (xmpppy) produces this error ...
0
votes
1answer
77 views

Getting session information from a xmmppy connection for jsjac

I am trying to make xwchat and xmpppy work together following this blog post , http://codingcromulence.blogspot.com/2009/01/chat-hacking-part-ii.html But unable to get session id and other information ...
0
votes
2answers
411 views

How i can get a response with xmpp client in python

i'm using xmpp in python, and i can send messages but how i can receive?
0
votes
1answer
348 views

python-xmpp and looping through list of recipients to receive and IM message

I can't figure out the problem and want some input as to whether my Python code is incorrect, or if this is an issue or design limitation of Python XMPP library. I'm new to Python by the way. Here's ...
0
votes
1answer
429 views

django + xmppy: send a message to two recipients

I'm trying to use xmpppy for sending jabber-messages from a django-website. This works entirely fine. However, the message only gets sent to the -first- of the recipients in the list. This happens ...