Skip to content

Instantly share code, notes, and snippets.

@bomboclat
Created May 4, 2017 08:38
Show Gist options
  • Save bomboclat/2985c8dee8913811e36fc46fe8066ab8 to your computer and use it in GitHub Desktop.
Save bomboclat/2985c8dee8913811e36fc46fe8066ab8 to your computer and use it in GitHub Desktop.
class Login():
def on_get(self, req, resp):
resp.content_type = 'text/html'
resp.body = 'Hello world!'
def on_post(self, req, resp):
raise falcon.HTTPSeeOther('loadpoints')
# devo fare il redirect da post a get
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment