##// END OF EJS Templates
empty default_url when outside IPython
empty default_url when outside IPython

File last commit:

r20074:301488d8
r20215:a173b6a2
Show More
widget_output.py
78 lines | 2.7 KiB | text/x-python | PythonLexer
Jonathan Frederic
Output Widget
r18953 """Output class.
Represents a widget that can be used to display output within the widget area.
"""
# Copyright (c) IPython Development Team.
# Distributed under the terms of the Modified BSD License.
from .widget import DOMWidget
import sys
from IPython.utils.traitlets import Unicode, List
from IPython.display import clear_output
Jonathan Frederic
Add doc string to Output widget
r18960 from IPython.testing.skipdoctest import skip_doctest
Jonathan Frederic
Add support for Message class.
r20073 from IPython.kernel.zmq.session import Message
Jonathan Frederic
Output Widget
r18953
Jonathan Frederic
Add doc string to Output widget
r18960 @skip_doctest
Jonathan Frederic
Output Widget
r18953 class Output(DOMWidget):
Jonathan Frederic
Add doc string to Output widget
r18960 """Widget used as a context manager to display output.
This widget can capture and display stdout, stderr, and rich output. To use
it, create an instance of it and display it. Then use it as a context
manager. Any output produced while in it's context will be captured and
displayed in it instead of the standard output area.
Example
from IPython.html import widgets
from IPython.display import display
out = widgets.Output()
display(out)
print('prints to output area')
with out:
print('prints to output widget')"""
Jonathan Frederic
Output Widget
r18953 _view_name = Unicode('OutputView', sync=True)
def clear_output(self, *pargs, **kwargs):
with self:
clear_output(*pargs, **kwargs)
def __enter__(self):
Jonathan Frederic
Finished changing output widget logic.
r20060 """Called upon entering output widget context manager."""
Jonathan Frederic
Output Widget
r18953 self._flush()
Jonathan Frederic
Finished changing output widget logic.
r20060 kernel = get_ipython().kernel
session = kernel.session
send = session.send
self._original_send = send
self._session = session
Jonathan Frederic
Hook the output the right way.
r20072 def send_hook(stream, msg_or_type, content=None, parent=None, ident=None,
buffers=None, track=False, header=None, metadata=None):
# Handle both prebuild messages and unbuilt messages.
Jonathan Frederic
Add support for Message class.
r20073 if isinstance(msg_or_type, (Message, dict)):
Jonathan Frederic
Hook the output the right way.
r20072 msg_type = msg_or_type['msg_type']
Jonathan Frederic
Add support for Message class.
r20073 msg = dict(msg_or_type)
Jonathan Frederic
Finished changing output widget logic.
r20060 else:
Jonathan Frederic
Hook the output the right way.
r20072 msg_type = msg_or_type
msg = session.msg(msg_type, content=content, parent=parent,
header=header, metadata=metadata)
# If this is a message type that we want to forward, forward it.
if stream is kernel.iopub_socket and msg_type in ['clear_output', 'stream', 'display_data']:
self.send(msg)
else:
Jonathan Frederic
Don't build message twice.
r20074 send(stream, msg, ident=ident, buffers=buffers, track=track)
Jonathan Frederic
Finished changing output widget logic.
r20060
session.send = send_hook
Jonathan Frederic
Output Widget
r18953
def __exit__(self, exception_type, exception_value, traceback):
Jonathan Frederic
Finished changing output widget logic.
r20060 """Called upon exiting output widget context manager."""
Jonathan Frederic
Output Widget
r18953 self._flush()
Jonathan Frederic
Finished changing output widget logic.
r20060 self._session.send = self._original_send
Jonathan Frederic
Output Widget
r18953
def _flush(self):
Jonathan Frederic
Finished changing output widget logic.
r20060 """Flush stdout and stderr buffers."""
Jonathan Frederic
Output Widget
r18953 sys.stdout.flush()
sys.stderr.flush()