https://github.com/thanhlt-1007/python3_flask_hello
Learning flask with Head First Python 2nd Edition
https://github.com/thanhlt-1007/python3_flask_hello
flask python3
Last synced: over 1 year ago
JSON representation
Learning flask with Head First Python 2nd Edition
- Host: GitHub
- URL: https://github.com/thanhlt-1007/python3_flask_hello
- Owner: thanhlt-1007
- Created: 2023-12-08T11:00:52.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-10T17:43:44.000Z (over 2 years ago)
- Last Synced: 2025-02-10T21:38:49.039Z (over 1 year ago)
- Topics: flask, python3
- Language: Python
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Python3 Flask Hello
Learning flask with Head First Python 2nd Edition
## 1. Install
- Install python3
```bash
sudo apt install python3.8
```
- Install flask
```bash
pip3 install flask
pip3 install Jinja2
```
## 2. Run
- Run flask app
```bash
flask run
# or
python3 -m flask run
```
- Access http://127.0.0.1:5000/