我有这个微不足道的猎鹰应用程序:
import falcon
class ThingsResource:
def on_get(self, req, resq) :
#"""Handels GET requests"""
resp.status = falcon.HTTP_200
resp.body = '{"message":"hello"}'
app = falcon.API()
things = ThingsResource()
app.add_route('/things', things)
我正在尝试以这种方式使用 gunicorn 运行它:
arif@ubuntu:~/dialer_api$ gunicorn things:app
但是当我尝试将它与以下连接时得到这个httpie
:
arif@ubuntu:~$ http localhost:8000/things
HTTP/1.1 500 Internal Server Error
Connection: close
Content-Length: 141
Content-Type: text/html
<html>
<head>
<title>Internal Server Error</title>
</head>
<body>
<h1><p>Internal Server Error</p></h1>
</body>
</html>
这太琐碎了,我不知道这里出了什么问题?