您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12 行
223 B

  1. import falcon
  2. class PositionsResource:
  3. def on_post(self, req, resp):
  4. data = req.bounded_stream.read()
  5. resp.body = data
  6. resp.status = falcon.HTTP_201
  7. def on_get(self, req, resp):
  8. raise falcon.HTTPNotImplemented