Twisted is an event-driven networking engine, written in Python and implementing many different protocols.
0
votes
0answers
6 views
is it possible to log & graph twisted.reactor?
I'm doing a lot of asynchronous programming lately using python and twisted. I think it's a big step forward in code quality and development speed (if you do it right) :D
One big problem with async ...
1
vote
1answer
23 views
Start scrapy multiple spider without blocking the process
I'm trying to execute scrapy spider in separate script and when I execute this script in a loop (for instance run the same spider with different parameters), I get ReactorAlreadyRunning. My snippet:
...
1
vote
2answers
21 views
Does twisted epollreactor use non-blocking dns lookup?
It seems obvious that it would use the twisted names api and not any blocking way to resolve host names.
However digging in the source code, I have been unable to find the place where the name ...
2
votes
0answers
29 views
Using the quickfix python along with twisted
I have used quickfix in c++. I am trying to use the python version.
Documentation seems a little sparse, so I was hoping to get some information regarding the same.
I have an emulator, that assembles ...
1
vote
1answer
20 views
twisted and smtp tls client
from OpenSSL.SSL import SSLv3_METHOD, TLSv1_METHOD
from twisted.mail.smtp import ESMTPSenderFactory
from twisted.python.usage import Options, UsageError
from twisted.internet.ssl import ...
1
vote
1answer
19 views
Twisted / How Deferreds work
How does Twisted know that a function should be executed in an asynchronous way?
Asynchronous functions should return a Deferred(immeadiately) with call-/errbacks attached that will be called when ...
0
votes
1answer
11 views
how do i stop reqest.finish() (twisted .web server)from closing the http connection
I have written a chat server which writes a message line on the browser of one client to other client. The problem is that if i use request.finish() the output is shown but the connection is closed ...
1
vote
1answer
21 views
Unit of work is driven by external event. How to ensure one unit starts only after the previous one ends?
I am not sure how to refactor my app. I have read something about ChainedDefered, but I am lost at how to apply the technique to my situation. Any pointer/suggestions are welcome.
I am using a third ...
-1
votes
0answers
37 views
network monitoring tool using python and twisted [closed]
i want to create a network monitoring tool using python (twisted framework) . I have done quite a bit of socket programming , so i am familiar with networks and all . But this the first time i'm using ...
2
votes
1answer
30 views
Can Perspective Broker be used over stdio instead of TCP?
I'm using Twisted's Perspective Broker for RMI between a process and subprocess.
Rather than listen on a TCP socket (such as by passing reactor.listenTCP() an instance of PBServerFactory) and have ...
1
vote
1answer
39 views
equivalent of nevow.tags.raw for twisted.web.template
I'm trying to port pydoctor to twisted.web.template and have hit a pretty basic problem: pydoctor uses epydoc to render docstrings into HTML but I can't see a way to include this HTML in the generated ...
1
vote
1answer
27 views
Imperative client for autobahn WAMP server?
I'm using autobahn to run a websocket server to complement my Django app. Sometimes, I need to send messages from Django to the websocket server, which works fine using the websocket-client module. I ...
0
votes
0answers
34 views
Twisted web server stops responding to http requests
import cx_Oracle
import json
from twisted.internet import reactor, task
from twisted.web.resource import Resource
from twisted.web.server import Site, NOT_DONE_YET
from twisted.enterprise import ...
1
vote
2answers
32 views
how to recieve line from a html page to twistd web server
I just want to ask that if it is possible to to receive chat from an HTML page to twisted web server and PUSH it on to another HTML page asynchronously.
I just want someone to point out the way to do ...
1
vote
1answer
38 views
twisted command line protocol
I have a HistoricRecvLine that I use as an interface to a twisted.internet.protocol.ProcessProtocol class. I can get information from the HistoricRecvLine to the protocol without problems but I cannot ...
1
vote
1answer
43 views
processing HTTPS requests and ZeroMQ messages in parallel inside Twisted
I am trying to do two things in parallel:
intercept HTTPS POST request and make Twisted hold the connection open indefinitely (return NOT_DONE_YET)
listen to ZeroMQ queue (and close one of the ...
0
votes
1answer
46 views
Secure Websockets with Client Certificate Authentication using Twisted
I would like to know if there is an option to implement secure websockets (wss://) and client certificate based authentication with twisted ?
I followed the instructions on ...
2
votes
1answer
24 views
twisted web server not ruuning a .rpy file
i am a toddler on Twisted .I am trying to run a Twisted web server using the command
twistd web --resource-script=~/Desktop/step/ecdemo.rpy
assume that my file(ecdemo.rpy) is located on ...
2
votes
1answer
69 views
Twisted / perform asynchronous http requests
I have a twisted reactor listening for incoming data. I have a second reactor performing http requests in certain time intervals sending the results to the first reactor. Both run fine.
Now I would ...
2
votes
2answers
42 views
twisted image transfer from client to server gives bad format error
I was trying to send an image file using tcp from server to client. I tried opening the file, reading it and then transporting it using self.transport.write. On the client side, when I receive data, I ...
0
votes
1answer
40 views
Running Python script through PHP
It is a follow-up a question to my earlier post.
I have developed a chat program using twisted in Python. I would like to integrate into a PHP script and be able to run through the browser.
The ...
2
votes
1answer
39 views
how send data from server to client using python twisted?
im new to python and im looking a way to send data from server to client. i have a server monitoring program running on server and wanted to send notification via python server to python client
this ...
2
votes
2answers
66 views
Executing Python Script in PHP
I have written a simple chat program using twisted library in Python. Basically I have a server program(server.py) and a chat program ( client.py)
client.py is a simple python script which would ...
-1
votes
0answers
35 views
Send image files from server to client twisted [closed]
Is there a way I can send an image from a TCP server to clients using Twisted ? I tired going into the documentation, but it's a bit complex for me.
Thanks
1
vote
1answer
51 views
'Port' object has no attribute 'socket'
I'm using twisted python to make a simple SSH server on a custom port. I create a Port object with port = reactor.listenTCP(_port, sshfactory), where _port is a variable that holds the integer of the ...
1
vote
1answer
63 views
Twisted multiple ports
I am working with a multiple port application, my issue is the about the decoder that I use, let me explain with the code
This is my tac file, where I read which port I will use from a config file, ...
2
votes
1answer
89 views
Can the twisted web client make requests through a SOCKS proxy?
I'm writing a python program that uses twisted.web.client.Agent to make https requests. I'd like to optionally make these requests through Tor, which I should be able to do if I set my socks5 proxy to ...
-1
votes
0answers
45 views
How to use QT with twisted for python? [closed]
I want to create a simple GUI for my twisted server. It should have 2 buttons start and stop which on clicking will start and stop the reactor.
I also want a label which will display all the print ...
0
votes
1answer
25 views
twisted python ISFTPServer openDirectory
I've been working through twisted to make an sftp server and am having trouble returning any information from my ISFTPServer.openDirectory function.
EX
class MySFTPAdapter:
...
4
votes
1answer
132 views
python frameworks for a real time website
I'm trying to learn web programming in python, and have the following project in mind: mine the yahoo finance api for instrument data, and display it in real time, as well as plot charts based on ...
1
vote
1answer
30 views
twisted task.LoopingCall messes callbacks when they are defined in loop
When there are some LoopingCall task defined in loop, twisted messes callbacks and always executes last one defined
sample code:
from twisted.internet import reactor, task
from pprint import ...
2
votes
2answers
35 views
how does object scope of imported stuff work?
--edited after fortan's answer----
from here https://github.com/jdavisp3/twisted-intro/blob/master/twisted-client-3/get-poetry.py
reactor is imported in the
def get_poetry(host, port, callback):
...
1
vote
1answer
70 views
Twisted SSH multiple simultaneous commands
I've used twisted to make an SSH server similar to the one shown here. My question is, is it possible to use multithreading to run multiple commands simultaneously? I tried making a do_ function that ...
0
votes
1answer
66 views
how does appending objects to lists in python work?
a = [1,2,3]
b =[]
b.append(a)
print a
print b[0]
a = [2,3,4,5]
print a
print b[0]
here b[0] and a are not the same when the script ends
In this example from twisted, we can access protocols by ...
0
votes
1answer
18 views
why is a tcp message not getting written to the transport in twisted?
server.py
# This is the Twisted Fast Poetry Server, version 1.0
import optparse, os
from twisted.internet.protocol import ServerFactory, Protocol
def parse_args():
usage = ...
1
vote
1answer
41 views
How to view all the current objects and their immediate methods
I am looking at this tutorial in twisted python.
https://github.com/jdavisp3/twisted-intro/blob/master/twisted-client-3/get-poetry.py
def get_poetry(host, port, callback):
"""
Download a poem ...
3
votes
2answers
50 views
Serve dynamically generated file instead of htm
I'm completely new to twisted and need a little push forward. I'm looking for a way to serve a dynamically generated file other than htm page - for example csv file.
EDIT:
It happened that while ...
-1
votes
2answers
74 views
What needs to be done to import and use a Linux kernel module in python?
What do I need to do import a Linux kernel module into python so that I can use its features in an application I want to build.
My target is to use the Better Approach To Mobile Ad-Hoc Networking ...
0
votes
3answers
144 views
How can I setup an Autobahn Pub/Sub Server and a Autobahn Webserver listening on the same port
I recently discovered autobahn python and js as a comfortable method to establish a pub/sub server and corresponding client even with rpc-calls.
After looking through the tutorials, I set up a test ...
2
votes
1answer
28 views
How to listen on another port if busy in twisted
from twisted.internet import protocol, reactor, task
class peer(protocol.DatagramProtocol):
def sendJoin(self):
self.transport.write('Join',("127.0.0.1", 8001))
def ...
0
votes
2answers
34 views
Twisted execute python file
Is there any way to get a twisted webserver to execute a python file like cgi on a conventional webserver? So, when i navigated to a directory, i could execute python within a seperate file?
I have ...
0
votes
1answer
29 views
Twisted : How to know which client has closed the connection
This is a follow-up to my previous question.
I am building a simple client server program using ´twisted´ package in Python.
I would like to keep a record of which client has joined and closed the ...
1
vote
0answers
46 views
Which framework to write an event-driven ETL application? [closed]
I wrote a prototype for an ETL application. It consists of an admin interface which defines tasks and groups them in batches, which are pushed to a stack stored in a MySQL database. A CLI application, ...
0
votes
1answer
58 views
Python Twisted for long data
Python coders
I am working with twisted for build a server, which receive 3000 bytes of data on each connection, my issue is that packages are been truncated and stored on database as on packages ...
0
votes
2answers
141 views
SNMP Agent in Python
I required a SNMP agent in python, which listen on a particular port and and responds to basic SNMP command (like GTE, SET, GETNEXT ...etc)
If any one have code please reply on this post.
1
vote
1answer
33 views
Twisted : How to print message at the server?
I am a beginner using Twisted framework.
I am developing a simple client server program using twisted library in Python.
I am using the code at the server side.
factory = ...
2
votes
1answer
62 views
Execute asynchronous code in Twisted *before* start of service
I start my twisted application with:
application = twisted.application.service.Application('myserv')
my_service = MyService()
my_service.setServiceParent(application)
my_factory = ...
0
votes
1answer
28 views
twisted plugins / where to place them
I just started to work with twisted. I have some problems to understand the twisted plugin system. What I would like to achieve is a folder/package in my app where I can place the plugins so that ...
1
vote
1answer
42 views
No module named v4.proto.omni
I have installed pysnmp-4.x.I am getting following error during running a SNMP program.
I am using pysnmpSE 3.5.2 now but getting same error. I found that pysnmpSE doesn't hav v4 module. I was ...
1
vote
1answer
53 views
Database Proxy using Twisted
I am totally fresh and noob as you can be on Twisted. I chose a database proxy as my final project. The idea is, have a mysql as a database. A twisted proxy runs in between client and the database.The ...
