• Complain

Kunal Relan - Building REST APIs with Flask

Here you can read online Kunal Relan - Building REST APIs with Flask full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. year: 2019, publisher: Apress, genre: Home and family. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

Kunal Relan Building REST APIs with Flask
  • Book:
    Building REST APIs with Flask
  • Author:
  • Publisher:
    Apress
  • Genre:
  • Year:
    2019
  • Rating:
    4 / 5
  • Favourites:
    Add to favourites
  • Your mark:
    • 80
    • 1
    • 2
    • 3
    • 4
    • 5

Building REST APIs with Flask: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "Building REST APIs with Flask" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

Kunal Relan: author's other books


Who wrote Building REST APIs with Flask? Find out the surname, the name of the author of the book and a list of all author's works by series.

Building REST APIs with Flask — read online for free the complete book (whole text) full work

Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "Building REST APIs with Flask" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

Light

Font size:

Reset

Interval:

Bookmark:

Make
Contents
Landmarks
Kunal Relan Building REST APIs with Flask Create Python Web Services with - photo 1
Kunal Relan
Building REST APIs with Flask
Create Python Web Services with MySQL
Kunal Relan New Delhi Delhi India Any source code or other supplementary - photo 2
Kunal Relan
New Delhi, Delhi, India

Any source code or other supplementary material referenced by the author in this book is available to readers on GitHub via the books product page, located at www.apress.com/9781484250211 . For more detailed information, please visit http://www.apress.com/source-code .

ISBN 978-1-4842-5021-1 e-ISBN 978-1-4842-5022-8
https://doi.org/10.1007/978-1-4842-5022-8
Kunal Relan 2019
Apress Standard
Trademarked names, logos, and images may appear in this book. Rather than use a trademark symbol with every occurrence of a trademarked name, logo, or image we use the names, logos, and images only in an editorial fashion and to the benefit of the trademark owner, with no intention of infringement of the trademark. The use in this publication of trade names, trademarks, service marks, and similar terms, even if they are not identified as such, is not to be taken as an expression of opinion as to whether or not they are subject to proprietary rights.
While the advice and information in this book are believed to be true and accurate at the date of publication, neither the authors nor the editors nor the publisher can accept any legal responsibility for any errors or omissions that may be made. The publisher makes no warranty, express or implied, with respect to the material contained herein.
Distributed to the book trade worldwide by Springer Science+Business Media New York, 233 Spring Street, 6th Floor, New York, NY 10013. Phone 1-800-SPRINGER, fax (201) 348-4505, e-mail orders-ny@springer-sbm.com, or visit www.springeronline.com. Apress Media, LLC is a California LLC and the sole member (owner) is Springer Science + Business Media Finance Inc (SSBM Finance Inc). SSBM Finance Inc is a Delaware corporation.

Dedicated to caffeine and sugar, my companions through many long night of writing, and extra credits to my mom.

Introduction

Flask is a lightweight microframework for web applications built on top of Python, which provides an efficient framework for building web-based applications using the flexibility of Python and strong community support with the capability of scaling to serve millions of users.

Flask has excellent community support, documentation, and supporting libraries; it was developed to provide a barebone framework for developers, giving them the freedom to build their applications using their preferred set of libraries and tools.

This book takes you through different stages of a REST APIbased application development process using flask which explains the basics of the Flask framework assuming the readers understand Python. Well cover database integration, understanding REST services, REST APIs performing CRUD operations, user authentication, third-party library integrations, testing, deployment, and application monitoring.

At the end of this book, youll have a fair understanding of Flask framework, REST, testing, deploying, and managing Flask applications, which will open doors to understanding REST API development.

Acknowledgments

I would like to thank Apress for providing me this platform, without which this would have been a lot harder. I would also like to thank Mr. Nikhil Karkal for his help and Miss Divya Modi for her perseverance, without whom this would have been a farsighted project.

Id like to mention about the strong Python community which helped me understand the core concepts in my early years of programming, which inspired me to contribute back to the community with this book.

Last but certainly not the least, I would like to acknowledge all the people who constantly reminded me about the deadlines and helped me write this book, especially my family and Aparna Abhijit for helping me out with editing.

Table of Contents
About the Author and About the Technical Reviewer
About the Author
Kunal Relan
is an iOS security researcher and a full stack developer with more than four - photo 3
is an iOS security researcher and a full stack developer with more than four years of experience in various fields of technology, including network security, DevOps, cloud infrastructure, and application development, working as a consultant with start-ups around the globe. He is an Alibaba Cloud MVP and author of iOS Penetration Testing (Apress) and a variety of white papers. Kunal is a technology enthusiast and an active speaker. He regularly contributes to open source communities and writes articles for Digital Ocean and Alibaba Techshare.
About the Technical Reviewer
Saurabh Badhwar
is a software engineer with a passion to build scalable distributed systems He - photo 4
is a software engineer with a passion to build scalable distributed systems. He is mostly working to solve challenges related to performance of software at a large scale and has been involved in building solutions that help other developers quickly analyze and compare performance of their systems when running at scale. He is also passionate about working with open source communities and has been actively participating as a contributor in various domains, which involve development, testing, and community engagement. Saurabh has also been an active speaker at various conferences where he has been talking about performance of large-scale systems.
Kunal Relan 2019
K. Relan Building REST APIs with Flask https://doi.org/10.1007/978-1-4842-5022-8_1
1. Beginning with Flask
Kunal Relan
(1)
New Delhi, Delhi, India

Flask is a BSD licensed, Python microframework based on Werkzeug and Jinja2. Being a microframework doesnt make it any less functional; Flask is a very simple yet highly extensible framework. This gives developers the power to choose the configuration they want, thereby making writing applications or plugins easy. Flask was originally created by Pocoo, a team of open source developers in 2010, and it is now developed and maintained by The Pallets Project who power all the components behind Flask. Flask is supported by an active and helpful developer community including an active IRC channel and a mailing list.

Introduction to Flask

Flask has two major components , Werkzeug and Jinja2. While Werkzeug is responsible for providing routing, debugging, and Web Server Gateway Interface (WSGI) , Flask leverages Jinja2 as template engine. Natively, Flask doesnt support database access, user authentication, or any other high-level utility, but it does provide support for extensions integration to add all such functionalities, making Flask a micro- yet production-ready framework for developing web applications and services. A simple Flask application can fit into a single Python file or it can be modularized to create a production-ready application. The idea behind Flask is to build a good foundation for all applications leaving everything else on extensions.

Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «Building REST APIs with Flask»

Look at similar books to Building REST APIs with Flask. We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


Reviews about «Building REST APIs with Flask»

Discussion, reviews of the book Building REST APIs with Flask and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.