Python Flask API Tutorial

preview_player
Показать описание
We continue our Django-Python tutorials by exploring how to use Flask to create an API.  This popular library/framework is easy to use and powerful.  We will return to it in future sessions for other features.  However, we can focus on building an API with what we have already discussed about Python.

A Micro Framework

One of the strengths of Python is how lightweight it is.  The environment does not require large amounts of memory or space to get serious work done.  That includes many of the frameworks such as Flask.  These tools make it easy to extend functionality without requiring a substantial investment in time or resources.  You may find this a bit limiting when compared to other solutions like .NET or Spring.  On the other hand, why should we include numerous features that are not used?

Think of this as a "just right" framework that allows us to pull in what we need and limit adding things that are not.  It is not quite a component-based approach.  Nevertheless, it does have that sort of a la carte feeling when deciding what features are needed.
Рекомендации по теме
Комментарии
Автор

Is source code available? Seems like a quite large code base!

Jimbrig