Skip to content

Instantly share code, notes, and snippets.

View munapagal100-star's full-sized avatar

munapagal100-star

View GitHub Profile
# https://avelino.xxx/go-vs-python-more-request-per-second/
import falcon
class ThingsResource:
def on_get(self, req, resp):
resp.status = falcon.HTTP_200
resp.body = ("Hello World")
app = falcon.API()