Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
717 views

Problem running twisted.words example using msn protocol

I am currently trying to use the Twisted library specifically twisted words to try and interat with MSN. However when i run the sample script provided by twisted , i get an error. Specifically the ...
4
votes
1answer
90 views

Using twisted words in a WSGI container

I am running django on twisted in a wsgi container. Obviously I am avoiding all the async stuff with deferreds inside my django code because according to the documentation, twisted async abilities are ...
3
votes
2answers
539 views

How to init twisted reactor in the right way?

i have a class MyJabber which init a basic jabber account that print the incoming messages to stdout + put them into a queue. The code that add the client to the reactor is this: def ...
3
votes
2answers
380 views

In Twisted Python - Make sure a protocol instance would be completely deallocated

I have a pretty intensive chat socket server written in Twisted Python, I start it using internet.TCPServer with a factory and that factory references to a protocol object that handles all ...
1
vote
1answer
293 views

How to gracefully exit application started with twistd?

I have a jabber client that is reading from its stdin and posting PubSub messages. If I get EOF on stdin, I want to terminate the client. I first tried sys.exit(), but this causes an exception and ...
1
vote
1answer
393 views

Twisted connectionLost Event

Hey there, I use the twisted.words.protocols.jabber.client.XMPPClientFactory . Do you know how I can callback a function when the connection gets lost (for example WiFi-connection is down)? thank you ...
0
votes
1answer
287 views

How to create twisted.words.xish.domish.Element entirely from raw XML

I was surprised that XML basic object (twisted.words.xish.domish.Element) could not be created entirely from XML string. The most alike way is: msg = "<iq to='juick@juick.com' id='id123' ...