Created
April 9, 2016 09:28
-
-
Save aswinpj/baf79d2f1ff212b8552d7164ce1bd5a5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import webapp2 | |
flash = "The_Flash" | |
class home(webapp2.RequestHandler): | |
def get(self , request , format=None): | |
body = request.data | |
name = body.get('name',flash) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment