Itpl (/usr/lib/python1.5/Itpl.py)

String interpolation for Python (by Ka-Ping Yee, 14 Feb 2000).

This module lets you quickly and conveniently interpolate values into
strings (in the flavour of Perl or Tcl, but with less extraneous
punctuation).  You get a bit more power than in the other languages,
because this module allows subscripting, slicing, function calls,
attribute lookup, or arbitrary expressions.  Variables and expressions
are evaluated in the namespace of the caller.

The itpl() function returns the result of interpolating a string, and
printpl() prints out an interpolated string.  Here are some examples:

    from Itpl import printpl
    printpl("Here is a $string.")
    printpl("Here is a $module.member.")
    printpl("Here is an $object.member.")
    printpl("Here is a $functioncall(with, arguments).")
    printpl("Here is an ${arbitrary + expression}.")
    printpl("Here is an $array[3] member.")
    printpl("Here is a $dictionary['member'].")

The filter() function filters a file object so that output through it
is interpolated.  This lets you produce the illusion that Python knows
how to do interpolation:

    import Itpl
    sys.stdout = Itpl.filter()
    f = "fancy"
    print "Isn't this $f?"
    print "Standard output has been replaced with a $sys.stdout object."
    sys.stdout = Itpl.unfilter()
    print "Okay, back $to $normal."

Under the hood, the Itpl class represents a string that knows how to
interpolate values.  An instance of the class parses the string once
upon initialization; the evaluation and substitution can then be done
each time the instance is evaluated with str(instance).  For example:

    from Itpl import Itpl
    s = Itpl("Here is $foo.")
    foo = 5
    print str(s)
    foo = "bar"
    print str(s)


 Modules
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
string
sys


 Classes

Itpl
ItplFile
exceptions.ValueError(exceptions.StandardError)
ItplError


 class Itpl
Class representing a string with interpolation abilities.

Upon creation, an instance works out what parts of the format
string are literal and what parts need to be evaluated.  The
evaluation and substitution happens in the namespace of the
caller when str(instance) is called.

_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
__init__(self, format):
The single argument to this constructor is a format string.

The format string is parsed according to the following rules:

1.  A dollar sign and a name, possibly followed by any of: 
      - an open-paren, and anything up to the matching paren 
      - an open-bracket, and anything up to the matching bracket 
      - a period and a name 
    any number of times, is evaluated as a Python expression.

2.  A dollar sign immediately followed by an open-brace, and
    anything up to the matching close-brace, is evaluated as
    a Python expression.

3.  Outside of the expressions described in the above two rules,
    two dollar signs in a row give you one literal dollar sign.

__repr__(self):
no doc string available

__str__(self):
Evaluate and substitute the appropriate parts of the string.


 class ItplError(ValueError)
no doc string available
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
__init__(self, text, pos):
no doc string available

__str__(self):
no doc string available


 class ItplFile
A file object that filters each write() through an interpolator.

_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
__getattr__(self, attr):
no doc string available

__init__(self, file):
no doc string available

__repr__(self):
no doc string available

write(self, str):
no doc string available


 Functions
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
filter(file=<open file '<stdout>', mode 'w' at 809e878>):
Return an ItplFile that filters writes to the given file object.

'file = filter(file)' replaces 'file' with a filtered object that
has a write() method.  When called with no argument, this creates
a filter to sys.stdout.

itpl(text):
no doc string available

matchorfail(text, pos):
no doc string available

printpl(text):
no doc string available

unfilter(ifile=None):
Return the original file that corresponds to the given ItplFile.

'file = unfilter(file)' undoes the effect of 'file = filter(file)'.
'sys.stdout = unfilter()' undoes the effect of 'sys.stdout = filter()'.

Have you seen any other documentation about this module?
manpy by Tommy Burnette, Web interface by Ping (26 June 98)