Thanks Min. Here's the sample code I use ipython kernel api.
self._km, self._kc =
jupyter_client.manager.start_new_kernel(kernel_name='python')
reply = self._kc.execute_interactive(request.code,
output_hook=_output_hook,
timeout=TIMEOUT)
Do you think what kind of api I can use to get the background thread output
after `execute_interactive` is finished ? Thanks
在 2017年10月10日星期二 UTC+8下午5:11:31,Min RK写道:
>
> IPython uses global state to identify which request produced which output.
> This is the `parent_header` in the kernel. The result is that, as far as
> the messages are concerned, output produced in a background thread will
> always be associated with the most recently executed cell.
>
> If you know what you want, you can, however, explicitly associate the
> outputs of a thread with a particular parent. Doing so, however, may result
> in a race condition where it appears that the thread owns output produced
> in the main thread, depending on how output is captured or redirected.
>
> -Min
>
> On Tue, Oct 10, 2017 at 8:33 AM, Jeff Zhang <[email protected]
> <javascript:>> wrote:
>
>> I would submit one piece of python to ipython kernel. And this piece of
>> kernel would run a thread to generate output continuously. Then What kind
>> of ipython api I can use to get the output of this daemon thread ? Thanks
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Project Jupyter" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to [email protected] <javascript:>.
>> To post to this group, send email to [email protected]
>> <javascript:>.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/jupyter/31687feb-9acf-4d9a-b7d1-e02e43df5894%40googlegroups.com
>>
>> <https://groups.google.com/d/msgid/jupyter/31687feb-9acf-4d9a-b7d1-e02e43df5894%40googlegroups.com?utm_medium=email&utm_source=footer>
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
--
You received this message because you are subscribed to the Google Groups
"Project Jupyter" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/jupyter/de0ef6ac-a779-4283-9302-97aec00c3b71%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.