调用runserver命令后调用函数

时间:2014-03-17 14:20:50

标签: python django matlab

我有一个django应用程序,它有自己的模型和视图。当我用python manage.py runserver启动django服务器时,我想打开一个matlab实例,在那里预加载环境,并将此实例发送给每个请求。我怎样才能做到这一点? 你可以假设我有一个python的matlab包装器:

class MatlabWrapper(object):
    def __init__(self):
        ...

    def run(self):
        ...

    def execute(self, cmd):
        ...

    def exit(self):
        ...

# usage
m = MatlabWrapper()
m.run() # launch matlab
m.execute(cmd1) # execute command 1
m.execute(cmd2) # execute command 2

0 个答案:

没有答案