如何在浏览器中打开python webservice

时间:2016-04-07 12:24:41

标签: python web-services

我在python 3中有一个简单的HelloWorld webservice代码:

from werkzeug.wrappers import Request, Response

@Request.application
def application():
    return Response('Hello World!')

if __name__ == '__main__':
    from werkzeug.serving import run_simple
    run_simple('localhost', 4000, application)

我想在浏览器中对此进行测试...我尝试打开网址:“http://localhost:4000/application”但是它给出了错误“500”。 怎么解决这个问题?

1 个答案:

答案 0 :(得分:0)

问题已经解决。变化

def application():def application(request):