Flask
step 0. creating the folders
/flaskr
/flaskr
/static
/templatesstep 1. database schema
drop table if exists entries;
create table entries (
id integer primary key autoincrement,
title text not null,
'text' text not null
);step 2. application setup code
step 3. installing flaskr as a package
step 4.database connections
step 5.creating the database
step 6.the view functions
step 7.the templates
The Last
Last updated