25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
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