Re: [Twisted-Python] workflow

2014-09-12 Thread Hynek Schlawack
On 12 Sep 2014, at 8:20, Daniel Sank wrote: I would greatly benefit from some direction regarding workflow. In particular, how do you guys deal with having an installed version of twisted, and a version (versions?) with which to tinker? Currently, I have twisted installed in the normal end user

[Twisted-Python] How to send data from another reactor instance

2014-09-12 Thread User User
Hi, I have the codes below and I would like to know how is it possible to send out data which came to "a" instance from "b" i mean data to port 2000 go out from port "2001" !? class fact(DatagramProtocol): def datagramReceived(self, datagram, addr): self.transport.write( datagram, so

Re: [Twisted-Python] How to send data from another reactor instance

2014-09-12 Thread Werner Thie
Hi consider this for TCP, adapt to UDP http://stackoverflow.com/questions/15640640/python-twisted-man-in-the-middle-implementation/15645169#15645169 Werner On 9/12/14 11:26 AM, User User wrote: Hi, I have the codes below and I would like to know how is it possible to send out data which came