# python_flask **Repository Path**: home_robertzhai/python_flask ## Basic Information - **Project Name**: python_flask - **Description**: python flask web demo and skeleton - **Primary Language**: Python - **License**: MulanPSL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-05-31 - **Last Updated**: 2023-05-31 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### python flask web project layout - 4 layers :controller->service->logic->model - flask --app app run --debug - http://127.0.0.1:5000/user/index ``` . ├── LICENSE ├── README.md ├── app.py ├── controller │   ├── __init__.py │   ├── __pycache__ │   │   └── __init__.cpython-310.pyc │   ├── admin │   │   ├── __init__.py │   │   ├── __pycache__ │   │   └── admin.py │   └── user │   ├── __init__.py │   ├── __pycache__ │   └── user.py ├── logic │   └── __init__.py ├── model │   └── __init__.py ├── requirements.txt ├── service │   └── __init__.py └── templates ├── admin │   └── index.html └── user └── index.html ```