Py之BaseHTTPServer:Python库之BaseHTTPServer的简介、安装、使用方法之详细攻略

BaseHTTPServer的简介

   BaseHTTPServer该模块定义了用于实现HTTP服务器(Web服务器)的两个类。通常,这个模块不是直接使用的,而是用作构建功能Web服务器的基础。The BaseHTTPServer module has been merged into http.server in Python 3.
BaseHTTPServer
http.server — HTTP servers

BaseHTTPServer的安装

pip install BaseHTTPServer

BaseHTTPServer的使用方法



猜你喜欢

转载自blog.csdn.net/qq_41185868/article/details/80715427