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 it works...

To test and see how this works, we can send a number of requests using the Python shell by means of the requests library:

    >>> import requests    >>> import json    >>> res = requests.get('http://127.0.0.1:5000/api/product')    >>> res.json()    {'message': 'The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.'}

We made a GET request to fetch the list of products, but there is no record of this. Let's create a new product now:

 >>> d = {'name': u'iPhone', 'price': 549.00, 'category': {'name':'Phones'}} >>> res = requests.post('http://127.0.0.1:5000/api/product', data=json. dumps(d), headers={'Content-Type': 'application/json'}) >>> res.json()  '{"1": {"name": ...
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