Search⌘ K

Application Structure

Explore how to build a single-page web application by structuring frontend and backend components using Python, Transcrypt, React, and Flask. Understand how to manage views like landing pages and modals, incorporate features such as routing and session management, and connect to a RESTful Flask server with SQLite database integration.

Single-page application approach

The type of applications we’ll see in this course is ideal for structure as a single-page application (SPA). This means that instead of using server-rendered web pages that use server-side templates for views, our web client will receive the entire application with all the views all at once, as a single page. The ...