Re: [Twisted-Python] Serial interface for software program

2014-05-07 Thread anatoly techtonik
On Mon, May 5, 2014 at 8:24 PM, Itamar Turner-Trauring wrote: > If Spyder *just* uses Qt, it's a single-threaded event loop. There's a 3rd > party event loop for Twisted that runs on top of Qt (qt4reactor), which > would allow Twisted and Qt code to run in the same thread. Spyder executes interpr

Re: [Twisted-Python] Serial interface for software program

2014-05-07 Thread anatoly techtonik
Hi Laurens, Well, Manhole looks way more advanced than my idea. I just need to be able to tap into one way application event stream - there is no input from the other side, so application doesn't need to prepare for that. So, serial != terminal. There might be in future, but now I am more interes

Re: [Twisted-Python] Serial interface for software program

2014-05-05 Thread Glyph
On May 5, 2014, at 6:02 PM, Itamar Turner-Trauring wrote: > On 05/05/2014 03:06 PM, exar...@twistedmatrix.com wrote: >> >> However, I'm not even sure if the GUI reactors *should* be distributed as >> part of the main Twisted package. They are already first-class reactors via >> the plugin sy

Re: [Twisted-Python] Serial interface for software program

2014-05-05 Thread Itamar Turner-Trauring
On 05/05/2014 03:06 PM, exar...@twistedmatrix.com wrote: However, I'm not even sure if the GUI reactors *should* be distributed as part of the main Twisted package. They are already first-class reactors via the plugin system. Independent releases let them track changes in the GUI library th

Re: [Twisted-Python] Serial interface for software program

2014-05-05 Thread exarkun
On 06:49 pm, sank.dan...@gmail.com wrote: There's a 3rd party event loop for Twisted that runs on top of Qt (qt4reactor), which would allow Twisted and Qt code to run in the same thread. Speaking of which, why isn't that thing officially part of twisted? Super useful. The PyQt team insist

Re: [Twisted-Python] Serial interface for software program

2014-05-05 Thread Daniel Sank
> There's a 3rd party event loop for Twisted that runs on top of Qt (qt4reactor), which would > allow Twisted and Qt code to run in the same thread. Speaking of which, why isn't that thing officially part of twisted? Super useful. Daniel On Mon, May 5, 2014 at 10:24 AM, Itamar Turner-Trauring

Re: [Twisted-Python] Serial interface for software program

2014-05-05 Thread Itamar Turner-Trauring
If Spyder *just* uses Qt, it's a single-threaded event loop. There's a 3rd party event loop for Twisted that runs on top of Qt (qt4reactor), which would allow Twisted and Qt code to run in the same thread. -Itamar ___ Twisted-Python mailing list Twis

Re: [Twisted-Python] Serial interface for software program

2014-05-05 Thread Laurens Van Houtven
Hi Anatoly, Do you know about manhole? I made a video that also demos axiom, but it should show you what manhole does :) https://www.youtube.com/watch?v=3-UZiO-AnLc Essentially it's "repl in a running process". hth lvh On Mon, May 5, 2014 at 4:43 AM, anatoly techtonik wrote: > Hello, netwo

[Twisted-Python] Serial interface for software program

2014-05-05 Thread anatoly techtonik
Hello, network hackers, Recently I've got a Raspberry Pi and a friend showed me its serial interface and helped to setup it. I was stunned. What I saw - you open serial terminal, and you jump in into the middle of boot section. Just open a terminal and you see what's going on inside of R.Pi. Any t