我有一个需要调用的Python脚本才能通过Web服务运行。是否可以使用Python创建触发Python脚本的Web服务?
可以推荐任何第三方Python库吗?
干杯, 亚历
答案 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()