-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Chao Pei
authored
Jul 18, 2017
1 parent
d06115a
commit 1c37631
Showing
1 changed file
with
37 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,52 @@ | ||
### Python3 web | ||
*** | ||
by parle | ||
## Python3 Web Server | ||
|
||
|
||
### Using python3.4 create sample blog webstation | ||
|
||
##### Using python3.4 create sample blog webstation | ||
* **JinJa2** | ||
* CSS和HTML模板,用于产生前端页面 | ||
|
||
* CSS和HTML模板,用于产生前端页面 | ||
|
||
* asyncio | ||
* 异步IO | ||
|
||
* 异步IO | ||
|
||
* **aiohttp** | ||
* 异步web底层服务 | ||
|
||
* 异步web底层服务 | ||
|
||
* **mysql** | ||
* 数据库服务 | ||
|
||
* 数据库服务 | ||
|
||
* **watchdog** | ||
* 监测文件修改变化,自动重启服务器,提升开发效率 | ||
|
||
* 监测文件修改变化,自动重启服务器,提升开发效率 | ||
|
||
* **Vue** | ||
* MVVM框架,更好的分离Model和View | ||
|
||
* MVVM框架,更好的分离Model和View | ||
|
||
* **markdown2** | ||
* 引入markdown的python实现,将博客和评论嵌入markdown中 | ||
|
||
* 引入markdown的python实现,将博客和评论嵌入markdown中 | ||
|
||
* **Nginx** | ||
* web服务器、负责反向代理 | ||
|
||
* web服务器、负责反向代理 | ||
|
||
* **Supervisor** | ||
* 管理进程,监控服务进程 | ||
|
||
* 管理进程,监控服务进程 | ||
|
||
* **Fabric** | ||
* 自动化部署工具 | ||
* **UIkit** | ||
* 图标 | ||
|
||
* 自动化部署工具 | ||
|
||
* **UIkit** | ||
|
||
* 图标 | ||
|
||
### Reference: | ||
|
||
##### Reference: | ||
http://www.liaoxuefeng.com/wiki/0014316089557264a6b348958f449949df42a6d3a2e542c000 |