easyhttp::laptop:简单的Python HTTP服务器 源码
:sparkles: easyhttp :sparkles: easyhttp是用于研究目的的简单HTTP服务器。 :rocket: 安装 使用软件包管理器安装easyhttp。 只需运行: pip install easyhttp :laptop: 快速开始 import easyhttp app = easyhttp . App () def index ( req , res ): res . send ( 'It \' s working!' ) app . get ( '/' , index ) app . listen ( 3000 ) 您还可以使用其他HTTP方法: app . get ( '/' , index_get ) app . post ( '/' , index_post ) app . put ( '/' , index_put ) app . delete ( '/' , inde
文件列表
easyhttp-master.zip
(预估有个14文件)
easyhttp-master
easyhttp
Response.py
2KB
ClientConnection.py
1KB
__init__.py
27B
SocketServer.py
1KB
Request.py
959B
RequestParser.py
2KB
HttpServer.py
3KB
example
暂无评论