0
votes
1answer
14 views
Checking files retrieved by Twisted’s FTPClient.retrieveFile method for completeness.
I'm writing a custom ftp client to act as a gatekeeper for incoming multimedia content from subcontractors hired by one of our partners. I chose twisted because it allows me to par …
0
votes
0answers
13 views
Twisted errors in Scrapy spider
Hello,
When I run the spider from the Scrapy tutorial I get these error messages:
File "C:\Python26\lib\site-packages\twisted\internet\base.py", line 374, in fireEvent DeferredLi …
0
votes
1answer
39 views
Twisted Spread suitable for multiplayer racing sim?
Do you think that Twisted Spread may be suitable (in terms of performance) for a multiplayer racing simulator? The rest of the application is based on Python-Ogre.
Can Perspective …
0
votes
2answers
56 views
Is there any “remote console” for twisted server?
I am developing a twisted server. I need to control the memory usage. It is not a good idea to modify code, insert some memory logging command and restart the server. I think it is …
1
vote
2answers
76 views
Python, Asyncore and forks.
Hey there.
Just for starters, I used Twisted and SocketServer with both ForkMixIn, ThreadMixIn and tried the "thread-pool" recepies.
However, I wanted to make something particula …
2
votes
4answers
226 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 …
1
vote
2answers
78 views
How can I reduce memory usage of a Twisted server?
I wrote an audio broadcasting server with Python/Twisted. It works fine, but the usage of memory grows too fast! I think that's because some user's network might not be good enough …
0
votes
1answer
17 views
Twisted/tkinter program crashes on exit.
I am running an app using twisted and tkinter that sends the result to the server, waits for the server to send back a confirmation, and then exits. So, the function I use to exit …
0
votes
5answers
86 views
Python Twisted and database connections
Hi all,
Our projects at work include synchronous applications (short lived) and asynchronous Twisted applications (long lived). We're re-factoring our database and are going to bu …
0
votes
3answers
121 views
Twisted: source IP address for outbound connections
I'm in the process of implementing a service -- written in Python with the Twisted framework, running on Debian GNU/Linux -- that checks the availability of SIP servers. For this …
0
votes
1answer
32 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.sta …
0
votes
3answers
90 views
How do I fetch an XML document and parse it with Python twisted?
I want a fast way to grab a URL and parse it while streaming. Ideally this should be super fast. My language of choice is Python. I have an intuition that twisted can do this but I …
0
votes
2answers
58 views
How non blocking read/write throught remote FileSystem
Hi,
Is there a way to write and read files on a remote filesystem (such as NFS, SSHFS, or sambafs)
in a way that read or write or even open return immediately with an error code ?
…
2
votes
1answer
72 views
Testing twisted application - Load client
Hi,
I've written a Twisted based server and I'd like to test it using twisted as well.
But I'd like to write a load test starting a bunch of request at the same time.
But I beli …
1
vote
2answers
62 views
Does python twisted framework HttpClient access proxy?
I need to access a webpage using
twisted.web.client.getPage()
or a similar method to download a webpage from a known address (ie:www.google.com), the problem is: I am behind a p …
