Skip to Content
Flask Framework Cookbook - Second Edition
book

Flask Framework Cookbook - Second Edition

by Shalabh Aggarwal
July 2019
Beginner to intermediate
302 pages
9h 38m
English
Packt Publishing
Content preview from Flask Framework Cookbook - Second Edition

How to do it...

We simply have to modify our views for product handling to extend the MethodView class in views.py:

import jsonfrom flask.views import MethodView, abort 
 
class ProductView(MethodView): 
 
    def get(self, id=None, page=1): 
        if not id: 
            products = Product.query.paginate(page, 10).items 
            res = {} 
            for product in products: 
                res[product.id] = { 
                    'name': product.name, 
                    'price': product.price, 
                    'category': product.category.name 
                } 
        else: 
            product = Product.query.filter_by(id=id).first() 
            if not product: 
                abort(404) 
            res = json.dumps({ 
                'name': product.name, 
                'price': product.price, 
                'category': product.category.name 
            }) 
        return res 

The preceding get() method searches for the product and sends back a JSON result.

Similarly, we can write the post(), put() ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Writing a Web Application with Flask

Writing a Web Application with Flask

Doug Farrell
Mastering Flask

Mastering Flask

Jack Stouffer

Publisher Resources

ISBN: 9781789951295Supplemental Content