Twisted is an event-driven networking engine, written in Python and implementing many different protocols.
2
votes
2answers
121 views
How can I use a pseudoterminal in python to emulate a serial port
I am creating a python application using twisted which reads lines from a serial port.
In order to (unit)test that app without having to connect an actual device to the serial port (also on pc's ...
1
vote
1answer
99 views
Calling publish from outside a custom Autobahn WampClientProtocol
How do I call an autobahn/wamp/twisted protocol publish method from outside of the protocol class?
I have a custom python autobahn client based on ...
1
vote
0answers
106 views
Python twisted client server interface
I'm designing a domotic network, which would basically consist in a main node that will act as a front-end where a web server will be hosted and a bunch of client nodes such as video entry-phone, ...
3
votes
2answers
76 views
Controlling Twisted based server from a web interface?
I created a server with a custom protocol using Twisted and I have clients that connect to the server on a specific port (say port 1234). I am looking to create a control interface for the server ...
1
vote
0answers
100 views
How to use Python's twisted.internet for XBMC add-on development?
I just tried to use the Python module twisted.internet for an XBMC add-on that I am currently writing. When I tried to execute my add-on, I got an exception that I could not understand. I was quite ...
2
votes
1answer
61 views
twisted Using Processes
I am learning to use twisted (latest 12.3.0 release), as a way to do some simple server side processing for a mobile app.
My first assigment is essentially to run a 'tail' command on a logs file and ...
1
vote
2answers
275 views
AttributeError: 'str' object has no attribute 'insert'
I'm quite a new programmer and I would be appreciated if you could help me. I have looked on the google but there are a few examples with "Twisted+Tkinter". When i click "Send" button on the window i ...
1
vote
0answers
125 views
python construct for protocol parsing
I am trying to mix up the power of twisted Protocol with the ductility of construct, the declarative binary data parser.
So far, my MessageReceiver protocol accumulates the data coming from the tcp ...
1
vote
0answers
59 views
Get a headervalue of a websocket request using twisted and sockjs
I have a sockjs server which is behind haproxy. Now i need to now a clients ip address but using self.transport.getPeer() i get the ip of my haproxy. Haproxy adds a X-Forward-For header to the request ...
0
votes
0answers
54 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
63 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
74 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
89 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
223 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
66 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
128 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
95 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
182 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
155 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
223 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
45 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
73 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
44 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
184 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
211 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
78 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
51 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
50 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
33 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
54 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
144 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
66 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
83 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
163 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
183 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
114 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
58 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
464 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
100 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
83 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
91 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
204 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
79 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
247 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
138 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
46 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
133 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
96 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
547 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
524 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 ...




