Expressions: Arithmetic Expression Parser

Expressions is a small utility library for embedding arithmetic expressions parser and compiler into other libraries and applications. Example uses:

  • safely process an expression entered through a web application, for example some formula to be plotted. The library allows safe translation of such expression without exposing any application's internals
  • precompiler that checks for allowed and denied identifiers in an expression
  • have a common expression language through your application regardless of the backend languages
  • compile arithmetic expression to any other expression tree (semantic), for example SQLAlchemy expression objects

See: http://bit.ly/11mz1DF