Are there any python modules available for parsing and manipulating symbolic expressions in Python similar to how Lisp expressions are evaluated?
相关问题
- how to define constructor for Python's new Nam
- streaming md5sum of contents of a large remote tar
- How to get the background from multiple images by
- Evil ctypes hack in python
- Correctly parse PDF paragraphs with Python
Also, depending on how much work with sexpressions you are doing you might want to check out python hy: https://github.com/hylang/hy
pyparsing (dead link - but see github: pyparsing) comes with an S-expression parser as an example, see here.