25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

12 satır
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