選択できるのは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