Skip to content

Instantly share code, notes, and snippets.

@nicolaiarocci
Created May 27, 2016 14:07
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 nicolaiarocci/01ea2cd1068afc99f9e38f0bb9afcabf to your computer and use it in GitHub Desktop.
Save nicolaiarocci/01ea2cd1068afc99f9e38f0bb9afcabf to your computer and use it in GitHub Desktop.
from eve import Eve
app = Eve()
@app.route('/hello')
def hello_world():
return 'Hello World!'
if __name__ == '__main__':
app.run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment