Usage#
ipl2py works on individual files. To compile script.ipl
to Python simply
ipl2py script.ipl # creates script.ipl.py
You can specify an output file as well.
ipl2py script.ipl -o script.py
By default comments are preserved. They can be discarded by passing the
--no-comments
flag.
ipl2py script.ipl -o script.py --no-comments