Skip to content

Instantly share code, notes, and snippets.

@jgeewax
Created August 22, 2010 16:23
Show Gist options
  • Select an option

  • Save jgeewax/543946 to your computer and use it in GitHub Desktop.

Select an option

Save jgeewax/543946 to your computer and use it in GitHub Desktop.
application: hellohelipad
version: 1
runtime: python
api_version: 1
handlers:
- url: /
script: hireforge/handlers/hellohelipad.py
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