このシリーズでは、Python初心者さん向けに「学びながら作れる」Webアプリ開発の流れを紹介しています。 前回は、FlaskとSQLiteで本格的なデータ保存ができるToDoリストを作成しました。
pythonのwebフレームとして、flask があります。 通常は、Djangoが、使われますが、Djangoと比べて軽量という特徴があります。 pip3 install Flaskでインストールした後、必要なのは、フォルダ構成を考えることです。 以下のサイトにチュートリアルがあります。
Flask is a web framework, which means it provides you with tools, libraries and technologies that allow you to build a web application. The web application can be as simple as a few web pages, a blog, ...