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

learn more… | top users | synonyms

0
votes
0answers
49 views

How to forward a client's websocket message to RabbitMQ, and back again to clients

I want to make this happen: 1- Client sends message to SERVER A 2- SERVER A forwards message to RabbitMQ 3- SERVER A (B,C..) gets the message from RabbitMQ, and forwards back to Clients I am using ...
0
votes
1answer
48 views

When launching a Twisted application via twistd, how to send command line arguments to the application?

When launching a Twisted application like this, twistd -y application.py how can you send application specific command line arguments, e.g. twistd -y application.py app_arg1 app_arg2 --app_flag ...
1
vote
1answer
67 views

Modifying Twisted's FileSender() to support byte range headers

I'm using twisted as part of my video streaming application, HTML5 video streaming relies heavily on byte-range for scrubbing... but FileSender doesn't seem to support byte-range (leading to a few ...
1
vote
0answers
86 views

Massconnect loss of attribute socket

I am running the massconnect.py module in order to simulate opening many parallel web-socket connections, but when I try to open 15000 connections (specified in massconnect json) after some time I get ...
1
vote
1answer
162 views

twisted websockets import error

I'm trying to get WebSocket working in Python with Twisted using this example: http://twistedmatrix.com/trac/export/29073/branches/websocket-4173-2/doc/web/howto/websocket.xhtml. Unfortunately, I'm ...
0
votes
0answers
55 views

Need global deferred in Twisted + Pyside app [closed]

I am genrating a deffered in one function of a pyside app but i am not able to access it in another function ..... What must be done?Help..... point1 = TCP4ClientEndpoint(reactor,ipad,1500+k) dc = ...
1
vote
1answer
108 views

Integrate Scrapy/Twisted event loop in PyQt4 Main loop

I am developing a PyQt4 tool which is using scrapy for crawling a website. I start a new process[multiprocessing] to run the Scrapy spider from ui. Everything works fine ~ ui is blocking and Scrapy is ...
2
votes
1answer
81 views

How to use a deferred to return the authentication secret when using Autobahn Wamp Cra?

I'm subclassing WampCraServerProtocol (from Autobahn Python) and overriding getAuthSecret. I understand that now I can return a deferred from that method, however, when doing a simple test: def ...
1
vote
1answer
152 views

Twisted and pyapns for Push Notifications error

I was able to send push notifications before using Twisted and pyapns. I had to restart my EC2 instance and I started up my web server and I started up twisted. After the restart, I have been unable ...
1
vote
1answer
128 views

How to validate the ssl server cirtificate in twisted ssl client

How do I validate the ssl server cirtificates in my twisted ssl client. I am very much beginner to the SSL , I have gone through the twisted ssl tutorials twisted_ssl_howto but still I am unclear ...
2
votes
1answer
187 views

Python Twisted, SSL Timeout Error

from twisted.web.resource import Resource from twisted.web.server import Site, Session from twisted.internet import ssl from twisted.internet import reactor class Echo(Resource): def ...
1
vote
1answer
44 views

twisted TCP to IRC

I'm an struggling to get my twisted IRC bot to echo data send to a TCP server to an IRC channel. What I have currently done is to have a TCP server append all the messages to a list and then each ...
2
votes
1answer
66 views

listening on multiple twisted endpoints

I have multiple server endpoints listening on different ports, using same protocol and factory How do I know which one has made connection first? endpoint1 = TCP4ServerEndpoint(reactor, 8007) ...
1
vote
1answer
40 views

Is it terrible to manually COMMIT a transaction in a twisted runInteraction?

I have a daemon written in Twisted. It's scope and function have quickly grown, and it needs to be rebuilt from the ground up to properly handle the current workload. The daemon does this , within a ...
2
votes
1answer
129 views

Twisted receiving data within dataReceived()

I am trying to write a server using Twisted framework and would like to receive the data multiple times class Echo(Protocol): def connectionMade(self): print " got connection from : " + ...
2
votes
1answer
173 views

python twisted agent timeout

I'm quite new to twisted and I'm trying to make an asynchronous client that fetches some urls and saves the result into a distinct file for each url. When I run the program with a limited amount of ...
1
vote
1answer
62 views

Twisted Core Foundation reactor and CFNetwork in the py2app bundle

I'm making a Python/PyObjC bundle to use some Twisted features from an Objective-C application. I need to install a Core Foundation reactor in my Python App: from twisted.internet import cfreactor ...
2
votes
1answer
38 views

Twisted Producer deferred write

In the FTP Server example it uses IWriteFile which expects a consumer the code I have now currently buffers and sends 4mb chunks to a server, however the producer write doesn't seem to expect a ...
1
vote
1answer
44 views

How to increase MemCacheProtocol's MAX_KEY_LENGTH?

I am trying to change MAX_KEY_LENGTH I tried it with the following example: from twisted.internet import reactor, protocol from twisted.protocols.memcache import MemCacheProtocol, DEFAULT_PORT import ...
1
vote
1answer
29 views

Twisted - Sending a file hierarchy

Basically, I want to get a hierarchy of files on a server and send it to a connected client that has sent a certain command. I have my code written properly so that it's detecting the command and will ...
0
votes
1answer
50 views

Python XML exchange over network [closed]

Could someone please suggest me a good starting point for implementing simple "chatting" python daemons for exchange of XML formatted data? The idea is to keep broadcasting something like hello ...
1
vote
1answer
106 views

Python, Call a class function from another class

Can you anyone please help me (noob) call the broadcast function from class BroadcastServerFactory in class process, as per attached code I have tried so many methods of call a function from another ...
1
vote
1answer
62 views

How to use twisted to structure this application?

I am in a situation that I need to tear apart an GUI application (written with wx and twisted, running on MS Windows), take out the core logic and deploy it as a cron job on a linux server that has no ...
1
vote
2answers
78 views

How to detect if user has entered any data as a console input

Is there a way to find out if the user has entered any data in the terminal window without having to use the blocking stdin. I am implementing a chat client using twisted python and the client code ...
3
votes
1answer
160 views

Twisted / Starpy FastAgi app only handling one call properly

I am developing a FastAgi application for an Asterisk IVR implementation using Starpy and Twisted. So far, the application runs pretty well when it only has one phone call. After a second call is ...
1
vote
1answer
155 views

Passing parameters to twisted factory to be passed to session

I have written a sshdaemon based on the twisted sshsimpleserver.py which works great. http://twistedmatrix.com/documents/current/conch/examples/ But I now want to pass a command line argument to the ...
2
votes
2answers
105 views

Do Django ORM database queries block the server, or are they asynchronous?

I just want to clarify few things. I believe that Django server works asynchronously (because if every request from the client would block server then it wouldn't work), but I know also that the ...
1
vote
2answers
56 views

edge triggered epoll events in Twisted

I am writing this FileDecriptor class (inherited from t.i.abstract.FileDescriptor) to listen to events from some file in /sys. Unfortuantely it can only be used with Epoll's edge-triggered mode. So I ...
5
votes
1answer
328 views

Scrapy crawl from script always blocks script execution after scraping

I am following this guide http://doc.scrapy.org/en/0.16/topics/practices.html#run-scrapy-from-a-script to run scrapy from my script. Here is part of my script: crawler = ...
1
vote
1answer
81 views

The getChild of resource is not calling in twisted

I am not a kind of expert in python twisted, please help me out for my problem , the getChild is not calling when I am trying the path localhost:8888/dynamicchild. even put isLeaf as False in my ...
1
vote
1answer
73 views

Dynamically broadcast configuration changes in python twisted

I am about to refactor the code of a python project built on top of twisted. So far I have been using a simple settings.py module to store constants and dictionaries like: #settings.py ...
1
vote
2answers
81 views

Twisted: How is Deferred called from EndPoint when using pyglet-twisted

The code below is taken from Twisted's documentation on AMP (link). When a callback is added to d, there's automatically a "protocol" argument added to it and the deferred is automatically run when ...
1
vote
1answer
188 views

Trial unittests using Autobahn WebSocket

I'm trying to write unittests for my application that uses Autobahn. I want to test my controllers which gets received data from protocol, parses it and reacts to it. But when my test comes to a ...
2
votes
1answer
72 views

using PIL in asynchronous code (Twisted Web)

I have a web API which receives an image, and passes it to another asynchronous service. However before passing if further I scale it down using PIL. My code looks something like that (simplifying, ...
2
votes
2answers
204 views

Architecture approach with IPC, Twisted or ZeroMQ?

I'm using twisted to get messages from internet connected sensors in order to store it to a db. I want to check these messages without interfere these process,because I need compare every message with ...
0
votes
1answer
120 views

http echo server and client twisted

I am Trying to Build a basics echo http server and http clint with twisted, here is my example, this is not what i have written , iam just trying to understand the handshaking of these two ...
1
vote
1answer
44 views

Twisted shutdown event not firing

I have a Twisted application that involves auto-updates. To have it automatically restart after updating, I setup a post reactor shutdown event that respawns the application like so: ...
1
vote
2answers
107 views

Using inlineCallbacks

I'm new to Twisted and I'm trying to write a simple resource which displays a list of names from a database, here's a part of my code: #code from my ContactResource class def render_GET(self, ...
-1
votes
1answer
93 views

basic server and client python

I need to stream huge data from one machine to another, I need to do this using http, server and client. I have no idea on what server and client is as of now (network perse). What I am assuming is ...
2
votes
1answer
346 views

python packages not installing in virtualenv using pip

I'm having trouble installing twisted pip --version pip 1.1 from /home/chris/GL/GLBackend/glenv/lib/python2.7/site-packages/pip-1.1-py2.7.egg (python 2.7) Create a virtual environment ...
4
votes
2answers
431 views

Python IPC - Twisted, RabbitMQ,

I want to create 2 applications in Python which should communicate with each other. One of these application should behave like a server and the second should be the GUI of a client. They could be run ...
1
vote
2answers
238 views

Python Scrapy under MacOSX: no module named twisted.internet and gcc 4.0

I am a python newbie, trying to learn how to use Scrapy by myself, but I failed at the first step... I installed Scrapy all right, and followed the instruction on ...
0
votes
2answers
176 views

Getting email message after IMAP IDLE command exists response

Is it safe to use the total number of messages in the exists response as a way to then get the uid? 7.3.1. EXISTS Response Contents: none The EXISTS response reports the number of ...
1
vote
0answers
74 views

Running python and twisted on windows 7 64-bit

I get an error when trying to use twisted installed using pip. I'm just using the example provided on the twisted homepage: from twisted.web import server, resource from twisted.internet import ...
1
vote
2answers
245 views

Python twisted reactor - address already in use

I'm following a tutorial http://www.raywenderlich.com/3932/how-to-create-a-socket-based-iphone-app-and-server for creating a sample using socket programming in Mac OS X enviromment. I'm writing using ...
0
votes
1answer
41 views

Search speed of IMAP as server gets more and more full

In an app I am programming I am currently using IMAP's search function to get the email ID, this is nice as it is a simple and easy task however I was wondering as the server gets fuller will this be ...
1
vote
1answer
97 views

How to test LoopingCall()?

Within my code, I use task.LoopingCall() to run some deferred function every second. I want to make sure that that function returns the right values for a certain number of things. So, I thought I ...
1
vote
1answer
74 views

twistd.py log to both stdout and file

I'm using twistd.py to run my application as follows: twistd -noy -l logfile.log tacfile.tac The unfortunate thing with this is that all output now goes to the log file, which is better for ...
2
votes
1answer
94 views

Multiple responses in Twisted

I'm trying to develop simple TCP, clinet/server game using Twisted and Pygame, but I have difficulties with sending data to clients. Twisted doesn't allow me to send multiple responses in a row. ...
0
votes
2answers
93 views

simulate crontab with twisted deferred and looping calls

I would like to implement a cron-like behaviour with my twisted application. I want to trigger a periodic call (let's say every week) but running at a precise time only, not when i start my ...

1 2 3 4 5 28