I am running Inkscape 0.47 on Mac OS 10.4.11 through the X Window System (X11 1.1.3) and would like to know the explicit steps needed to run and install the Python script (below) in Inkscape with this setup. I did a "Python" search of InkscapeForum.com and the results where all beyond my experience.
I'm looking for a basic "Installing Python Scripts In Inkscape Tutorial" without having to learn Python and Terminal—I just want to know how to use them to do this.
On page 330 of The Book of Inkscape, Dmitry Kirsanov writes:
"I wrote a simple Python script that creates a 200-by-200 px document with 100 empty layers:
print """<svg width="200" height="200"
[ ]xmlns:svg="http://www.w3.org/2000/svg"
[ ]xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape">"""
for i in range(100):
[ ]print '<g inkscape:groupmode="layer" display="none" id="%03d"/>' % (i + 1)
print '</svg>'
[Note:The > in the 5th line was omitted in original posting.

[Added info about script NOT ORIGINALLY POSTED]
All layers are created hidden (that's what display="none" is for), so in Inkscape, you will need to unhide them one by one (4.6.3) to draw on them. You can vary the number of layers created by the script (range(100)) as well as the dimensions of the artboard (width="200" height="200"). Save the script into the file generate-layers.py and, in a command-line (or "terminal") window of your OS, run it and capture its output to an SVG file. Then run Inkscape on this file:
$ python generate-layers.py > ani.svg
$ inkscape ani.svg
You can also put the resulting file (ani.svg) into your ~/.inkscape/templates folder where it will work as a template so the next time you will be able..."