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
下载地址
用户评论