13.07.2015 Views

Modern Web Applications with Flask and Backbone.js

Modern Web Applications with Flask and Backbone.js

Modern Web Applications with Flask and Backbone.js

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

flask-restful crash course●"<strong>Flask</strong>-RESTful provides the building blocks for creating a great REST API"○ Read: "...for easily creating a decent RESTish API"○ Intensely down-to-business, not coupled to anything (db, etc)○ Highly recommended, still under developmentfrom myproject import appfrom flask.ext import restfulapi = restful.Api(app)class HelloWorld(restful.Resource):def get(self):return {'hello': 'world'}api.add_resource(HelloWorld, '/')

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!