Day 54 Goals: what you will make by the end of the day
- Full Stack = Front-End + Back-End
- Backend framework: Flask (is for small project) or Django (is for commercial large project)
- Client - - - Server - - - Database
- Client is user terminal device edge for request information to server side and display result for view
- Server is for receive request from client and get data from database and then return processed data back to user terminal
- Database: store data
- Understand Python decorator, First-Class-Object
Understanding Backend web development with Python
Flask
- Run command to install Flask
#Pip install Flask library as below command in Dos terminal
pip install -U Flask
Create your First web server with Flask


- Test run via web scraping