Tagged Questions
0
votes
0answers
29 views
Creating a client with Twisted [closed]
I am trying to create a client using Twisted that would connect to a server at a specific IP address and port number, and would be capable of sending variables to the server. Any help is greatly ...
0
votes
1answer
113 views
How to get file descriptor for the port on which tcp client has been bound in twisted
How can I get the file descriptor for the port on which the client has been bound.
I want this to share the port in between different processes.
I am able to get the file descriptor for the tcp ...
0
votes
1answer
61 views
How to make an unblocking connection from a server in Twisted?
I am implementing an API with the following basic structure:
Run serverA
Client connects to serverA and sends data
ServerA processes the data and sends it on to serverB
ServerB replies to serverA
...
1
vote
2answers
196 views
Login to web page using twisted web
I want to write a simple web client using twisted, that logs into a web site with a username and password, and grabs some data from a given page. What is the best way to do this?
Edit: To add some ...
0
votes
1answer
403 views
python twisted simple client - server communication
Trying to get a simple python twisted client - server application working. The intention will be to use this to control a few IRC bots; like a master console to issue commands to all (5ish) bots.
...
2
votes
1answer
117 views
Options to write a Python Server that will check database consitently for updates and changes
I am a self taught Python programmer and I have an idea for a project that I'd like to use to better my understanding of Socket programming and networking in general. I was hoping that someone would ...
1
vote
1answer
821 views
Twisted Python - IRC Client
first question here.
So for a club at school we are working on making a IRC client in Python and Twisted.
So I take the example bot that twisted gives you. I've managed to get it connected to a irc ...
1
vote
2answers
128 views
Sending pygames-event data to a twisted-server?
I'm running a pygames program with twisted and I'm having problems when it comes to sending data from within a pygame event.
First here is the server:
from twisted.internet.protocol import Factory
...
1
vote
1answer
143 views
Twisted data being read/written by client?
I'm learning twisted so I can integrate it with a blackjack pygame I have. When figuring out how to pass the data from one client to server and then to other clients I was trying to see how I could ...
0
votes
0answers
170 views
twisted persistent connection
I want to have a TCP persistent connection using twisted network lib (python) but I just cant find an example. I DO NOT use HTTP for communication rather my own protocol (have good reasons).
Does ...
0
votes
1answer
172 views
Twisted client protocol - attaching an interface frontend
I am following the tutorial on writing a client/server pair in Twisted located here:
http://twistedmatrix.com/documents/current/core/howto/clients.html
I have everything working for the ...
0
votes
1answer
127 views
Twisted - kick specific client
I want to disconnect specific user in twisted based application. Can somebody explain how I can do it ?
3
votes
2answers
491 views
Python twisted: Functions are not called properly?
I've got a problem with setting up a client which connects to a "distributor" server to send certain data.
The server's purpose is to get data from the client and then send that data to it's all ...
3
votes
1answer
284 views
Receiving commandline input while listening for connections in Python
I am trying to write a program that has clients connect to it while the server is still able to send commands to all of the clients. I am using the "Twisted" solution. How can I go about this? Here is ...
2
votes
1answer
506 views
Twisted as a client/server problems
I'm using twisted to create a "client/server", a programme which act as a client to get some data, and as a server to re-send this data or just to send other data to clients.
I'm using twistd and my ...
3
votes
1answer
2k views
Create client/server with Twisted
I'm trying to create a client/server using Twisted.
I'd like to create a daemon, wich will be connected to another server as a client and act as a server for other clients.
I've write something like ...
0
votes
1answer
310 views
Interacting servers using Twisted?
I have been dabling in some Twisted and I've come across a problem. I'm implementing a couple servers that can be connected to using telnet localhost x
My code handles it like this:
...
2
votes
1answer
531 views
python twisted - Timeouting on a sent message that did not get a response
I am creating a sort of a client-server implementation, and I'd like to make sure that every sent message gets a response. So I want to create a timeout mechanism, which doesn't check if the message ...
1
vote
1answer
578 views
Restarting a Twisted-python Reactor after an unsuccessful connection
I am writing a server with multiple clients. When a client starts, the server may not yet be working. So a reactor.connectTCP may fail (no receiving end). Currently I'm solving this by looping on a ...
2
votes
1answer
941 views
Pattern for a background Twisted server that fills an incoming message queue and empties an outgoing message queue?
I'd like to do something like this:
twistedServer.start() # This would be a nonblocking call
while True:
while twistedServer.haveMessage():
message = twistedServer.getMessage()
...
2
votes
2answers
1k views
Twisted client for a send only protocol that is tolerant of disconnects
I've decided to dip my toe into the world of asynchronous python with the help of twisted. I've implemented some of the examples from the documentation, but I'm having a difficult time finding an ...
2
votes
2answers
917 views
python twisted tutorial/question
Got a simple question regarding twisted.
I can create a trivial basic test with a web server like apache, where http://foo.com/index.php instantiates the index.php for the "foo" site/app...
I'm ...
0
votes
1answer
534 views
twisted web getPage, 2 clients in 2 classes, manage events between the two
i'm trying to create a bridge program in twisted.web that receives data from a web server and sends it to another server, thus i'm using 2 getPage applications that i have wrapped in a class for ...
2
votes
1answer
659 views
Generate headers in Twisted client
i'm using the Twisted web "HTTPClient" protocol to dialogue with a http server (using twisted app as a client), the problem is that most of my request do not accept my header. Is there some sort of ...
1
vote
1answer
275 views
twisted three-layer server-client model?
I'm trying to do a three-layer server-client:
1st layer: send data to 2nd layer
2nd layer: receive data from 1st and send it to 3rd
3rd layer: receive data from 2nd layer
By this way, 2nd layer ...
1
vote
1answer
76 views
dataReceived in client side doesn't work?
I have implemented a simple server-client script like this:
Server:
class Server(Protocol):
def connectionMade(self):
while True:
self.transport.write('a')
Client
class ...
3
votes
1answer
453 views
Making HTTPS Requests in Twisted
I am trying to write a client that can make both HTTP and HTTPS requests depending on how it is configured. For normal HTTP, I have been using twisted.web.client.Agent and using agent.request(METHOD, ...
1
vote
1answer
207 views
'METHODNAME' as Client method versus irc_'METHODNAME' in twisted
Looking at twisted.words.protocols.irc.IRCClient, it seems to me like there are some strangely redundant methods. For instance, there is a method 'privmsg' but also a method 'irc_PRIVMSG'
As another ...
10
votes
2answers
7k 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 ...
3
votes
1answer
702 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 parse the file contents ...
