Python implementation of Parsec? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T20:51:16Z http://stackoverflow.com/feeds/question/94952 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/94952/python-implementation-of-parsec 5 Python implementation of Parsec? Jason Dagit 2008-09-18T17:54:39Z 2008-09-19T18:58:07Z <p>I recently wrote a parser in Python using Ply (it's a python reimplementation of yacc). When I was almost done with the parser I discovered that the grammar I need to parse requires me to do some look up during parsing to inform the lexer. Without doing a look up to inform the lexer I cannot correctly parse the strings in the language.</p> <p>Given than I can control the state of the lexer from the grammar rules I think I'll be solving my use case using a look up table in the parser module, but it may become too difficult to maintain/test. So I want to know about some of the other options.</p> <p>In Haskell I would use Parsec, a library of parsing functions (known as combinators). Is there a Python implementation of Parsec? Or perhaps some other production quality library full of parsing functionality so I can build a context sensitive parser in Python?</p> <p>EDIT: All my attempts at context free parsing have failed. For this reason, I don't expect ANTLR to be useful here.</p> http://stackoverflow.com/questions/94952/python-implementation-of-parsec/95014#95014 2 Answer by PW for Python implementation of Parsec? PW 2008-09-18T18:00:05Z 2008-09-18T18:00:05Z <p>An option you may consider, if an LL parser is ok to you, is to give <a href="http://www.antlr.org/wiki/display/ANTLR3/Antlr3PythonTarget" rel="nofollow">ANTLR</a> a try, it can generate python too (actually it is LL(*) as they name it, * stands for the quantity of lookahead it can cope with).</p> http://stackoverflow.com/questions/94952/python-implementation-of-parsec/95035#95035 1 Answer by nt for Python implementation of Parsec? nt 2008-09-18T18:02:07Z 2008-09-18T18:02:07Z <p>There's ANTLR, which is LL(*), there's PyParsing, which is more object friendly and is sort of like a DSL, and then there's <a href="http://www.canonware.com/Parsing/" rel="nofollow">Parsing</a> which is like OCaml's Menhir.</p> http://stackoverflow.com/questions/94952/python-implementation-of-parsec/95102#95102 0 Answer by Joe Skora for Python implementation of Parsec? Joe Skora 2008-09-18T18:08:28Z 2008-09-18T18:08:28Z <p><a href="http://www.antlr.org/" rel="nofollow">ANTLR</a> is great and has the added benefit of working across multiple languages.</p> http://stackoverflow.com/questions/94952/python-implementation-of-parsec/95417#95417 6 Answer by rcreswick for Python implementation of Parsec? rcreswick 2008-09-18T18:34:52Z 2008-09-18T18:34:52Z <p>PySec is another monadic parser, I don't know much about it, but it's worth looking at.</p> <p><a href="http://www.valuedlessons.com/2008/02/pysec-monadic-combinatoric-parsing-in.html" rel="nofollow">http://www.valuedlessons.com/2008/02/pysec-monadic-combinatoric-parsing-in.html</a></p> http://stackoverflow.com/questions/94952/python-implementation-of-parsec/95707#95707 2 Answer by Peter Hart for Python implementation of Parsec? Peter Hart 2008-09-18T18:58:12Z 2008-09-18T18:58:12Z <p>I believe that <a href="http://pyparsing.wikispaces.com/" rel="nofollow" title="PyParsing web site">pyparsing</a> is based on the same principles as parsec.</p> http://stackoverflow.com/questions/94952/python-implementation-of-parsec/104547#104547 1 Answer by eliben for Python implementation of Parsec? eliben 2008-09-19T18:58:07Z 2008-09-19T18:58:07Z <p>Nothing prevents you for diverting your parser from the "context free" path using PLY. You can pass information to the lexer during parsing, and in this way achieve full flexibility. I'm pretty sure that you can parse anything you want with PLY this way.</p> <p>For a hands-on example, consider <a href="http://code.google.com/p/pycparser/" rel="nofollow">http://code.google.com/p/pycparser/</a> - it is a parser for ANSI C written in Python with PLY. It solves the classic C typedef - identifier problem (that makes C's grammar non context-sensitive) by populating a symbol table in the parser that is being used in the lexer to resolve symbol names as either types or not.</p>