Flask Introduction
Meet Flask — a lightweight Python web framework for APIs and small apps.
Python programming tutorials
Meet Flask — a lightweight Python web framework for APIs and small apps.
Create a Flask project with a virtual environment and application factory basics.
Map URLs to view functions with Flask route decorators and dynamic parameters.
Integrate CRUD-style REST endpoints using JSON bodies and auth headers.
Use sqlite3 from the standard library for lightweight local databases.
Connect Python to MySQL using a driver like mysql-connector or PyMySQL.
Hide implementation details behind clean interfaces using abstract base classes.
Customize object behavior with special methods like __str__, __len__, and __add__.
Understand iterables vs iterators and build custom iterators with __iter__/__next__.