Top "Twisted" questions

Twisted is an event-driven networking engine, written in Python and implementing many different protocols.

HTTP Download very Big File

I'm working at a web application in Python/Twisted. I want the user to be able to download a very …

python http download twisted
Asynchronous Programming in Python Twisted

I'm having trouble developing a reverse proxy in Twisted. It works, but it seems overly complex and convoluted. So much …

python asynchronous twisted
twisted: catch keyboardinterrupt and shutdown properly

UPDATE: For ease of reading, here is how to add a callback before the reactor gets shutdown: reactor.addSystemEventTrigger('before', …

python twisted shutdown
Twisted + SQLAlchemy and the best way to do it

So I'm writing yet another Twisted based daemon. It'll have an xmlrpc interface as usual so I can easily communicate …

python sql database sqlalchemy twisted
How do you *properly* query Redis from Tornado?

I'm curious what the recommended method of querying Redis (or any DB for that matter) is from Tornado. I've seen …

twisted redis tornado
Multiple reactors (main loops) in one application through threading (or alternative means)

I've got an idea for an app I'd like to work on to learn a bit more about Twisted and …

python multithreading events twisted reactor
How do you create a simple Google Talk Client using the Twisted Words Python library?

I am interested in making a Google Talk client using Python and would like to use the Twisted libraries Words …

python twisted xmpp google-talk
How to package Twisted program with py2exe?

I tried to package a Twisted program with py2exe, but once I run the exe file I built, I …

python twisted py2exe
Threads in twisted... how to use them properly?

I need to write a simple app that runs two threads: - thread 1: runs at timed periods, let's say every 1 …

python multithreading twisted timedelay
Non-blocking file access with Twisted

I'm trying to figure out if there is a defacto pattern for file access using twisted. Lots of examples I've …

python twisted