在Python应用程序中编写脚本
我想在我的一个应用程序中包含Python脚本 ,这是用Python编写的。
我的应用程序必须能够调用外部Python函数(由用户编写)作为回调函数。 代码执行必须有一些控制权; 例如,如果用户提供了带有语法错误的代码,则应用程序必须发出该信号。
做这个的最好方式是什么?
谢谢。
编辑:问题不清楚。 我需要一种类似于VBA事件的机制,其中有一个“声明”部分(您定义全局变量)和事件,以脚本代码的形式在特定点触发。
使用__import__
导入用户提供的文件。 该功能将返回一个模块。 用它来调用导入文件中的函数。
在__import__
和实际调用中使用try..except
来捕获错误。
例:
m = None
try:
m = __import__("external_module")
except:
# invalid module - show error
if m:
try:
m.user_defined_func()
except:
# some error - display it
如果您希望用户交互输入命令,我可以强烈推荐代码模块,它是标准库的一部分。 InteractiveConsole和InteractiveInterpreter对象允许用户输入的简单输入和评估,并且错误处理非常好,可以使用回溯来帮助用户正确使用。
只要确保赶上SystemExit!
$ python
Python 2.5.1 (r251:54863, Jan 17 2008, 19:35:17)
[GCC 4.0.1 (Apple Inc. build 5465)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> shared_var = "Set in main console"
>>> import code
>>> ic = code.InteractiveConsole({ 'shared_var': shared_var })
>>> try:
... ic.interact("My custom console banner!")
... except SystemExit, e:
... print "Got SystemExit!"
...
My custom console banner!
>>> shared_var
'Set in main console'
>>> shared_var = "Set in sub-console"
>>> sys.exit()
Got SystemExit!
>>> shared_var
'Set in main console'
RestrictedPython为Python提供了一个受限的执行环境,例如运行不受信任的代码。
链接地址: http://www.djcxy.com/p/42777.html