There is an eval() function in Python I stumbled upon while playing around. I cannot think of a case when this function is needed, except maybe as syntactic sugar. Can anyone give an example?
|
feedback
|
|
For example, if I had to deal with such dynamic Python sources, I'd reach for the ast module -- For many tasks I've seen people (ab-)use | |||
|
feedback
|
|
The Wikipedia article on Some of the uses it suggests are:
| |||||
feedback
|
|
You may want to use it to allow users to enter their own "scriptlets": small expressions (or even small functions), that can be used to customize the behavior of a complex system. | |||
|
feedback
|
|
In a program I once wrote, you had an input file where you could specify geometric parameters both as values and as python expressions of the previous values, eg:
A python parser read this input file and obtained the final data evaluating the values and the expressions using eval(). I don't claim it to be good programming, but I did not have to drive a nuclear reactor. | |||
|
feedback
|
|
In the past I have used eval() to add a debugging interface to my application. I created a telnet service which dropped you into the environment of the running application. Inputs were run through eval() so you can interactively run Python commands in the application. | |||
feedback
|
|
| |||
|
feedback
|
|
Eval is a way to interact with the Python interpreter from within a program. You can pass literals to eval and it evaluates them as python expressions. For example -
would return the current working directory. cheers | |||
|
feedback
|
|
I use it as a quick JSON parser ...
| |||||||||
feedback
|
|
I use
try:
exec ("from " + plugin_name + " import Plugin")
myplugin = Plugin(module_options, config=config)
except ImportError, message:
fatal ("No such module " + plugin_name + \
" (or no Plugin constructor) in my Python path: " + str(message))
except Exception:
fatal ("Module " + plugin_name + " cannot be loaded: " + \
str(sys.exc_type) + ": " + str(sys.exc_value) + \
".\n May be a missing or erroneous option?")
With a plugin like:
class Plugin:
def __init__ (self):
pass
def query(self, arg):
...
You will be able to call it like:
result = myplugin.query("something")
I do not think you can have plugins in Python without | |||
feedback
|