[
Lists Home |
Date Index |
Thread Index
]
> I have a bunch of program config files with sentences based on a
> grammar. The files and the grammar were written to be used with the yacc
> parser. Now I have to port the code from c to python, so I'd like to
> rewrite these config files as xml to parse them with xml python standard
> tools.
Another option is to use Python versions of Yacc and Lex:
http://savannah.nongnu.org/projects/ply/
|