使用Python创建一个Web服务来调用Python脚本

时间:2013-12-10 06:14:53

标签: python web-services python-2.7

我有一个需要调用的Python脚本才能通过Web服务运行。是否可以使用Python创建触发Python脚本的Web服务?

可以推荐任何第三方Python库吗?

干杯, 亚历

1 个答案:

答案 0 :(得分:0)

例如,您可以使用circuits.web(使用circuits-dev

示例:

#!/usr/bin/env python

from subprocess import check_output


from circuits.web import Controller, Server


class Root(Controller):

    def index(self):
        return check_output("python hello.py", shell=True)


app = Server("0.0.0.0:5000")
Root().register(app)

app.run()