Skip to content

Instantly share code, notes, and snippets.

@q
Last active December 14, 2015 08:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save q/5060092 to your computer and use it in GitHub Desktop.
Save q/5060092 to your computer and use it in GitHub Desktop.
An example of how easy it is to standup a new Python service in the Netflix ecosystem.
from netflix.service import BotoService, Route53Service
from netflix.service.bottle import BottleService, get
class HelloNflx(BottleService, Route53Service):
@get('/')
def index(self):
return "Hello from Netflix!"
if __name__ == "__main__":
HelloNflx.main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment