Skip to content

Instantly share code, notes, and snippets.

@ivancorrales
Created April 26, 2016 19:01
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 ivancorrales/93c4adb4f31e79fda805204f915bad6b to your computer and use it in GitHub Desktop.
Save ivancorrales/93c4adb4f31e79fda805204f915bad6b to your computer and use it in GitHub Desktop.
# app.py
__author__ = "Iván Corrales Solera <developer@wesovi.com>"
__written_date = "23/04/2016"
import falcon
from resources.books import BookResource
wsgi_app = api = falcon.API()
api.add_route('/books', BookResource())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment