Tagged Questions
Twisted is an event-driven networking engine, written in Python and implementing many different protocols.
66
votes
13answers
9k views
A clean, lightweight alternative to Python's twisted?
A (long) while ago I wrote a web-spider that I multithreaded to enable concurrent requests to occur at the same time. That was in my Python youth, in the days before I knew about the GIL and the ...
47
votes
3answers
2k views
Why is there a handshake failure when trying to run TLS over TLS with this code?
I tried to implement a protocol that can run TLS over TLS using twisted.protocols.tls, an interface to OpenSSL using a memory BIO.
I implemented this as a protocol wrapper that mostly looks like a ...
30
votes
1answer
6k views
Caveats of select/poll vs. epoll reactors in Twisted
Everything I've read and experienced ( Tornado based apps ) leads me to believe that ePoll is a natural replacement for Select and Poll based networking, especially with Twisted. Which makes me ...
19
votes
1answer
3k views
What are the use cases of Node.js vs Twisted?
Assuming a team of developers are equally comfortable with writing Javascript on the server side as they are with Python & Twisted, when is Node.js going to be more appropriate than Twisted (and ...
19
votes
2answers
4k views
Asychronous 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 of it feels like voodoo...
Are there any simple, solid examples of asynchronous ...
17
votes
5answers
5k views
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 supporting an Erlang-based web server in addition to everything else in our back ...
16
votes
2answers
723 views
Need help understanding Comet in Python (with Django)
After spending two entire days on this I'm still finding it impossible to understand all the choices and configurations for Comet in Python. I've read all the answers here as well as every blog post I ...
16
votes
3answers
512 views
Redirecting before POST upload has been completed
I have form with file upload. The files to be uploaded actually are pictures and videos, so they can be quite big. I have logic which based on headers and first 1KB can determine if the rest will be ...
14
votes
2answers
4k views
Python twisted: where to start
I am trying to start learning twisted for socket servers creation. I want to add some useful features (like auth, and maybe some other). Maybe someone can point me to a good tutorial which will help ...
13
votes
3answers
570 views
How do I write a setup.py for a twistd/twisted plugin that works with setuptools, distribute, etc?
The Twisted Plugin System is the preferred way to write extensible twisted applications.
However, due to the way the plugin system is structured (plugins go into a twisted/plugins directory which ...
13
votes
2answers
1k views
Tornado is “a relatively simple, non-blocking web server framework written in Python”--can somewhat explain what that means?
This is probably a stupid question, but what exactly is a "non-blocking web server"? All web servers are technically non-blocking, arent they? otherwise how could they handle simultaneous connections? ...
12
votes
1answer
411 views
Twisted or Celery? Which is right for my application with lots of SOAP calls?
I'm writing a Python application that needs both concurrency and asynchronicity. I've had a few recommendations each for Twisted and Celery, but I'm having trouble determining which is the better ...
12
votes
2answers
644 views
What's so cool about Twisted?
I'm increasingly hearing that Python's Twisted framework rocks and other frameworks pale in comparison.
Can anybody shed some light on this and possibly compare Twisted with other network programming ...
12
votes
4answers
3k views
Django vs Flask + Werkzeug for complex, scalable and large applications
I am about to get my hands dirty on building a application for one of the trading company entirely on python. I have experimented with django and flask. Here are few of the things i have come up
...
12
votes
2answers
2k views
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 with it and have other processes interchange data with it as needed.
This daemon ...
12
votes
3answers
2k views
What is the point/purpose of Ruby EventMachine, Python Twisted, or JavaScript Node.js?
I don't understand what problem these frameworks solve. Are they replacements for a HTTP server like Apache HTTPD, Tomcat, Mongrel, etc? Or are they more? Why might I use them... some real world ...
12
votes
6answers
2k views
Where can I find good python Twisted framework documentation, blog entries, articles, etc?
I'm playing around with Twisted and documentation found on their homepage doesn't answer all my questions.
The topic I am most interested at the moment is Twisted Application Framework. Also some ...
11
votes
2answers
359 views
How do I make an ubuntu/debian package for a twistd/twisted plugin?
As a follow-up to How do I write a setup.py for a twistd/twisted plugin that works with setuptools, distribute, etc?, how does one make a debian package for a twisted plugin?
Assuming the setup.py is ...
11
votes
1answer
433 views
Twisted: Making code non-blocking
I'm a bit puzzled about how to write asynchronous code in python/twisted. Suppose (for arguments sake) I am exposing a function to the world that will take a number and return True/False if it is ...
11
votes
4answers
6k views
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 module. I have looked at the examples, but they don't work with the current ...
10
votes
3answers
771 views
How to find the source of increasing memory usage of a twisted server?
I have an audio broadcasting server written in Python and based on Twisted. It works fine, but its memory usage is increasing when there are more users on server, but the memory usage never goes down ...
10
votes
5answers
2k views
fast-ish python/jython IPC?
All I want to do is make some RPC calls over sockets. I have a server that does backendish stuff running jython 2.5. I need to make some calls from a frontend server running Django on CPython. I've ...
10
votes
3answers
5k views
How can I find memory leaks in my Python program?
I've got a fairly complex (about 20,000) line Python program which after some development has started consuming increasing amounts of memory when it runs. What are the best tools and techniques for ...
9
votes
5answers
399 views
Is there any thorough, broad documentation of Twisted that is better than the official site?
I've been looking at twisted for a while now. It looks interesting - it seems like a good way to leverage a lot of power when writing servers. Unfortunately, in spite of writing a few web servers ...
9
votes
5answers
2k views
How do you you run a Twisted application via Python (instead of via Twisted)?
I am working my way through learning Twisted, and have stumbled across something I'm not sure I'm terribly fond of - the "Twisted Command Prompt". I am fiddling around with Twisted on my Windows ...
9
votes
4answers
1k views
Python - Twisted and Unit Tests
I'm writing unit tests for a portion of an application that runs as an HTTP server. The approach I have been trying to take is to import the module that contains the HTTP server, start it. Then, the ...
8
votes
1answer
190 views
Is it possible to use Twisted with IPv6?
I'm trying to add IPv6 support to an application written with Twisted, which unfortunately does not support IPv6. There's a three-year-old ticket for this in Twisted's trac, but it seems to be stuck ...
8
votes
5answers
2k views
8
votes
2answers
2k views
Running a function periodically in twisted protocol
I am looking for a way to periodically send some data over all clients connected to a TCP port. I am looking at twisted python and I am aware of reactor.callLater. But how do I use it to send some ...
8
votes
1answer
4k views
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 got a "No module named resource" error.
And I found the py2exe said:
The following modules appear to be ...
7
votes
3answers
469 views
Python twisted: iterators and yields/inlineCallbacks
Folks,
Am thoroughly confused, so it's possible I am not even asking things correctly, but here goes:
I have a twisted application using inlineCallbacks. Now I need to define an iterator which will ...
7
votes
3answers
2k views
Python Twisted JSON RPC
Can anyone recommend some simple code to set up a simple JSON RPC client and server using twisted?
I found txJSON-RPC, but I was wondering if someone had some experience using some of these anc could ...
7
votes
5answers
2k views
Do i need node.js in Python like I would with PHP?
I have been using PHP for some time now. And I have been thinking about learning node.js to go along with it to use the non blocking idea for creating an online game or app. There is quite a bit of ...
7
votes
1answer
387 views
Memory leak in Python Twisted: where is it?
I have a Twisted server under load. When the server is under load, memory usage increases, and it is never reclaimed (even when there are no more clients). Next time it goes into high load, memory ...
7
votes
3answers
1k views
Database for Python Twisted
There's an API for Twisted apps to talk to a database in a scalable way: twisted.enterprise.dbapi
The confusing thing is, which database to pick?
The database will have a Twisted app that is mostly ...
7
votes
2answers
3k views
twisted http client
I am after an example describing the usage of Twisted's HTTP Client.
After reading the excellent blog post on the internals of Twisted, I understand how the "Factory" and "Protocol" components play ...
7
votes
3answers
2k views
Does anyone know of a asynchronous mysql lib for python?
I've been looking into non-blocking servers for python (tornado, twisted etc) but a lot of the benefits seems to be lost if there's no non-blocking connection to the database. Does anyone know if ...
7
votes
4answers
1k views
Is TCP Guaranteed to arrive in order?
If I send two TCP messages, do I need to handle the case where the latter arrives before the former? Or is it guaranteed to arrive in the order I send it? I assume that this is not a Twisted-specific ...
7
votes
5answers
2k views
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 big file (> 100 Mb). I don't want to load all the file in memory (of the server), of course.
server ...
7
votes
4answers
2k views
Twisted and p2p applications
Can you tell me: could I use twisted for p2p-applications creating? And what protocols should I choose for this?
7
votes
8answers
3k views
A replacement for python's httplib?
I have a python client which pushes a great deal of data through the standard library's httlib. Users are complainging that the application is slow. I suspect that this may be partly due to the HTTP ...
6
votes
4answers
387 views
Python web service with Twisted
This is connected with my previous question Python web service.
I'll use Tornado to exchange information between server and clients. There will be one server and N clients. Clients will send ...
6
votes
1answer
269 views
Wokkel Resources
This isn't a technical question, however after hours of scouring google I have not found an viable examples or resources to learn the Wokkel framework. I've extrapolated what I can from the source ...
6
votes
2answers
241 views
Porting python-twisted based code to scala: framework advice needed
I am trying to port a significant amount of code written in python with twisted to scala, and I'm looking for opinions on what framework combination to choose.
The thing is essentially an RPC (custom ...
6
votes
1answer
846 views
Twisted, gevent eventlet - When would I use them
Under what circumstances would something like eventlet/gevent be better than twisted? Twisted seems like the most used, but eventlet/gevent must have some advantages...
I'm not looking for an answer ...
6
votes
2answers
628 views
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 WebSockets. I was thinking of integrating a previously written IRC Bot into a web application. As far as I can ...
6
votes
3answers
462 views
twisted + gtk: should I run GUI things in threads, or in the reactor thread?
From what I understand about twisted, nothing running in the reactor thread should block. All blocking activities should be delegated to other threads, to fire callbacks back into the reactor thread ...
6
votes
1answer
502 views
How can Twisted Deferred errors without errbacks be tested with trial?
I have some Twisted code which creates multiple chains of Deferreds. Some of these may fail without having an errback which puts them back on the callback chain. I haven't been able to write a unit ...
6
votes
1answer
993 views
Python: How can I use Twisted as the transport for SUDS?
I have a project that is based on Twisted used to
communicate with network devices and I am adding support for a new
vendor (Citrix NetScaler) whose API is SOAP. Unfortunately the
support for SOAP in ...
6
votes
3answers
1k views
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 looked at (twisted.python.log, twisted.persisted.dirdbm, twisted.web.static) actually don't ...