1. 首页
  2. 数据库
  3. 其它
  4. easyhttp::laptop:简单的Python HTTP服务器 源码

easyhttp::laptop:简单的Python HTTP服务器 源码

上传者: 2021-05-04 11:36:37上传 ZIP文件 8.18KB 热度 10次
: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
下载地址
用户评论