Top "Twisted" questions

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

Extract Public Key using pyOpenSSL from certificate or other connection information

I'm currently trying to write a python server script which should authenticate the current client based on its public key. …

python twisted public-key pyopenssl
Sending SIGINT (Ctrl-C) to program running in Eclipse Console

I have setup a run configuration in Eclipse and need to send SIGINT (Ctrl+C) to the program. There is …

python eclipse twisted sigint
twisted http client

I am after an example describing the usage of Twisted's HTTP Client. After reading the excellent blog post on the …

python http client twisted
Making a python program wait until Twisted deferred returns a value

I have a program that fetches info from other pages and parses them using BeautifulSoup and Twisted's getPage. Later on …

python twisted deferred
Python - How can I make this code asynchronous?

Here's some code that illustrates my problem: def blocking1(): while True: yield 'first blocking function example' def blocking2(): while True: …

python asynchronous twisted nonblocking event-driven
Twisted(asynch server) vs Django(or any other framework)

I need help understanding what the advantage of using an asynch framework is. Suppose I want to develop a simple …

python django asynchronous twisted real-time
Which Python async library would be best suited for my code? Asyncore? Twisted?

I have a program I'm working on that will be reading from two 'network sources' simultaneously. I wanted to try …

python asynchronous twisted asyncore
Good Python networking libraries for building a TCP server?

I was just wondering what network libraries there are out there for Python for building a TCP/IP server. I …

python networking twisted
The latest recommendation for Comet in Python?

I'm going to be implementing Comet in Python (even though I hear good things about erlycomet I'm not thrilled about …

python comet twisted tornado
twisted deferred/callbacks and asynchronous execution

I'm trying to figure out how can i make my code more asynchronous using twisted. A function returns a deferred …

python asynchronous callback twisted deferred