Suppose I need to create my own small DSL that would use Python to describe a certain data structure. E.g. I'd like to be able to write something like
f(x) = some_stuff(a,b,c)
and have Python, instead of complaining about undeclared identifiers or attempting to invoke the function some_stuff, convert it to a literal expression for my further convenience.
It is possible to get a reasonable approximation to this by creating a class with properly redefined __getattr__ and __setattr__ methods and use it as follows:
e = Expression()
e.f[e.x] = e.some_stuff(e.a, e.b, e.c)
It would be cool though, if it were possible to get rid of the annoying "e." prefixes and maybe even avoid the use of []. So I was wondering, is it possible to somehow temporarily "redefine" global name lookups and assignments? On a related note, maybe there are good packages for easily achieving such "quoting" functionality for Python expressions?
some_stuffis not a function, but a secret method of an anonymous object, I'm stumped as to how anyone can learn to use this. – S.Lott Apr 17 '10 at 1:19__getattr__. What I am essentially seeking for is a way of creating sexy syntax sugar that could replace stuff like, sayadd_new_formula(['f','x'],['some_stuff','a','b','c'])by something more readable. One of the answers mentions Sage, see how it uses altered Python syntax for a live example. – KT. Apr 17 '10 at 3:32exec .. in ..expression - so there's no question to worry about any more. If you want to better understand the motivation, then let me add that I was simply seeking for a fun way to make Python "parse" a certain configuration file, which used essentially Python syntax, but none of the identifiers or assignments corresponded to "real" Python objects or assignments (e.g. some of them have to be proxied to an external system). I think I got my answer. Thanks for trying to help, though, still! – KT. Apr 17 '10 at 13:08