##// END OF EJS Templates
remove another py2 only test
remove another py2 only test

File last commit:

r22941:cb8151e1
r22962:c05c1799
Show More
demo.py
669 lines | 23.9 KiB | text/x-python | PythonLexer
fperez
New demo class, very handy for interactive presentations.
r22 """Module for interactive demos using IPython.
fperez
Demo fixes, see changelog
r23
fperez
Changes for demos and access to raw history in %macro, %save and %edit....
r178 This module implements a few classes for running Python scripts interactively
in IPython for demonstrations. With very simple markup (a few tags in
comments), you can control points where the script stops executing and returns
control to IPython.
fperez
- Bug fixes in Demo code to support demos with IPython syntax...
r515
Provided classes
Thomas Kluyver
Only include inheritance diagram where it's useful.
r8795 ----------------
fperez
- Bug fixes in Demo code to support demos with IPython syntax...
r515
fperez
Changes for demos and access to raw history in %macro, %save and %edit....
r178 The classes are (see their docstrings for further details):
- Demo: pure python demos
- IPythonDemo: demos with input to be processed by IPython as if it had been
Thomas Kluyver
Improvements to docs formatting.
r12553 typed interactively (so magics work, as well as any other special syntax you
may have added via input prefilters).
fperez
Changes for demos and access to raw history in %macro, %save and %edit....
r178
- LineDemo: single-line version of the Demo class. These demos are executed
Thomas Kluyver
Improvements to docs formatting.
r12553 one line at a time, and require no markup.
fperez
Changes for demos and access to raw history in %macro, %save and %edit....
r178
- IPythonLineDemo: IPython version of the LineDemo class (the demo is
Thomas Kluyver
Improvements to docs formatting.
r12553 executed a line at a time, but processed via IPython).
fperez
Changes for demos and access to raw history in %macro, %save and %edit....
r178
fperez
- Improvements to demo classes and some magic fixes.
r523 - ClearMixin: mixin to make Demo classes with less visual clutter. It
declares an empty marquee and a pre_cmd that clears the screen before each
block (see Subclassing below).
- ClearDemo, ClearIPDemo: mixin-enabled versions of the Demo and IPythonDemo
classes.
Thomas Kluyver
Only include inheritance diagram where it's useful.
r8795 Inheritance diagram:
.. inheritance-diagram:: IPython.lib.demo
:parts: 3
fperez
Finish up demo api/docs, manual improvements, other fixes. Manual work...
r31
fperez
- Bug fixes in Demo code to support demos with IPython syntax...
r515 Subclassing
Thomas Kluyver
Only include inheritance diagram where it's useful.
r8795 -----------
fperez
- Bug fixes in Demo code to support demos with IPython syntax...
r515
The classes here all include a few methods meant to make customization by
subclassing more convenient. Their docstrings below have some more details:
Moez Bouhlel
support running outside jupyter/ipython...
r22940 - highlight(): format every block and optionally highlight comments and
docstring content.
fperez
- Bug fixes in Demo code to support demos with IPython syntax...
r515 - marquee(): generates a marquee to provide visible on-screen markers at each
block start and end.
- pre_cmd(): run right before the execution of each block.
fperez
- Improvements to demo classes and some magic fixes.
r523 - post_cmd(): run right after the execution of each block. If the block
fperez
- Bug fixes in Demo code to support demos with IPython syntax...
r515 raises an exception, this is NOT called.
Bernardo B. Marques
remove all trailling spaces
r4872
fperez
- Bug fixes in Demo code to support demos with IPython syntax...
r515
Operation
Thomas Kluyver
Only include inheritance diagram where it's useful.
r8795 ---------
fperez
- Bug fixes in Demo code to support demos with IPython syntax...
r515
fperez
Finish up demo api/docs, manual improvements, other fixes. Manual work...
r31 The file is run in its own empty namespace (though you can pass it a string of
arguments as if in a command line environment, and it will see those as
sys.argv). But at each stop, the global IPython namespace is updated with the
current internal demo namespace, so you can work interactively with the data
accumulated so far.
By default, each block of code is printed (with syntax highlighting) before
executing it and you have to confirm execution. This is intended to show the
code to an audience first so you can discuss it, and only proceed with
execution once you agree. There are a few tags which allow you to modify this
behavior.
The supported tags are:
fperez
- Improvements to demo classes and some magic fixes.
r523 # <demo> stop
fperez
Finish up demo api/docs, manual improvements, other fixes. Manual work...
r31
Defines block boundaries, the points where IPython stops execution of the
file and returns to the interactive prompt.
fperez
- Improvements to demo classes and some magic fixes.
r523 You can optionally mark the stop tag with extra dashes before and after the
word 'stop', to help visually distinguish the blocks in a text editor:
# <demo> --- stop ---
Bernardo B. Marques
remove all trailling spaces
r4872
fperez
- Improvements to demo classes and some magic fixes.
r523
fperez
Finish up demo api/docs, manual improvements, other fixes. Manual work...
r31 # <demo> silent
Make a block execute silently (and hence automatically). Typically used in
cases where you have some boilerplate or initialization code which you need
executed but do not want to be seen in the demo.
Bernardo B. Marques
remove all trailling spaces
r4872
fperez
Finish up demo api/docs, manual improvements, other fixes. Manual work...
r31 # <demo> auto
Make a block execute automatically, but still being printed. Useful for
simple code which does not warrant discussion, since it avoids the extra
manual confirmation.
# <demo> auto_all
This tag can _only_ be in the first block, and if given it overrides the
individual auto tags to make the whole demo fully automatic (no block asks
for confirmation). It can also be given at creation time (or the attribute
set later) to override what's in the file.
While _any_ python file can be run as a Demo instance, if there are no stop
tags the whole file will run in a single block (no different that calling
first %pycat and then %run). The minimal markup to make this useful is to
place a set of stop tags; the other tags are only there to let you fine-tune
the execution.
This is probably best explained with the simple example file below. You can
Thomas Kluyver
Polish docstring for IPython.lib.demo
r8796 copy this into a file named ex_demo.py, and try running it via::
fperez
Finish up demo api/docs, manual improvements, other fixes. Manual work...
r31
Thomas Kluyver
Polish docstring for IPython.lib.demo
r8796 from IPython.demo import Demo
d = Demo('ex_demo.py')
d()
fperez
Finish up demo api/docs, manual improvements, other fixes. Manual work...
r31
Each time you call the demo object, it runs the next block. The demo object
fperez
Changes for demos and access to raw history in %macro, %save and %edit....
r178 has a few useful methods for navigation, like again(), edit(), jump(), seek()
and back(). It can be reset for a new run via reset() or reloaded from disk
(in case you've edited the source) via reload(). See their docstrings below.
fperez
Finish up demo api/docs, manual improvements, other fixes. Manual work...
r31
Tom Fetherston
Adresses Fernando Perez review suggestions
r1942 Note: To make this simpler to explore, a file called "demo-exercizer.py" has
Fernando Perez
Merging (slightly modified) Tom Fetherston's demo branch....
r2102 been added to the "docs/examples/core" directory. Just cd to this directory in
an IPython session, and type::
%run demo-exercizer.py
Bernardo B. Marques
remove all trailling spaces
r4872
Tom Fetherston
rollback to working
r1939 and then follow the directions.
fperez
- Bug fixes in Demo code to support demos with IPython syntax...
r515
Example
Thomas Kluyver
Only include inheritance diagram where it's useful.
r8795 -------
fperez
- Bug fixes in Demo code to support demos with IPython syntax...
r515
The following is a very simple example of a valid demo file.
Thomas Kluyver
Only include inheritance diagram where it's useful.
r8795 ::
fperez
Finish up demo api/docs, manual improvements, other fixes. Manual work...
r31
Thomas Kluyver
Only include inheritance diagram where it's useful.
r8795 #################### EXAMPLE DEMO <ex_demo.py> ###############################
'''A simple interactive demo to illustrate the use of IPython's Demo class.'''
fperez
Finish up demo api/docs, manual improvements, other fixes. Manual work...
r31
Thomas Kluyver
Only include inheritance diagram where it's useful.
r8795 print 'Hello, welcome to an interactive IPython demo.'
fperez
Finish up demo api/docs, manual improvements, other fixes. Manual work...
r31
Thomas Kluyver
Only include inheritance diagram where it's useful.
r8795 # The mark below defines a block boundary, which is a point where IPython will
# stop execution and return to the interactive prompt. The dashes are actually
# optional and used only as a visual aid to clearly separate blocks while
# editing the demo code.
# <demo> stop
fperez
Finish up demo api/docs, manual improvements, other fixes. Manual work...
r31
Thomas Kluyver
Only include inheritance diagram where it's useful.
r8795 x = 1
y = 2
fperez
Finish up demo api/docs, manual improvements, other fixes. Manual work...
r31
Thomas Kluyver
Only include inheritance diagram where it's useful.
r8795 # <demo> stop
fperez
Finish up demo api/docs, manual improvements, other fixes. Manual work...
r31
Thomas Kluyver
Only include inheritance diagram where it's useful.
r8795 # the mark below makes this block as silent
# <demo> silent
fperez
Finish up demo api/docs, manual improvements, other fixes. Manual work...
r31
Thomas Kluyver
Only include inheritance diagram where it's useful.
r8795 print 'This is a silent block, which gets executed but not printed.'
fperez
Finish up demo api/docs, manual improvements, other fixes. Manual work...
r31
Thomas Kluyver
Only include inheritance diagram where it's useful.
r8795 # <demo> stop
# <demo> auto
print 'This is an automatic block.'
print 'It is executed without asking for confirmation, but printed.'
z = x+y
fperez
Finish up demo api/docs, manual improvements, other fixes. Manual work...
r31
Thomas Kluyver
Only include inheritance diagram where it's useful.
r8795 print 'z=',x
fperez
Finish up demo api/docs, manual improvements, other fixes. Manual work...
r31
Thomas Kluyver
Only include inheritance diagram where it's useful.
r8795 # <demo> stop
# This is just another normal block.
print 'z is now:', z
print 'bye!'
################### END EXAMPLE DEMO <ex_demo.py> ############################
fperez
New demo class, very handy for interactive presentations.
r22 """
fperez
- Bug fixes in Demo code to support demos with IPython syntax...
r515
Thomas Kluyver
Only include inheritance diagram where it's useful.
r8795 from __future__ import unicode_literals
fperez
New demo class, very handy for interactive presentations.
r22 #*****************************************************************************
fperez
Small fix in ultraTB, and fix autocall....
r88 # Copyright (C) 2005-2006 Fernando Perez. <Fernando.Perez@colorado.edu>
fperez
New demo class, very handy for interactive presentations.
r22 #
# Distributed under the terms of the BSD License. The full license is in
# the file COPYING, distributed as part of this software.
#
#*****************************************************************************
Matthias BUSSONNIER
use print function in module with `print >>`
r7817 from __future__ import print_function
fperez
New demo class, very handy for interactive presentations.
r22
fperez
Changes for demos and access to raw history in %macro, %save and %edit....
r178 import os
fperez
Demo fixes, see changelog
r23 import re
fperez
Defaults rename, clean up api to use properties or direct access rather than...
r284 import shlex
fperez
Cosmetic cleanups: put all imports in a single line, and sort them...
r52 import sys
Moez Bouhlel
support running outside jupyter/ipython...
r22940 import pygments
fperez
New demo class, very handy for interactive presentations.
r22
Brian Granger
Work to address the review comments on Fernando's branch....
r2498 from IPython.utils.text import marquee
Jörgen Stenarson
fixes to demo.py due to unicode changes in pycolorize
r8306 from IPython.utils import openpy
Thomas Kluyver
Fix references to raw_input()
r13355 from IPython.utils import py3compat
fperez
Changes for demos and access to raw history in %macro, %save and %edit....
r178 __all__ = ['Demo','IPythonDemo','LineDemo','IPythonLineDemo','DemoError']
fperez
New demo class, very handy for interactive presentations.
r22
Thomas Kluyver
Start using py3compat module.
r4731 class DemoError(Exception): pass
fperez
New demo class, very handy for interactive presentations.
r22
fperez
Finish up demo api/docs, manual improvements, other fixes. Manual work...
r31 def re_mark(mark):
return re.compile(r'^\s*#\s+<demo>\s+%s\s*$' % mark,re.MULTILINE)
fperez
- Improvements to demo classes and some magic fixes.
r523 class Demo(object):
fperez
Finish up demo api/docs, manual improvements, other fixes. Manual work...
r31
Ville M. Vainio
demo: allow multiple dashes in '# <demo> --- stop ---'
r1743 re_stop = re_mark('-*\s?stop\s?-*')
fperez
Finish up demo api/docs, manual improvements, other fixes. Manual work...
r31 re_silent = re_mark('silent')
re_auto = re_mark('auto')
re_auto_all = re_mark('auto_all')
Moez Bouhlel
support running outside jupyter/ipython...
r22940 def __init__(self,src,title='',arg_str='',auto_all=None, format_rst=False,
formatter='terminal', style='default'):
fperez
Add sys.argv support for demos.
r24 """Make a new demo object. To run the demo, simply call the object.
fperez
Finish up demo api/docs, manual improvements, other fixes. Manual work...
r31 See the module docstring for full details and an example (you can use
IPython.Demo? in IPython to see it).
fperez
Add sys.argv support for demos.
r24 Inputs:
Bernardo B. Marques
remove all trailling spaces
r4872
Tom Fetherston
This updates to current main branch and adds my latest changes to demo.py and demoExerciser.py. Note demoExercizer.py is just a quick way to test things, just 'run' it in ipython....
r1889 - src is either a file, or file-like object, or a
string that can be resolved to a filename.
fperez
Add sys.argv support for demos.
r24
Optional inputs:
Bernardo B. Marques
remove all trailling spaces
r4872
Tom Fetherston
This updates to current main branch and adds my latest changes to demo.py and demoExerciser.py. Note demoExercizer.py is just a quick way to test things, just 'run' it in ipython....
r1889 - title: a string to use as the demo name. Of most use when the demo
Thomas Kluyver
Improvements to docs formatting.
r12553 you are making comes from an object that has no filename, or if you
want an alternate denotation distinct from the filename.
fperez
Add sys.argv support for demos.
r24
- arg_str(''): a string of arguments, internally converted to a list
Thomas Kluyver
Improvements to docs formatting.
r12553 just like sys.argv, so the demo script can see a similar
environment.
fperez
Add sys.argv support for demos.
r24
fperez
Finish up demo api/docs, manual improvements, other fixes. Manual work...
r31 - auto_all(None): global flag to run all blocks automatically without
Thomas Kluyver
Improvements to docs formatting.
r12553 confirmation. This attribute overrides the block-level tags and
applies to the whole demo. It is an attribute of the object, and
can be changed at runtime simply by reassigning it to a boolean
value.
Moez Bouhlel
support running outside jupyter/ipython...
r22940
- format_rst(False): a bool to enable comments and doc strings
formating with pygments rst lexer
- formatter('terminal'): a string of pygments formatter name to be
used. Useful values for terminals: terminal, terminal256,
terminal16m
- style('default'): a string of pygments style name to be used.
fperez
Add sys.argv support for demos.
r24 """
Tom Fetherston
This updates to current main branch and adds my latest changes to demo.py and demoExerciser.py. Note demoExercizer.py is just a quick way to test things, just 'run' it in ipython....
r1889 if hasattr(src, "read"):
# It seems to be a file or a file-like object
self.fname = "from a file-like object"
if title == '':
self.title = "from a file-like object"
else:
self.title = title
else:
# Assume it's a string or something that can be converted to one
self.fname = src
if title == '':
(filepath, filename) = os.path.split(src)
self.title = filename
else:
self.title = title
self.sys_argv = [src] + shlex.split(arg_str)
fperez
Finish up demo api/docs, manual improvements, other fixes. Manual work...
r31 self.auto_all = auto_all
Mark E. Smith
Fix broken demo reload()....
r2562 self.src = src
Bernardo B. Marques
remove all trailling spaces
r4872
Moez Bouhlel
support running outside jupyter/ipython...
r22940 self.inside_ipython = "get_ipython" in globals()
if self.inside_ipython:
# get a few things from ipython. While it's a bit ugly design-wise,
# it ensures that things like color scheme and the like are always in
# sync with the ipython mode being used. This class is only meant to
# be used inside ipython anyways, so it's OK.
ip = get_ipython() # this is in builtins whenever IPython is running
self.ip_ns = ip.user_ns
self.ip_colorize = ip.pycolorize
self.ip_showtb = ip.showtraceback
self.ip_run_cell = ip.run_cell
self.shell = ip
self.formatter = pygments.formatters.get_formatter_by_name(formatter,
style=style)
self.python_lexer = pygments.lexers.get_lexer_by_name("py3")
self.format_rst = format_rst
if format_rst:
self.rst_lexer = pygments.lexers.get_lexer_by_name("rst")
fperez
# auto tag for blocks, minor pycat fix.
r30
# load user data and initialize data structures
self.reload()
fperez
New demo class, very handy for interactive presentations.
r22
Fernando Perez
Fix LineDemo class, closes https://bugs.launchpad.net/ipython/+bug/518982
r2587 def fload(self):
"""Load file object."""
fperez
New demo class, very handy for interactive presentations.
r22 # read data and parse into blocks
Mark E. Smith
Fix broken demo reload()....
r2562 if hasattr(self, 'fobj') and self.fobj is not None:
self.fobj.close()
if hasattr(self.src, "read"):
# It seems to be a file or a file-like object
self.fobj = self.src
else:
# Assume it's a string or something that can be converted to one
Jörgen Stenarson
fixes to demo.py due to unicode changes in pycolorize
r8306 self.fobj = openpy.open(self.fname)
Mark E. Smith
Fix broken demo reload()....
r2562
Fernando Perez
Fix LineDemo class, closes https://bugs.launchpad.net/ipython/+bug/518982
r2587 def reload(self):
"""Reload source from disk and initialize state."""
self.fload()
Bernardo B. Marques
remove all trailling spaces
r4872
Jörgen Stenarson
fixes to demo.py due to unicode changes in pycolorize
r8306 self.src = "".join(openpy.strip_encoding_cookie(self.fobj))
fperez
Finish up demo api/docs, manual improvements, other fixes. Manual work...
r31 src_b = [b.strip() for b in self.re_stop.split(self.src) if b]
self._silent = [bool(self.re_silent.findall(b)) for b in src_b]
self._auto = [bool(self.re_auto.findall(b)) for b in src_b]
# if auto_all is not given (def. None), we read it from the file
if self.auto_all is None:
self.auto_all = bool(self.re_auto_all.findall(src_b[0]))
else:
self.auto_all = bool(self.auto_all)
# Clean the sources from all markup so it doesn't get displayed when
# running the demo
src_blocks = []
fperez
# auto tag for blocks, minor pycat fix.
r30 auto_strip = lambda s: self.re_auto.sub('',s)
fperez
Finish up demo api/docs, manual improvements, other fixes. Manual work...
r31 for i,b in enumerate(src_b):
fperez
# auto tag for blocks, minor pycat fix.
r30 if self._auto[i]:
fperez
Finish up demo api/docs, manual improvements, other fixes. Manual work...
r31 src_blocks.append(auto_strip(b))
fperez
# auto tag for blocks, minor pycat fix.
r30 else:
fperez
Finish up demo api/docs, manual improvements, other fixes. Manual work...
r31 src_blocks.append(b)
# remove the auto_all marker
src_blocks[0] = self.re_auto_all.sub('',src_blocks[0])
self.nblocks = len(src_blocks)
self.src_blocks = src_blocks
# also build syntax-highlighted source
Moez Bouhlel
support running outside jupyter/ipython...
r22940 self.src_blocks_colored = list(map(self.highlight,self.src_blocks))
fperez
Finish up demo api/docs, manual improvements, other fixes. Manual work...
r31
fperez
# auto tag for blocks, minor pycat fix.
r30 # ensure clean namespace and seek offset
fperez
New demo class, very handy for interactive presentations.
r22 self.reset()
def reset(self):
fperez
Demo fixes, see changelog
r23 """Reset the namespace and seek pointer to restart the demo"""
fperez
Finish up demo api/docs, manual improvements, other fixes. Manual work...
r31 self.user_ns = {}
self.finished = False
fperez
New demo class, very handy for interactive presentations.
r22 self.block_index = 0
def _validate_index(self,index):
if index<0 or index>=self.nblocks:
raise ValueError('invalid block index %s' % index)
fperez
Changes for demos and access to raw history in %macro, %save and %edit....
r178 def _get_index(self,index):
"""Get the current block index, validating and checking status.
Returns None if the demo is finished"""
Bernardo B. Marques
remove all trailling spaces
r4872
fperez
Changes for demos and access to raw history in %macro, %save and %edit....
r178 if index is None:
if self.finished:
Thomas Kluyver
Deprecate io.{stdout,stderr} and shell.{write,write_err}...
r22192 print('Demo finished. Use <demo_name>.reset() if you want to rerun it.')
fperez
Changes for demos and access to raw history in %macro, %save and %edit....
r178 return None
index = self.block_index
else:
self._validate_index(index)
return index
fperez
New demo class, very handy for interactive presentations.
r22 def seek(self,index):
fperez
- Improvements to demo classes and some magic fixes.
r523 """Move the current seek pointer to the given block.
You can use negative indices to seek from the end, with identical
semantics to those of Python lists."""
if index<0:
index = self.nblocks + index
fperez
New demo class, very handy for interactive presentations.
r22 self._validate_index(index)
fperez
# auto tag for blocks, minor pycat fix.
r30 self.block_index = index
fperez
New demo class, very handy for interactive presentations.
r22 self.finished = False
fperez
Finish up demo api/docs, manual improvements, other fixes. Manual work...
r31 def back(self,num=1):
"""Move the seek pointer back num blocks (default is 1)."""
self.seek(self.block_index-num)
fperez
- Improvements to demo classes and some magic fixes.
r523 def jump(self,num=1):
"""Jump a given number of blocks relative to the current one.
The offset can be positive or negative, defaults to 1."""
fperez
Finish up demo api/docs, manual improvements, other fixes. Manual work...
r31 self.seek(self.block_index+num)
def again(self):
"""Move the seek pointer back one block and re-execute."""
self.back(1)
self()
fperez
Changes for demos and access to raw history in %macro, %save and %edit....
r178 def edit(self,index=None):
"""Edit a block.
If no number is given, use the last block executed.
This edits the in-memory copy of the demo, it does NOT modify the
original source file. If you want to do that, simply open the file in
an editor and use reload() when you make changes to the file. This
method is meant to let you change a block during a demonstration for
explanatory purposes, without damaging your original script."""
index = self._get_index(index)
if index is None:
return
# decrease the index by one (unless we're at the very beginning), so
# that the default demo.edit() call opens up the sblock we've last run
if index>0:
index -= 1
Bernardo B. Marques
remove all trailling spaces
r4872
fperez
Changes for demos and access to raw history in %macro, %save and %edit....
r178 filename = self.shell.mktempfile(self.src_blocks[index])
self.shell.hooks.editor(filename,1)
Thomas Kluyver
Inline trivial file_read() function
r9475 with open(filename, 'r') as f:
new_block = f.read()
fperez
Changes for demos and access to raw history in %macro, %save and %edit....
r178 # update the source and colored block
self.src_blocks[index] = new_block
Moez Bouhlel
support running outside jupyter/ipython...
r22940 self.src_blocks_colored[index] = self.highlight(new_block)
fperez
Changes for demos and access to raw history in %macro, %save and %edit....
r178 self.block_index = index
# call to run with the newly edited index
self()
Bernardo B. Marques
remove all trailling spaces
r4872
fperez
# auto tag for blocks, minor pycat fix.
r30 def show(self,index=None):
fperez
Demo fixes, see changelog
r23 """Show a single block on screen"""
fperez
Changes for demos and access to raw history in %macro, %save and %edit....
r178
index = self._get_index(index)
fperez
New demo class, very handy for interactive presentations.
r22 if index is None:
fperez
Changes for demos and access to raw history in %macro, %save and %edit....
r178 return
Matthias BUSSONNIER
use print function in module with `print >>`
r7817 print(self.marquee('<%s> block # %s (%s remaining)' %
Thomas Kluyver
Deprecate io.{stdout,stderr} and shell.{write,write_err}...
r22192 (self.title,index,self.nblocks-index-1)))
print(self.src_blocks_colored[index])
fperez
- Small fix to demos to flush stdout on each printed block.
r147 sys.stdout.flush()
fperez
Demo fixes, see changelog
r23
fperez
# auto tag for blocks, minor pycat fix.
r30 def show_all(self):
fperez
Demo fixes, see changelog
r23 """Show entire demo on screen, block by block"""
Tom Fetherston
This updates to current main branch and adds my latest changes to demo.py and demoExerciser.py. Note demoExercizer.py is just a quick way to test things, just 'run' it in ipython....
r1889 fname = self.title
title = self.title
fperez
Demo fixes, see changelog
r23 nblocks = self.nblocks
fperez
# auto tag for blocks, minor pycat fix.
r30 silent = self._silent
fperez
- Bug fixes in Demo code to support demos with IPython syntax...
r515 marquee = self.marquee
fperez
Demo fixes, see changelog
r23 for index,block in enumerate(self.src_blocks_colored):
if silent[index]:
Matthias BUSSONNIER
use print function in module with `print >>`
r7817 print(marquee('<%s> SILENT block # %s (%s remaining)' %
Thomas Kluyver
Deprecate io.{stdout,stderr} and shell.{write,write_err}...
r22192 (title,index,nblocks-index-1)))
fperez
Demo fixes, see changelog
r23 else:
Matthias BUSSONNIER
use print function in module with `print >>`
r7817 print(marquee('<%s> block # %s (%s remaining)' %
Thomas Kluyver
Deprecate io.{stdout,stderr} and shell.{write,write_err}...
r22192 (title,index,nblocks-index-1)))
print(block, end=' ')
fperez
- Small fix to demos to flush stdout on each printed block.
r147 sys.stdout.flush()
fperez
Changes for demos and access to raw history in %macro, %save and %edit....
r178
Fernando Perez
Finish removing spurious calls to logger and runlines....
r3087 def run_cell(self,source):
fperez
Changes for demos and access to raw history in %macro, %save and %edit....
r178 """Execute a string with one or more lines of code"""
Thomas Kluyver
Fix exec statements for Py 3...
r13350 exec(source, self.user_ns)
Bernardo B. Marques
remove all trailling spaces
r4872
fperez
New demo class, very handy for interactive presentations.
r22 def __call__(self,index=None):
"""run a block of the demo.
If index is given, it should be an integer >=1 and <= nblocks. This
means that the calling convention is one off from typical Python
lists. The reason for the inconsistency is that the demo always
prints 'Block n/N, and N is the total, so it would be very odd to use
zero-indexing here."""
fperez
Changes for demos and access to raw history in %macro, %save and %edit....
r178 index = self._get_index(index)
fperez
New demo class, very handy for interactive presentations.
r22 if index is None:
fperez
Changes for demos and access to raw history in %macro, %save and %edit....
r178 return
fperez
New demo class, very handy for interactive presentations.
r22 try:
fperez
- Bug fixes in Demo code to support demos with IPython syntax...
r515 marquee = self.marquee
fperez
New demo class, very handy for interactive presentations.
r22 next_block = self.src_blocks[index]
self.block_index += 1
fperez
# auto tag for blocks, minor pycat fix.
r30 if self._silent[index]:
Matthias BUSSONNIER
use print function in module with `print >>`
r7817 print(marquee('Executing silent block # %s (%s remaining)' %
Thomas Kluyver
Deprecate io.{stdout,stderr} and shell.{write,write_err}...
r22192 (index,self.nblocks-index-1)))
fperez
Demo fixes, see changelog
r23 else:
fperez
- Small tab-completion bug fix for Enthought objects.
r517 self.pre_cmd()
fperez
# auto tag for blocks, minor pycat fix.
r30 self.show(index)
fperez
Finish up demo api/docs, manual improvements, other fixes. Manual work...
r31 if self.auto_all or self._auto[index]:
Thomas Kluyver
Deprecate io.{stdout,stderr} and shell.{write,write_err}...
r22192 print(marquee('output:'))
fperez
fix again() bug in demo
r26 else:
Thomas Kluyver
Deprecate io.{stdout,stderr} and shell.{write,write_err}...
r22192 print(marquee('Press <q> to quit, <Enter> to execute...'), end=' ')
Thomas Kluyver
Fix references to raw_input()
r13355 ans = py3compat.input().strip()
fperez
Demo fixes, see changelog
r23 if ans:
Thomas Kluyver
Deprecate io.{stdout,stderr} and shell.{write,write_err}...
r22192 print(marquee('Block NOT executed'))
fperez
Demo fixes, see changelog
r23 return
fperez
Add sys.argv support for demos.
r24 try:
save_argv = sys.argv
sys.argv = self.sys_argv
Fernando Perez
Finish removing spurious calls to logger and runlines....
r3087 self.run_cell(next_block)
fperez
- Bug fixes in Demo code to support demos with IPython syntax...
r515 self.post_cmd()
fperez
Add sys.argv support for demos.
r24 finally:
sys.argv = save_argv
Bernardo B. Marques
remove all trailling spaces
r4872
fperez
New demo class, very handy for interactive presentations.
r22 except:
Moez Bouhlel
support running outside jupyter/ipython...
r22940 if self.inside_ipython:
self.ip_showtb(filename=self.fname)
fperez
New demo class, very handy for interactive presentations.
r22 else:
Moez Bouhlel
support running outside jupyter/ipython...
r22940 if self.inside_ipython:
self.ip_ns.update(self.user_ns)
fperez
New demo class, very handy for interactive presentations.
r22
if self.block_index == self.nblocks:
fperez
- Improvements to demo classes and some magic fixes.
r523 mq1 = self.marquee('END OF DEMO')
if mq1:
Min RK
fix some deprecations...
r22742 # avoid spurious print if empty marquees are used
Thomas Kluyver
Deprecate io.{stdout,stderr} and shell.{write,write_err}...
r22192 print()
print(mq1)
print(self.marquee('Use <demo_name>.reset() if you want to rerun it.'))
fperez
New demo class, very handy for interactive presentations.
r22 self.finished = True
fperez
# auto tag for blocks, minor pycat fix.
r30
fperez
- Bug fixes in Demo code to support demos with IPython syntax...
r515 # These methods are meant to be overridden by subclasses who may wish to
# customize the behavior of of their demos.
def marquee(self,txt='',width=78,mark='*'):
"""Return the input string centered in a 'marquee'."""
return marquee(txt,width,mark)
def pre_cmd(self):
"""Method called before executing each block."""
pass
def post_cmd(self):
"""Method called after executing each block."""
pass
Moez Bouhlel
support running outside jupyter/ipython...
r22940 def highlight(self, block):
"""Method called on each block to highlight it content"""
tokens = pygments.lex(block, self.python_lexer)
if self.format_rst:
from pygments.token import Token
toks = []
for token in tokens:
if token[0] == Token.String.Doc and len(token[1]) > 6:
toks += pygments.lex(token[1][:3], self.python_lexer)
# parse doc string content by rst lexer
toks += pygments.lex(token[1][3:-3], self.rst_lexer)
toks += pygments.lex(token[1][-3:], self.python_lexer)
elif token[0] == Token.Comment.Single:
toks.append((Token.Comment.Single, token[1][0]))
# parse comment content by rst lexer
# remove the extrat newline added by rst lexer
toks += list(pygments.lex(token[1][1:], self.rst_lexer))[:-1]
else:
toks.append(token)
tokens = toks
return pygments.format(tokens, self.formatter)
fperez
- Bug fixes in Demo code to support demos with IPython syntax...
r515
fperez
Changes for demos and access to raw history in %macro, %save and %edit....
r178 class IPythonDemo(Demo):
"""Class for interactive demos with IPython's input processing applied.
This subclasses Demo, but instead of executing each block by the Python
interpreter (via exec), it actually calls IPython on it, so that any input
filters which may be in place are applied to the input block.
If you have an interactive environment which exposes special input
processing, you can use this class instead to write demo scripts which
operate exactly as if you had typed them interactively. The default Demo
class requires the input to be valid, pure Python code.
"""
Fernando Perez
Finish removing spurious calls to logger and runlines....
r3087 def run_cell(self,source):
fperez
Changes for demos and access to raw history in %macro, %save and %edit....
r178 """Execute a string with one or more lines of code"""
Fernando Perez
Finish removing spurious calls to logger and runlines....
r3087 self.shell.run_cell(source)
Bernardo B. Marques
remove all trailling spaces
r4872
fperez
Changes for demos and access to raw history in %macro, %save and %edit....
r178 class LineDemo(Demo):
"""Demo where each line is executed as a separate block.
The input script should be valid Python code.
This class doesn't require any markup at all, and it's meant for simple
scripts (with no nesting or any kind of indentation) which consist of
multiple lines of input to be executed, one at a time, as if they had been
Fernando Perez
Fix LineDemo class, closes https://bugs.launchpad.net/ipython/+bug/518982
r2587 typed in the interactive prompt.
Note: the input can not have *any* indentation, which means that only
single-lines of input are accepted, not even function definitions are
valid."""
Bernardo B. Marques
remove all trailling spaces
r4872
fperez
Changes for demos and access to raw history in %macro, %save and %edit....
r178 def reload(self):
"""Reload source from disk and initialize state."""
# read data and parse into blocks
Fernando Perez
Fix LineDemo class, closes https://bugs.launchpad.net/ipython/+bug/518982
r2587 self.fload()
lines = self.fobj.readlines()
src_b = [l for l in lines if l.strip()]
fperez
Changes for demos and access to raw history in %macro, %save and %edit....
r178 nblocks = len(src_b)
Fernando Perez
Fix LineDemo class, closes https://bugs.launchpad.net/ipython/+bug/518982
r2587 self.src = ''.join(lines)
fperez
Changes for demos and access to raw history in %macro, %save and %edit....
r178 self._silent = [False]*nblocks
self._auto = [True]*nblocks
self.auto_all = True
self.nblocks = nblocks
self.src_blocks = src_b
# also build syntax-highlighted source
Moez Bouhlel
support running outside jupyter/ipython...
r22940 self.src_blocks_colored = list(map(self.highlight,self.src_blocks))
fperez
Changes for demos and access to raw history in %macro, %save and %edit....
r178
# ensure clean namespace and seek offset
self.reset()
fperez
- Improvements to demo classes and some magic fixes.
r523
fperez
Changes for demos and access to raw history in %macro, %save and %edit....
r178 class IPythonLineDemo(IPythonDemo,LineDemo):
"""Variant of the LineDemo class whose input is processed by IPython."""
pass
fperez
- Improvements to demo classes and some magic fixes.
r523
class ClearMixin(object):
"""Use this mixin to make Demo classes with less visual clutter.
Bernardo B. Marques
remove all trailling spaces
r4872
fperez
- Improvements to demo classes and some magic fixes.
r523 Demos using this mixin will clear the screen before every block and use
blank marquees.
Bernardo B. Marques
remove all trailling spaces
r4872
fperez
- Improvements to demo classes and some magic fixes.
r523 Note that in order for the methods defined here to actually override those
of the classes it's mixed with, it must go /first/ in the inheritance
tree. For example:
Bernardo B. Marques
remove all trailling spaces
r4872
fperez
- Improvements to demo classes and some magic fixes.
r523 class ClearIPDemo(ClearMixin,IPythonDemo): pass
Bernardo B. Marques
remove all trailling spaces
r4872
fperez
- Improvements to demo classes and some magic fixes.
r523 will provide an IPythonDemo class with the mixin's features.
"""
Bernardo B. Marques
remove all trailling spaces
r4872
fperez
- Improvements to demo classes and some magic fixes.
r523 def marquee(self,txt='',width=78,mark='*'):
"""Blank marquee that returns '' no matter what the input."""
return ''
Bernardo B. Marques
remove all trailling spaces
r4872
fperez
- Improvements to demo classes and some magic fixes.
r523 def pre_cmd(self):
"""Method called before executing each block.
Bernardo B. Marques
remove all trailling spaces
r4872
fperez
- Improvements to demo classes and some magic fixes.
r523 This one simply clears the screen."""
Moez Bouhlel
fix borken demo.py
r22939 from IPython.utils.terminal import _term_clear
_term_clear()
fperez
- Improvements to demo classes and some magic fixes.
r523
class ClearDemo(ClearMixin,Demo):
pass
class ClearIPDemo(ClearMixin,IPythonDemo):
pass
Moez Bouhlel
add __main__ entry to demo.py module
r22941
def slide(file_path, noclear=False, format_rst=True, formatter="terminal",
style="native", auto_all=False, delimiter='...'):
if noclear:
demo_class = Demo
else:
demo_class = ClearDemo
demo = demo_class(file_path, format_rst=format_rst, formatter=formatter,
style=style, auto_all=auto_all)
while not demo.finished:
demo()
try:
py3compat.input('\n' + delimiter)
except KeyboardInterrupt:
exit(1)
if __name__ == '__main__':
import argparse
parser = argparse.ArgumentParser(description='Run python demos')
parser.add_argument('--noclear', '-C', action='store_true',
help='Do not clear terminal on each slide')
parser.add_argument('--rst', '-r', action='store_true',
help='Highlight comments and dostrings as rst')
parser.add_argument('--formatter', '-f', default='terminal',
help='pygments formatter name could be: terminal, '
'terminal256, terminal16m')
parser.add_argument('--style', '-s', default='default',
help='pygments style name')
parser.add_argument('--auto', '-a', action='store_true',
help='Run all blocks automatically without'
'confirmation')
parser.add_argument('--delimiter', '-d', default='...',
help='slides delimiter added after each slide run')
parser.add_argument('file', nargs=1,
help='python demo file')
args = parser.parse_args()
slide(args.file[0], noclear=args.noclear, format_rst=args.rst,
formatter=args.formatter, style=args.style, auto_all=args.auto,
delimiter=args.delimiter)