Re: which parser to use

2005-02-23 Thread Paul McGuire
[EMAIL PROTECTED] wrote: > I'm building something that requires parsing a rather complex > language. I'd like to do the whole application, including the > lex/parse phase, in Python (for development/debug speed), and only > move parts of it to a compiled language if execution speed absolutely > dic

Re: which parser to use

2005-02-22 Thread Miki Tebeka
Hello E, > I'm building something that requires parsing a rather complex > language. I'd like to do the whole application, including the > lex/parse phase, in Python (for development/debug speed), and only > move parts of it to a compiled language if execution speed absolutely > dictates. So, what

Re: which parser to use

2005-02-22 Thread Jean Brouwers
Check out SimpleParse/mxTextTools. Just an outstanding E/BNF driven parser, very highly recommended. /Jean Brouwers PS) See also

which parser to use

2005-02-21 Thread a_nuther
I'm building something that requires parsing a rather complex language. I'd like to do the whole application, including the lex/parse phase, in Python (for development/debug speed), and only move parts of it to a compiled language if execution speed absolutely dictates. So, what i'm looking for in