Skip to content

Latest commit

 

History

History
45 lines (32 loc) · 817 Bytes

File metadata and controls

45 lines (32 loc) · 817 Bytes

python3_webapp_blog

参考教程Python教程-廖雪峰

环境说明

  • python3.8
  • asyncio, aiomysql
  • 使用jinja2模板,uikit进行渲染

文件目录结构

.
├── LICENSE
├── main.py
├── README.md
├── test.py
└── www
    ├── apis.py
    ├── app.py
    ├── config_default.py
    ├── config.py
    ├── config_user.py
    ├── coroweb.py
    ├── handlers.py
    ├── __init__.py
    ├── models.py
    ├── orm.py
    ├── __pycache__
    ├── static
    └── templates

代码使用black 格式化```