Created
August 22, 2010 16:23
-
-
Save jgeewax/543946 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| application: hellohelipad | |
| version: 1 | |
| runtime: python | |
| api_version: 1 | |
| handlers: | |
| - url: / | |
| script: hireforge/handlers/hellohelipad.py |
This file contains hidden or 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 helipad | |
| class HelloHelipadHandler(helipad.Handler): | |
| def get(self): | |
| self.response.out.write('Hello, Helipad!') | |
| main, application = helipad.app(HelloHelipadHandler) | |
| if __name__ == "__main__": | |
| main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment